ETH Price: $2,962.31 (+1.06%)
Gas: 1 Gwei

Token

MozaikCollection (MNC)
 

Overview

Max Total Supply

215 MNC

Holders

62

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 MNC
0x9cfb24dd0368da75fd35dcd3c2a2883cb30ad272
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
MozaikCollection

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

File 16 of 20: MozaikCollection.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./ERC721Tradable.sol";

/**
 * @title Creature
 * Creature - a contract for my non-fungible creatures.
 */
contract MozaikCollection is ERC721Tradable {
    constructor(address _proxyRegistryAddress)
        ERC721Tradable("MozaikCollection", "MNC", _proxyRegistryAddress)
    {}

    function baseTokenURI() override public pure returns (string memory) {
        return "https://mozaik-nft.s3.us-east-2.amazonaws.com/collection/";
    }

    function contractURI() public pure returns (string memory) {
        return "https://mozaik-nft.s3.us-east-2.amazonaws.com/contract-metadata";
    }

    /**
     * @dev Withdraw the contract balance to the dev address or splitter address
     */
    function withdraw() external onlyOwner {
        sendEth(owner(), address(this).balance);
    }

    function sendEth(address to, uint amount) internal {
        (bool success,) = to.call{value: amount}("");
        require(success, "Failed to send ether");
    }
}

File 1 of 20: Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (utils/Address.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 2 of 20: 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 20: Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

File 4 of 20: 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 20: ERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

File 6 of 20: ERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (token/ERC721/ERC721.sol)

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 {
        _setApprovalForAll(_msgSender(), operator, approved);
    }

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

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

File 7 of 20: ERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (token/ERC721/extensions/ERC721Enumerable.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 8 of 20: ERC721Tradable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./ERC721.sol";
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;
}

/**
 * @title ERC721Tradable
 * ERC721Tradable - ERC721 contract that whitelists a trading address, and has minting functionality.
 */
abstract contract ERC721Tradable is ContextMixin, ERC721, NativeMetaTransaction, Ownable {
    using SafeMath for uint256;

    address proxyRegistryAddress;

    uint public mintPrice = 0.05 ether;
    uint public maxItems = 10000;
    uint public totalSupply = 0;
    uint public maxItemsPerTx = 10;

    event Mint(address indexed owner, uint indexed tokenId, uint128 mintRequestId);

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

    function publicMint(uint128 mintRequestId) external payable {
        uint remainder = msg.value % mintPrice;
        uint amount = msg.value / mintPrice;
        require(remainder == 0, "publicMint: Send a divisible amount of eth");
        require(amount <= maxItemsPerTx, "publicMint: Surpasses maxItemsPerTx");

        _mintWithoutValidation(msg.sender, amount, mintRequestId);
    }

    function _mintWithoutValidation(address to, uint amount, uint128 mintRequestId) internal {
        require(totalSupply + amount <= maxItems, "mintWithoutValidation: Sold out");
        for (uint i = 0; i < amount; i++) {
            _mint(to, totalSupply);
            emit Mint(to, totalSupply, mintRequestId);
            totalSupply += 1;
        }
    }

    function baseTokenURI() virtual public pure returns (string memory);

    function tokenURI(uint256 _tokenId) override public pure returns (string memory) {
        return string(abi.encodePacked(baseTokenURI(), Strings.toString(_tokenId)));
    }

    /**
     * Override isApprovedForAll to whitelist user's OpenSea proxy accounts to enable gas-less listings.
     */
    function isApprovedForAll(address owner, address operator)
        override
        public
        view
        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
        override
        view
        returns (address sender)
    {
        return ContextMixin.msgSender();
    }
}

File 9 of 20: IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

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

File 10 of 20: IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (token/ERC721/IERC721.sol)

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 11 of 20: IERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;

import "./IERC721.sol";

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

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

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

File 12 of 20: IERC721Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;

import "./IERC721.sol";

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

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

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

File 13 of 20: IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

File 14 of 20: 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 20: Migrations.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

contract Migrations {
    address public owner = msg.sender;
    uint256 public last_completed_migration;

    modifier restricted() {
        require(
            msg.sender == owner,
            "This function is restricted to the contract's owner"
        );
        _;
    }

    function setCompleted(uint256 completed) public restricted {
        last_completed_migration = completed;
    }
}

File 17 of 20: NativeMetaTransaction.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import {SafeMath} from  "./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 18 of 20: Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (access/Ownable.sol)

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() {
        _transferOwnership(_msgSender());
    }

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

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

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

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

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

File 19 of 20: SafeMath.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (utils/math/SafeMath.sol)

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 generally not needed starting with Solidity 0.8, since 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 20 of 20: Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"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":"owner","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":false,"internalType":"uint128","name":"mintRequestId","type":"uint128"}],"name":"Mint","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":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","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":"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":[],"name":"maxItems","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxItemsPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint128","name":"mintRequestId","type":"uint128"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","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"}]

60806040526000600660006101000a81548160ff02191690831515021790555066b1a2bc2ec50000600b55612710600c556000600d55600a600e553480156200004757600080fd5b50604051620045de380380620045de83398181016040528101906200006d919062000526565b6040518060400160405280601081526020017f4d6f7a61696b436f6c6c656374696f6e000000000000000000000000000000008152506040518060400160405280600381526020017f4d4e4300000000000000000000000000000000000000000000000000000000008152508282828160009080519060200190620000f49291906200045f565b5080600190805190602001906200010d9291906200045f565b50505062000130620001246200018c60201b60201c565b620001a860201b60201c565b80600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555062000182836200026e60201b60201c565b5050505062000703565b6000620001a3620002f060201b6200147f1760201c565b905090565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600660009054906101000a900460ff1615620002c1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002b89062000613565b60405180910390fd5b620002d281620003a360201b60201c565b6001600660006101000a81548160ff02191690831515021790555050565b60003073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614156200039c57600080368080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509050600080369050905073ffffffffffffffffffffffffffffffffffffffff818301511692505050620003a0565b3390505b90565b6040518060800160405280604f81526020016200458f604f91398051906020012081805190602001206040518060400160405280600181526020017f310000000000000000000000000000000000000000000000000000000000000081525080519060200120306200041a6200045260201b60201c565b60001b60405160200162000433959493929190620005b6565b6040516020818303038152906040528051906020012060078190555050565b6000804690508091505090565b8280546200046d9062000684565b90600052602060002090601f016020900481019282620004915760008555620004dd565b82601f10620004ac57805160ff1916838001178555620004dd565b82800160010185558215620004dd579182015b82811115620004dc578251825591602001919060010190620004bf565b5b509050620004ec9190620004f0565b5090565b5b808211156200050b576000816000905550600101620004f1565b5090565b6000815190506200052081620006e9565b92915050565b6000602082840312156200053957600080fd5b600062000549848285016200050f565b91505092915050565b6200055d8162000646565b82525050565b6200056e816200065a565b82525050565b600062000583600e8362000635565b91507f616c726561647920696e697465640000000000000000000000000000000000006000830152602082019050919050565b600060a082019050620005cd600083018862000563565b620005dc602083018762000563565b620005eb604083018662000563565b620005fa606083018562000552565b62000609608083018462000563565b9695505050505050565b600060208201905081810360008301526200062e8162000574565b9050919050565b600082825260208201905092915050565b6000620006538262000664565b9050919050565b6000819050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600060028204905060018216806200069d57607f821691505b60208210811415620006b457620006b3620006ba565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b620006f48162000646565b81146200070057600080fd5b50565b613e7c80620007136000396000f3fe6080604052600436106101c25760003560e01c806342842e0e116100f757806395d89b4111610095578063d547cfb711610064578063d547cfb71461062a578063e8a3d48514610655578063e985e9c514610680578063f2fde38b146106bd576101c2565b806395d89b4114610570578063a22cb4651461059b578063b88d4fde146105c4578063c87b56dd146105ed576101c2565b80636817c76c116100d15780636817c76c146104c657806370a08231146104f1578063715018a61461052e5780638da5cb5b14610545576101c2565b806342842e0e146104445780636352211e1461046d57806364b7037d146104aa576101c2565b806320379ee51161016457806330666a4d1161013e57806330666a4d146103ac5780633408e470146103d75780633c010a3e146104025780633ccfd60b1461042d576101c2565b806320379ee51461031b57806323b872dd146103465780632d0335ab1461036f576101c2565b8063095ea7b3116101a0578063095ea7b31461026c5780630c53c51c146102955780630f7e5970146102c557806318160ddd146102f0576101c2565b806301ffc9a7146101c757806306fdde0314610204578063081812fc1461022f575b600080fd5b3480156101d357600080fd5b506101ee60048036038101906101e9919061290e565b6106e6565b6040516101fb91906134ae565b60405180910390f35b34801561021057600080fd5b506102196107c8565b6040516102269190613590565b60405180910390f35b34801561023b57600080fd5b50610256600480360381019061025191906129b2565b61085a565b6040516102639190613409565b60405180910390f35b34801561027857600080fd5b50610293600480360381019061028e91906128d2565b6108df565b005b6102af60048036038101906102aa9190612843565b6109f7565b6040516102bc919061356e565b60405180910390f35b3480156102d157600080fd5b506102da610c69565b6040516102e79190613590565b60405180910390f35b3480156102fc57600080fd5b50610305610ca2565b604051610312919061388d565b60405180910390f35b34801561032757600080fd5b50610330610ca8565b60405161033d91906134c9565b60405180910390f35b34801561035257600080fd5b5061036d6004803603810190610368919061273d565b610cb2565b005b34801561037b57600080fd5b50610396600480360381019061039191906126d8565b610d12565b6040516103a3919061388d565b60405180910390f35b3480156103b857600080fd5b506103c1610d5b565b6040516103ce919061388d565b60405180910390f35b3480156103e357600080fd5b506103ec610d61565b6040516103f9919061388d565b60405180910390f35b34801561040e57600080fd5b50610417610d6e565b604051610424919061388d565b60405180910390f35b34801561043957600080fd5b50610442610d74565b005b34801561045057600080fd5b5061046b6004803603810190610466919061273d565b610e03565b005b34801561047957600080fd5b50610494600480360381019061048f91906129b2565b610e23565b6040516104a19190613409565b60405180910390f35b6104c460048036038101906104bf9190612989565b610ed5565b005b3480156104d257600080fd5b506104db610f91565b6040516104e8919061388d565b60405180910390f35b3480156104fd57600080fd5b50610518600480360381019061051391906126d8565b610f97565b604051610525919061388d565b60405180910390f35b34801561053a57600080fd5b5061054361104f565b005b34801561055157600080fd5b5061055a6110d7565b6040516105679190613409565b60405180910390f35b34801561057c57600080fd5b50610585611101565b6040516105929190613590565b60405180910390f35b3480156105a757600080fd5b506105c260048036038101906105bd9190612807565b611193565b005b3480156105d057600080fd5b506105eb60048036038101906105e6919061278c565b6111a9565b005b3480156105f957600080fd5b50610614600480360381019061060f91906129b2565b61120b565b6040516106219190613590565b60405180910390f35b34801561063657600080fd5b5061063f611245565b60405161064c9190613590565b60405180910390f35b34801561066157600080fd5b5061066a611265565b6040516106779190613590565b60405180910390f35b34801561068c57600080fd5b506106a760048036038101906106a29190612701565b611285565b6040516106b491906134ae565b60405180910390f35b3480156106c957600080fd5b506106e460048036038101906106df91906126d8565b611387565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107b157507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107c157506107c082611530565b5b9050919050565b6060600080546107d790613b1f565b80601f016020809104026020016040519081016040528092919081815260200182805461080390613b1f565b80156108505780601f1061082557610100808354040283529160200191610850565b820191906000526020600020905b81548152906001019060200180831161083357829003601f168201915b5050505050905090565b60006108658261159a565b6108a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161089b90613772565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006108ea82610e23565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561095b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161095290613832565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661097a611606565b73ffffffffffffffffffffffffffffffffffffffff1614806109a957506109a8816109a3611606565b611285565b5b6109e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109df906136f2565b60405180910390fd5b6109f28383611615565b505050565b606060006040518060600160405280600860008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205481526020018873ffffffffffffffffffffffffffffffffffffffff168152602001878152509050610a7a87828787876116ce565b610ab9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab0906137f2565b60405180910390fd5b610b0c6001600860008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546117d790919063ffffffff16565b600860008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055507f5845892132946850460bff5a0083f71031bc5bf9aadcd40f1de79423eac9b10b873388604051610b8293929190613424565b60405180910390a16000803073ffffffffffffffffffffffffffffffffffffffff16888a604051602001610bb7929190613371565b604051602081830303815290604052604051610bd3919061335a565b6000604051808303816000865af19150503d8060008114610c10576040519150601f19603f3d011682016040523d82523d6000602084013e610c15565b606091505b509150915081610c5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5190613612565b60405180910390fd5b80935050505095945050505050565b6040518060400160405280600181526020017f310000000000000000000000000000000000000000000000000000000000000081525081565b600d5481565b6000600754905090565b610cc3610cbd611606565b826117ed565b610d02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf990613852565b60405180910390fd5b610d0d8383836118cb565b505050565b6000600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600e5481565b6000804690508091505090565b600c5481565b610d7c611606565b73ffffffffffffffffffffffffffffffffffffffff16610d9a6110d7565b73ffffffffffffffffffffffffffffffffffffffff1614610df0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de790613792565b60405180910390fd5b610e01610dfb6110d7565b47611b27565b565b610e1e838383604051806020016040528060008152506111a9565b505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610ecc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec390613732565b60405180910390fd5b80915050919050565b6000600b5434610ee59190613bc8565b90506000600b5434610ef791906139ad565b905060008214610f3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f33906135b2565b60405180910390fd5b600e54811115610f81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7890613812565b60405180910390fd5b610f8c338285611bd8565b505050565b600b5481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611008576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fff90613712565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611057611606565b73ffffffffffffffffffffffffffffffffffffffff166110756110d7565b73ffffffffffffffffffffffffffffffffffffffff16146110cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c290613792565b60405180910390fd5b6110d56000611cc5565b565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461111090613b1f565b80601f016020809104026020016040519081016040528092919081815260200182805461113c90613b1f565b80156111895780601f1061115e57610100808354040283529160200191611189565b820191906000526020600020905b81548152906001019060200180831161116c57829003601f168201915b5050505050905090565b6111a561119e611606565b8383611d8b565b5050565b6111ba6111b4611606565b836117ed565b6111f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f090613852565b60405180910390fd5b61120584848484611ef8565b50505050565b6060611215611245565b61121e83611f54565b60405160200161122f929190613399565b6040516020818303038152906040529050919050565b6060604051806060016040528060398152602001613d8c60399139905090565b60606040518060600160405280603f8152602001613e08603f9139905090565b600080600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1663c4552791866040518263ffffffff1660e01b81526004016112fd9190613409565b60206040518083038186803b15801561131557600080fd5b505afa158015611329573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061134d9190612960565b73ffffffffffffffffffffffffffffffffffffffff161415611373576001915050611381565b61137d8484612101565b9150505b92915050565b61138f611606565b73ffffffffffffffffffffffffffffffffffffffff166113ad6110d7565b73ffffffffffffffffffffffffffffffffffffffff1614611403576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113fa90613792565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611473576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146a906135f2565b60405180910390fd5b61147c81611cc5565b50565b60003073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16141561152957600080368080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509050600080369050905073ffffffffffffffffffffffffffffffffffffffff81830151169250505061152d565b3390505b90565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600061161061147f565b905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661168883610e23565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008073ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff16141561173f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611736906136d2565b60405180910390fd5b600161175261174d87612195565b6121fd565b838686604051600081526020016040526040516117729493929190613529565b6020604051602081039080840390855afa158015611794573d6000803e3d6000fd5b5050506020604051035173ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff1614905095945050505050565b600081836117e59190613957565b905092915050565b60006117f88261159a565b611837576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182e906136b2565b60405180910390fd5b600061184283610e23565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806118b157508373ffffffffffffffffffffffffffffffffffffffff166118998461085a565b73ffffffffffffffffffffffffffffffffffffffff16145b806118c257506118c18185611285565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166118eb82610e23565b73ffffffffffffffffffffffffffffffffffffffff1614611941576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611938906137d2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156119b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119a890613672565b60405180910390fd5b6119bc838383612236565b6119c7600082611615565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611a1791906139de565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611a6e9190613957565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60008273ffffffffffffffffffffffffffffffffffffffff1682604051611b4d906133f4565b60006040518083038185875af1925050503d8060008114611b8a576040519150601f19603f3d011682016040523d82523d6000602084013e611b8f565b606091505b5050905080611bd3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bca906137b2565b60405180910390fd5b505050565b600c5482600d54611be99190613957565b1115611c2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2190613632565b60405180910390fd5b60005b82811015611cbf57611c4184600d5461223b565b600d548473ffffffffffffffffffffffffffffffffffffffff167fa049a7b0db25fd4a447d4a72385802f52641ca5797b84688137edbe240b2a57f84604051611c8a9190613872565b60405180910390a36001600d6000828254611ca59190613957565b925050819055508080611cb790613b51565b915050611c2d565b50505050565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611dfa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611df190613692565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611eeb91906134ae565b60405180910390a3505050565b611f038484846118cb565b611f0f84848484612409565b611f4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f45906135d2565b60405180910390fd5b50505050565b60606000821415611f9c576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506120fc565b600082905060005b60008214611fce578080611fb790613b51565b915050600a82611fc791906139ad565b9150611fa4565b60008167ffffffffffffffff811115612010577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156120425781602001600182028036833780820191505090505b5090505b600085146120f55760018261205b91906139de565b9150600a8561206a9190613bc8565b60306120769190613957565b60f81b8183815181106120b2577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856120ee91906139ad565b9450612046565b8093505050505b919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6000604051806080016040528060438152602001613dc56043913980519060200120826000015183602001518460400151805190602001206040516020016121e094939291906134e4565b604051602081830303815290604052805190602001209050919050565b6000612207610ca8565b826040516020016122199291906133bd565b604051602081830303815290604052805190602001209050919050565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156122ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122a290613752565b60405180910390fd5b6122b48161159a565b156122f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122eb90613652565b60405180910390fd5b61230060008383612236565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546123509190613957565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600061242a8473ffffffffffffffffffffffffffffffffffffffff166125a0565b15612593578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612453611606565b8786866040518563ffffffff1660e01b81526004016124759493929190613462565b602060405180830381600087803b15801561248f57600080fd5b505af19250505080156124c057506040513d601f19601f820116820180604052508101906124bd9190612937565b60015b612543573d80600081146124f0576040519150601f19603f3d011682016040523d82523d6000602084013e6124f5565b606091505b5060008151141561253b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612532906135d2565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612598565b600190505b949350505050565b600080823b905060008111915050919050565b60006125c66125c1846138d9565b6138a8565b9050828152602081018484840111156125de57600080fd5b6125e9848285613add565b509392505050565b60008135905061260081613cd3565b92915050565b60008135905061261581613cea565b92915050565b60008135905061262a81613d01565b92915050565b60008135905061263f81613d18565b92915050565b60008151905061265481613d18565b92915050565b600082601f83011261266b57600080fd5b813561267b8482602086016125b3565b91505092915050565b60008151905061269381613d2f565b92915050565b6000813590506126a881613d46565b92915050565b6000813590506126bd81613d5d565b92915050565b6000813590506126d281613d74565b92915050565b6000602082840312156126ea57600080fd5b60006126f8848285016125f1565b91505092915050565b6000806040838503121561271457600080fd5b6000612722858286016125f1565b9250506020612733858286016125f1565b9150509250929050565b60008060006060848603121561275257600080fd5b6000612760868287016125f1565b9350506020612771868287016125f1565b9250506040612782868287016126ae565b9150509250925092565b600080600080608085870312156127a257600080fd5b60006127b0878288016125f1565b94505060206127c1878288016125f1565b93505060406127d2878288016126ae565b925050606085013567ffffffffffffffff8111156127ef57600080fd5b6127fb8782880161265a565b91505092959194509250565b6000806040838503121561281a57600080fd5b6000612828858286016125f1565b925050602061283985828601612606565b9150509250929050565b600080600080600060a0868803121561285b57600080fd5b6000612869888289016125f1565b955050602086013567ffffffffffffffff81111561288657600080fd5b6128928882890161265a565b94505060406128a38882890161261b565b93505060606128b48882890161261b565b92505060806128c5888289016126c3565b9150509295509295909350565b600080604083850312156128e557600080fd5b60006128f3858286016125f1565b9250506020612904858286016126ae565b9150509250929050565b60006020828403121561292057600080fd5b600061292e84828501612630565b91505092915050565b60006020828403121561294957600080fd5b600061295784828501612645565b91505092915050565b60006020828403121561297257600080fd5b600061298084828501612684565b91505092915050565b60006020828403121561299b57600080fd5b60006129a984828501612699565b91505092915050565b6000602082840312156129c457600080fd5b60006129d2848285016126ae565b91505092915050565b6129e481613a24565b82525050565b6129f381613a12565b82525050565b612a0a612a0582613a12565b613b9a565b82525050565b612a1981613a36565b82525050565b612a2881613a42565b82525050565b612a3f612a3a82613a42565b613bac565b82525050565b6000612a5082613909565b612a5a818561391f565b9350612a6a818560208601613aec565b612a7381613cb5565b840191505092915050565b6000612a8982613909565b612a938185613930565b9350612aa3818560208601613aec565b80840191505092915050565b6000612aba82613914565b612ac4818561393b565b9350612ad4818560208601613aec565b612add81613cb5565b840191505092915050565b6000612af382613914565b612afd818561394c565b9350612b0d818560208601613aec565b80840191505092915050565b6000612b26602a8361393b565b91507f7075626c69634d696e743a2053656e64206120646976697369626c6520616d6f60008301527f756e74206f6620657468000000000000000000000000000000000000000000006020830152604082019050919050565b6000612b8c60328361393b565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b6000612bf260268361393b565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612c58601c8361393b565b91507f46756e6374696f6e2063616c6c206e6f74207375636365737366756c000000006000830152602082019050919050565b6000612c98601f8361393b565b91507f6d696e74576974686f757456616c69646174696f6e3a20536f6c64206f7574006000830152602082019050919050565b6000612cd8601c8361393b565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b6000612d1860028361394c565b91507f19010000000000000000000000000000000000000000000000000000000000006000830152600282019050919050565b6000612d5860248361393b565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612dbe60198361393b565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b6000612dfe602c8361393b565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000612e6460258361393b565b91507f4e61746976654d6574615472616e73616374696f6e3a20494e56414c49445f5360008301527f49474e45520000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612eca60388361393b565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b6000612f30602a8361393b565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b6000612f9660298361393b565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000612ffc60208361393b565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b600061303c602c8361393b565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b60006130a260208361393b565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b60006130e260148361393b565b91507f4661696c656420746f2073656e642065746865720000000000000000000000006000830152602082019050919050565b600061312260298361393b565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b600061318860218361393b565b91507f5369676e657220616e64207369676e617475726520646f206e6f74206d61746360008301527f68000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006131ee60238361393b565b91507f7075626c69634d696e743a20537572706173736573206d61784974656d73506560008301527f72547800000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061325460218361393b565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006132ba600083613930565b9150600082019050919050565b60006132d460318361393b565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b61333681613a8a565b82525050565b61334581613ac6565b82525050565b61335481613ad0565b82525050565b60006133668284612a7e565b915081905092915050565b600061337d8285612a7e565b915061338982846129f9565b6014820191508190509392505050565b60006133a58285612ae8565b91506133b18284612ae8565b91508190509392505050565b60006133c882612d0b565b91506133d48285612a2e565b6020820191506133e48284612a2e565b6020820191508190509392505050565b60006133ff826132ad565b9150819050919050565b600060208201905061341e60008301846129ea565b92915050565b600060608201905061343960008301866129ea565b61344660208301856129db565b81810360408301526134588184612a45565b9050949350505050565b600060808201905061347760008301876129ea565b61348460208301866129ea565b613491604083018561333c565b81810360608301526134a38184612a45565b905095945050505050565b60006020820190506134c36000830184612a10565b92915050565b60006020820190506134de6000830184612a1f565b92915050565b60006080820190506134f96000830187612a1f565b613506602083018661333c565b61351360408301856129ea565b6135206060830184612a1f565b95945050505050565b600060808201905061353e6000830187612a1f565b61354b602083018661334b565b6135586040830185612a1f565b6135656060830184612a1f565b95945050505050565b600060208201905081810360008301526135888184612a45565b905092915050565b600060208201905081810360008301526135aa8184612aaf565b905092915050565b600060208201905081810360008301526135cb81612b19565b9050919050565b600060208201905081810360008301526135eb81612b7f565b9050919050565b6000602082019050818103600083015261360b81612be5565b9050919050565b6000602082019050818103600083015261362b81612c4b565b9050919050565b6000602082019050818103600083015261364b81612c8b565b9050919050565b6000602082019050818103600083015261366b81612ccb565b9050919050565b6000602082019050818103600083015261368b81612d4b565b9050919050565b600060208201905081810360008301526136ab81612db1565b9050919050565b600060208201905081810360008301526136cb81612df1565b9050919050565b600060208201905081810360008301526136eb81612e57565b9050919050565b6000602082019050818103600083015261370b81612ebd565b9050919050565b6000602082019050818103600083015261372b81612f23565b9050919050565b6000602082019050818103600083015261374b81612f89565b9050919050565b6000602082019050818103600083015261376b81612fef565b9050919050565b6000602082019050818103600083015261378b8161302f565b9050919050565b600060208201905081810360008301526137ab81613095565b9050919050565b600060208201905081810360008301526137cb816130d5565b9050919050565b600060208201905081810360008301526137eb81613115565b9050919050565b6000602082019050818103600083015261380b8161317b565b9050919050565b6000602082019050818103600083015261382b816131e1565b9050919050565b6000602082019050818103600083015261384b81613247565b9050919050565b6000602082019050818103600083015261386b816132c7565b9050919050565b6000602082019050613887600083018461332d565b92915050565b60006020820190506138a2600083018461333c565b92915050565b6000604051905081810181811067ffffffffffffffff821117156138cf576138ce613c86565b5b8060405250919050565b600067ffffffffffffffff8211156138f4576138f3613c86565b5b601f19601f8301169050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061396282613ac6565b915061396d83613ac6565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156139a2576139a1613bf9565b5b828201905092915050565b60006139b882613ac6565b91506139c383613ac6565b9250826139d3576139d2613c28565b5b828204905092915050565b60006139e982613ac6565b91506139f483613ac6565b925082821015613a0757613a06613bf9565b5b828203905092915050565b6000613a1d82613aa6565b9050919050565b6000613a2f82613aa6565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6000613a8382613a12565b9050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b83811015613b0a578082015181840152602081019050613aef565b83811115613b19576000848401525b50505050565b60006002820490506001821680613b3757607f821691505b60208210811415613b4b57613b4a613c57565b5b50919050565b6000613b5c82613ac6565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613b8f57613b8e613bf9565b5b600182019050919050565b6000613ba582613bb6565b9050919050565b6000819050919050565b6000613bc182613cc6565b9050919050565b6000613bd382613ac6565b9150613bde83613ac6565b925082613bee57613bed613c28565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b613cdc81613a12565b8114613ce757600080fd5b50565b613cf381613a36565b8114613cfe57600080fd5b50565b613d0a81613a42565b8114613d1557600080fd5b50565b613d2181613a4c565b8114613d2c57600080fd5b50565b613d3881613a78565b8114613d4357600080fd5b50565b613d4f81613a8a565b8114613d5a57600080fd5b50565b613d6681613ac6565b8114613d7157600080fd5b50565b613d7d81613ad0565b8114613d8857600080fd5b5056fe68747470733a2f2f6d6f7a61696b2d6e66742e73332e75732d656173742d322e616d617a6f6e6177732e636f6d2f636f6c6c656374696f6e2f4d6574615472616e73616374696f6e2875696e74323536206e6f6e63652c616464726573732066726f6d2c62797465732066756e6374696f6e5369676e61747572652968747470733a2f2f6d6f7a61696b2d6e66742e73332e75732d656173742d322e616d617a6f6e6177732e636f6d2f636f6e74726163742d6d65746164617461a26469706673582212208d019bf8829901311024399bb0ec033c5827f9227a610e79cccff9472ea0836e64736f6c63430008000033454950373132446f6d61696e28737472696e67206e616d652c737472696e672076657273696f6e2c6164647265737320766572696679696e67436f6e74726163742c627974657333322073616c7429000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c1

Deployed Bytecode

0x6080604052600436106101c25760003560e01c806342842e0e116100f757806395d89b4111610095578063d547cfb711610064578063d547cfb71461062a578063e8a3d48514610655578063e985e9c514610680578063f2fde38b146106bd576101c2565b806395d89b4114610570578063a22cb4651461059b578063b88d4fde146105c4578063c87b56dd146105ed576101c2565b80636817c76c116100d15780636817c76c146104c657806370a08231146104f1578063715018a61461052e5780638da5cb5b14610545576101c2565b806342842e0e146104445780636352211e1461046d57806364b7037d146104aa576101c2565b806320379ee51161016457806330666a4d1161013e57806330666a4d146103ac5780633408e470146103d75780633c010a3e146104025780633ccfd60b1461042d576101c2565b806320379ee51461031b57806323b872dd146103465780632d0335ab1461036f576101c2565b8063095ea7b3116101a0578063095ea7b31461026c5780630c53c51c146102955780630f7e5970146102c557806318160ddd146102f0576101c2565b806301ffc9a7146101c757806306fdde0314610204578063081812fc1461022f575b600080fd5b3480156101d357600080fd5b506101ee60048036038101906101e9919061290e565b6106e6565b6040516101fb91906134ae565b60405180910390f35b34801561021057600080fd5b506102196107c8565b6040516102269190613590565b60405180910390f35b34801561023b57600080fd5b50610256600480360381019061025191906129b2565b61085a565b6040516102639190613409565b60405180910390f35b34801561027857600080fd5b50610293600480360381019061028e91906128d2565b6108df565b005b6102af60048036038101906102aa9190612843565b6109f7565b6040516102bc919061356e565b60405180910390f35b3480156102d157600080fd5b506102da610c69565b6040516102e79190613590565b60405180910390f35b3480156102fc57600080fd5b50610305610ca2565b604051610312919061388d565b60405180910390f35b34801561032757600080fd5b50610330610ca8565b60405161033d91906134c9565b60405180910390f35b34801561035257600080fd5b5061036d6004803603810190610368919061273d565b610cb2565b005b34801561037b57600080fd5b50610396600480360381019061039191906126d8565b610d12565b6040516103a3919061388d565b60405180910390f35b3480156103b857600080fd5b506103c1610d5b565b6040516103ce919061388d565b60405180910390f35b3480156103e357600080fd5b506103ec610d61565b6040516103f9919061388d565b60405180910390f35b34801561040e57600080fd5b50610417610d6e565b604051610424919061388d565b60405180910390f35b34801561043957600080fd5b50610442610d74565b005b34801561045057600080fd5b5061046b6004803603810190610466919061273d565b610e03565b005b34801561047957600080fd5b50610494600480360381019061048f91906129b2565b610e23565b6040516104a19190613409565b60405180910390f35b6104c460048036038101906104bf9190612989565b610ed5565b005b3480156104d257600080fd5b506104db610f91565b6040516104e8919061388d565b60405180910390f35b3480156104fd57600080fd5b50610518600480360381019061051391906126d8565b610f97565b604051610525919061388d565b60405180910390f35b34801561053a57600080fd5b5061054361104f565b005b34801561055157600080fd5b5061055a6110d7565b6040516105679190613409565b60405180910390f35b34801561057c57600080fd5b50610585611101565b6040516105929190613590565b60405180910390f35b3480156105a757600080fd5b506105c260048036038101906105bd9190612807565b611193565b005b3480156105d057600080fd5b506105eb60048036038101906105e6919061278c565b6111a9565b005b3480156105f957600080fd5b50610614600480360381019061060f91906129b2565b61120b565b6040516106219190613590565b60405180910390f35b34801561063657600080fd5b5061063f611245565b60405161064c9190613590565b60405180910390f35b34801561066157600080fd5b5061066a611265565b6040516106779190613590565b60405180910390f35b34801561068c57600080fd5b506106a760048036038101906106a29190612701565b611285565b6040516106b491906134ae565b60405180910390f35b3480156106c957600080fd5b506106e460048036038101906106df91906126d8565b611387565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107b157507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107c157506107c082611530565b5b9050919050565b6060600080546107d790613b1f565b80601f016020809104026020016040519081016040528092919081815260200182805461080390613b1f565b80156108505780601f1061082557610100808354040283529160200191610850565b820191906000526020600020905b81548152906001019060200180831161083357829003601f168201915b5050505050905090565b60006108658261159a565b6108a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161089b90613772565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006108ea82610e23565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561095b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161095290613832565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661097a611606565b73ffffffffffffffffffffffffffffffffffffffff1614806109a957506109a8816109a3611606565b611285565b5b6109e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109df906136f2565b60405180910390fd5b6109f28383611615565b505050565b606060006040518060600160405280600860008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205481526020018873ffffffffffffffffffffffffffffffffffffffff168152602001878152509050610a7a87828787876116ce565b610ab9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab0906137f2565b60405180910390fd5b610b0c6001600860008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546117d790919063ffffffff16565b600860008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055507f5845892132946850460bff5a0083f71031bc5bf9aadcd40f1de79423eac9b10b873388604051610b8293929190613424565b60405180910390a16000803073ffffffffffffffffffffffffffffffffffffffff16888a604051602001610bb7929190613371565b604051602081830303815290604052604051610bd3919061335a565b6000604051808303816000865af19150503d8060008114610c10576040519150601f19603f3d011682016040523d82523d6000602084013e610c15565b606091505b509150915081610c5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5190613612565b60405180910390fd5b80935050505095945050505050565b6040518060400160405280600181526020017f310000000000000000000000000000000000000000000000000000000000000081525081565b600d5481565b6000600754905090565b610cc3610cbd611606565b826117ed565b610d02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf990613852565b60405180910390fd5b610d0d8383836118cb565b505050565b6000600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600e5481565b6000804690508091505090565b600c5481565b610d7c611606565b73ffffffffffffffffffffffffffffffffffffffff16610d9a6110d7565b73ffffffffffffffffffffffffffffffffffffffff1614610df0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de790613792565b60405180910390fd5b610e01610dfb6110d7565b47611b27565b565b610e1e838383604051806020016040528060008152506111a9565b505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610ecc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec390613732565b60405180910390fd5b80915050919050565b6000600b5434610ee59190613bc8565b90506000600b5434610ef791906139ad565b905060008214610f3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f33906135b2565b60405180910390fd5b600e54811115610f81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7890613812565b60405180910390fd5b610f8c338285611bd8565b505050565b600b5481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611008576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fff90613712565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611057611606565b73ffffffffffffffffffffffffffffffffffffffff166110756110d7565b73ffffffffffffffffffffffffffffffffffffffff16146110cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c290613792565b60405180910390fd5b6110d56000611cc5565b565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461111090613b1f565b80601f016020809104026020016040519081016040528092919081815260200182805461113c90613b1f565b80156111895780601f1061115e57610100808354040283529160200191611189565b820191906000526020600020905b81548152906001019060200180831161116c57829003601f168201915b5050505050905090565b6111a561119e611606565b8383611d8b565b5050565b6111ba6111b4611606565b836117ed565b6111f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f090613852565b60405180910390fd5b61120584848484611ef8565b50505050565b6060611215611245565b61121e83611f54565b60405160200161122f929190613399565b6040516020818303038152906040529050919050565b6060604051806060016040528060398152602001613d8c60399139905090565b60606040518060600160405280603f8152602001613e08603f9139905090565b600080600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1663c4552791866040518263ffffffff1660e01b81526004016112fd9190613409565b60206040518083038186803b15801561131557600080fd5b505afa158015611329573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061134d9190612960565b73ffffffffffffffffffffffffffffffffffffffff161415611373576001915050611381565b61137d8484612101565b9150505b92915050565b61138f611606565b73ffffffffffffffffffffffffffffffffffffffff166113ad6110d7565b73ffffffffffffffffffffffffffffffffffffffff1614611403576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113fa90613792565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611473576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146a906135f2565b60405180910390fd5b61147c81611cc5565b50565b60003073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16141561152957600080368080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509050600080369050905073ffffffffffffffffffffffffffffffffffffffff81830151169250505061152d565b3390505b90565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600061161061147f565b905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661168883610e23565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008073ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff16141561173f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611736906136d2565b60405180910390fd5b600161175261174d87612195565b6121fd565b838686604051600081526020016040526040516117729493929190613529565b6020604051602081039080840390855afa158015611794573d6000803e3d6000fd5b5050506020604051035173ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff1614905095945050505050565b600081836117e59190613957565b905092915050565b60006117f88261159a565b611837576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182e906136b2565b60405180910390fd5b600061184283610e23565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806118b157508373ffffffffffffffffffffffffffffffffffffffff166118998461085a565b73ffffffffffffffffffffffffffffffffffffffff16145b806118c257506118c18185611285565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166118eb82610e23565b73ffffffffffffffffffffffffffffffffffffffff1614611941576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611938906137d2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156119b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119a890613672565b60405180910390fd5b6119bc838383612236565b6119c7600082611615565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611a1791906139de565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611a6e9190613957565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60008273ffffffffffffffffffffffffffffffffffffffff1682604051611b4d906133f4565b60006040518083038185875af1925050503d8060008114611b8a576040519150601f19603f3d011682016040523d82523d6000602084013e611b8f565b606091505b5050905080611bd3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bca906137b2565b60405180910390fd5b505050565b600c5482600d54611be99190613957565b1115611c2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2190613632565b60405180910390fd5b60005b82811015611cbf57611c4184600d5461223b565b600d548473ffffffffffffffffffffffffffffffffffffffff167fa049a7b0db25fd4a447d4a72385802f52641ca5797b84688137edbe240b2a57f84604051611c8a9190613872565b60405180910390a36001600d6000828254611ca59190613957565b925050819055508080611cb790613b51565b915050611c2d565b50505050565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611dfa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611df190613692565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611eeb91906134ae565b60405180910390a3505050565b611f038484846118cb565b611f0f84848484612409565b611f4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f45906135d2565b60405180910390fd5b50505050565b60606000821415611f9c576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506120fc565b600082905060005b60008214611fce578080611fb790613b51565b915050600a82611fc791906139ad565b9150611fa4565b60008167ffffffffffffffff811115612010577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156120425781602001600182028036833780820191505090505b5090505b600085146120f55760018261205b91906139de565b9150600a8561206a9190613bc8565b60306120769190613957565b60f81b8183815181106120b2577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856120ee91906139ad565b9450612046565b8093505050505b919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6000604051806080016040528060438152602001613dc56043913980519060200120826000015183602001518460400151805190602001206040516020016121e094939291906134e4565b604051602081830303815290604052805190602001209050919050565b6000612207610ca8565b826040516020016122199291906133bd565b604051602081830303815290604052805190602001209050919050565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156122ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122a290613752565b60405180910390fd5b6122b48161159a565b156122f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122eb90613652565b60405180910390fd5b61230060008383612236565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546123509190613957565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600061242a8473ffffffffffffffffffffffffffffffffffffffff166125a0565b15612593578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612453611606565b8786866040518563ffffffff1660e01b81526004016124759493929190613462565b602060405180830381600087803b15801561248f57600080fd5b505af19250505080156124c057506040513d601f19601f820116820180604052508101906124bd9190612937565b60015b612543573d80600081146124f0576040519150601f19603f3d011682016040523d82523d6000602084013e6124f5565b606091505b5060008151141561253b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612532906135d2565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612598565b600190505b949350505050565b600080823b905060008111915050919050565b60006125c66125c1846138d9565b6138a8565b9050828152602081018484840111156125de57600080fd5b6125e9848285613add565b509392505050565b60008135905061260081613cd3565b92915050565b60008135905061261581613cea565b92915050565b60008135905061262a81613d01565b92915050565b60008135905061263f81613d18565b92915050565b60008151905061265481613d18565b92915050565b600082601f83011261266b57600080fd5b813561267b8482602086016125b3565b91505092915050565b60008151905061269381613d2f565b92915050565b6000813590506126a881613d46565b92915050565b6000813590506126bd81613d5d565b92915050565b6000813590506126d281613d74565b92915050565b6000602082840312156126ea57600080fd5b60006126f8848285016125f1565b91505092915050565b6000806040838503121561271457600080fd5b6000612722858286016125f1565b9250506020612733858286016125f1565b9150509250929050565b60008060006060848603121561275257600080fd5b6000612760868287016125f1565b9350506020612771868287016125f1565b9250506040612782868287016126ae565b9150509250925092565b600080600080608085870312156127a257600080fd5b60006127b0878288016125f1565b94505060206127c1878288016125f1565b93505060406127d2878288016126ae565b925050606085013567ffffffffffffffff8111156127ef57600080fd5b6127fb8782880161265a565b91505092959194509250565b6000806040838503121561281a57600080fd5b6000612828858286016125f1565b925050602061283985828601612606565b9150509250929050565b600080600080600060a0868803121561285b57600080fd5b6000612869888289016125f1565b955050602086013567ffffffffffffffff81111561288657600080fd5b6128928882890161265a565b94505060406128a38882890161261b565b93505060606128b48882890161261b565b92505060806128c5888289016126c3565b9150509295509295909350565b600080604083850312156128e557600080fd5b60006128f3858286016125f1565b9250506020612904858286016126ae565b9150509250929050565b60006020828403121561292057600080fd5b600061292e84828501612630565b91505092915050565b60006020828403121561294957600080fd5b600061295784828501612645565b91505092915050565b60006020828403121561297257600080fd5b600061298084828501612684565b91505092915050565b60006020828403121561299b57600080fd5b60006129a984828501612699565b91505092915050565b6000602082840312156129c457600080fd5b60006129d2848285016126ae565b91505092915050565b6129e481613a24565b82525050565b6129f381613a12565b82525050565b612a0a612a0582613a12565b613b9a565b82525050565b612a1981613a36565b82525050565b612a2881613a42565b82525050565b612a3f612a3a82613a42565b613bac565b82525050565b6000612a5082613909565b612a5a818561391f565b9350612a6a818560208601613aec565b612a7381613cb5565b840191505092915050565b6000612a8982613909565b612a938185613930565b9350612aa3818560208601613aec565b80840191505092915050565b6000612aba82613914565b612ac4818561393b565b9350612ad4818560208601613aec565b612add81613cb5565b840191505092915050565b6000612af382613914565b612afd818561394c565b9350612b0d818560208601613aec565b80840191505092915050565b6000612b26602a8361393b565b91507f7075626c69634d696e743a2053656e64206120646976697369626c6520616d6f60008301527f756e74206f6620657468000000000000000000000000000000000000000000006020830152604082019050919050565b6000612b8c60328361393b565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b6000612bf260268361393b565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612c58601c8361393b565b91507f46756e6374696f6e2063616c6c206e6f74207375636365737366756c000000006000830152602082019050919050565b6000612c98601f8361393b565b91507f6d696e74576974686f757456616c69646174696f6e3a20536f6c64206f7574006000830152602082019050919050565b6000612cd8601c8361393b565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b6000612d1860028361394c565b91507f19010000000000000000000000000000000000000000000000000000000000006000830152600282019050919050565b6000612d5860248361393b565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612dbe60198361393b565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b6000612dfe602c8361393b565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000612e6460258361393b565b91507f4e61746976654d6574615472616e73616374696f6e3a20494e56414c49445f5360008301527f49474e45520000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612eca60388361393b565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b6000612f30602a8361393b565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b6000612f9660298361393b565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000612ffc60208361393b565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b600061303c602c8361393b565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b60006130a260208361393b565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b60006130e260148361393b565b91507f4661696c656420746f2073656e642065746865720000000000000000000000006000830152602082019050919050565b600061312260298361393b565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b600061318860218361393b565b91507f5369676e657220616e64207369676e617475726520646f206e6f74206d61746360008301527f68000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006131ee60238361393b565b91507f7075626c69634d696e743a20537572706173736573206d61784974656d73506560008301527f72547800000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061325460218361393b565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006132ba600083613930565b9150600082019050919050565b60006132d460318361393b565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b61333681613a8a565b82525050565b61334581613ac6565b82525050565b61335481613ad0565b82525050565b60006133668284612a7e565b915081905092915050565b600061337d8285612a7e565b915061338982846129f9565b6014820191508190509392505050565b60006133a58285612ae8565b91506133b18284612ae8565b91508190509392505050565b60006133c882612d0b565b91506133d48285612a2e565b6020820191506133e48284612a2e565b6020820191508190509392505050565b60006133ff826132ad565b9150819050919050565b600060208201905061341e60008301846129ea565b92915050565b600060608201905061343960008301866129ea565b61344660208301856129db565b81810360408301526134588184612a45565b9050949350505050565b600060808201905061347760008301876129ea565b61348460208301866129ea565b613491604083018561333c565b81810360608301526134a38184612a45565b905095945050505050565b60006020820190506134c36000830184612a10565b92915050565b60006020820190506134de6000830184612a1f565b92915050565b60006080820190506134f96000830187612a1f565b613506602083018661333c565b61351360408301856129ea565b6135206060830184612a1f565b95945050505050565b600060808201905061353e6000830187612a1f565b61354b602083018661334b565b6135586040830185612a1f565b6135656060830184612a1f565b95945050505050565b600060208201905081810360008301526135888184612a45565b905092915050565b600060208201905081810360008301526135aa8184612aaf565b905092915050565b600060208201905081810360008301526135cb81612b19565b9050919050565b600060208201905081810360008301526135eb81612b7f565b9050919050565b6000602082019050818103600083015261360b81612be5565b9050919050565b6000602082019050818103600083015261362b81612c4b565b9050919050565b6000602082019050818103600083015261364b81612c8b565b9050919050565b6000602082019050818103600083015261366b81612ccb565b9050919050565b6000602082019050818103600083015261368b81612d4b565b9050919050565b600060208201905081810360008301526136ab81612db1565b9050919050565b600060208201905081810360008301526136cb81612df1565b9050919050565b600060208201905081810360008301526136eb81612e57565b9050919050565b6000602082019050818103600083015261370b81612ebd565b9050919050565b6000602082019050818103600083015261372b81612f23565b9050919050565b6000602082019050818103600083015261374b81612f89565b9050919050565b6000602082019050818103600083015261376b81612fef565b9050919050565b6000602082019050818103600083015261378b8161302f565b9050919050565b600060208201905081810360008301526137ab81613095565b9050919050565b600060208201905081810360008301526137cb816130d5565b9050919050565b600060208201905081810360008301526137eb81613115565b9050919050565b6000602082019050818103600083015261380b8161317b565b9050919050565b6000602082019050818103600083015261382b816131e1565b9050919050565b6000602082019050818103600083015261384b81613247565b9050919050565b6000602082019050818103600083015261386b816132c7565b9050919050565b6000602082019050613887600083018461332d565b92915050565b60006020820190506138a2600083018461333c565b92915050565b6000604051905081810181811067ffffffffffffffff821117156138cf576138ce613c86565b5b8060405250919050565b600067ffffffffffffffff8211156138f4576138f3613c86565b5b601f19601f8301169050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061396282613ac6565b915061396d83613ac6565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156139a2576139a1613bf9565b5b828201905092915050565b60006139b882613ac6565b91506139c383613ac6565b9250826139d3576139d2613c28565b5b828204905092915050565b60006139e982613ac6565b91506139f483613ac6565b925082821015613a0757613a06613bf9565b5b828203905092915050565b6000613a1d82613aa6565b9050919050565b6000613a2f82613aa6565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6000613a8382613a12565b9050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b83811015613b0a578082015181840152602081019050613aef565b83811115613b19576000848401525b50505050565b60006002820490506001821680613b3757607f821691505b60208210811415613b4b57613b4a613c57565b5b50919050565b6000613b5c82613ac6565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613b8f57613b8e613bf9565b5b600182019050919050565b6000613ba582613bb6565b9050919050565b6000819050919050565b6000613bc182613cc6565b9050919050565b6000613bd382613ac6565b9150613bde83613ac6565b925082613bee57613bed613c28565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b613cdc81613a12565b8114613ce757600080fd5b50565b613cf381613a36565b8114613cfe57600080fd5b50565b613d0a81613a42565b8114613d1557600080fd5b50565b613d2181613a4c565b8114613d2c57600080fd5b50565b613d3881613a78565b8114613d4357600080fd5b50565b613d4f81613a8a565b8114613d5a57600080fd5b50565b613d6681613ac6565b8114613d7157600080fd5b50565b613d7d81613ad0565b8114613d8857600080fd5b5056fe68747470733a2f2f6d6f7a61696b2d6e66742e73332e75732d656173742d322e616d617a6f6e6177732e636f6d2f636f6c6c656374696f6e2f4d6574615472616e73616374696f6e2875696e74323536206e6f6e63652c616464726573732066726f6d2c62797465732066756e6374696f6e5369676e61747572652968747470733a2f2f6d6f7a61696b2d6e66742e73332e75732d656173742d322e616d617a6f6e6177732e636f6d2f636f6e74726163742d6d65746164617461a26469706673582212208d019bf8829901311024399bb0ec033c5827f9227a610e79cccff9472ea0836e64736f6c63430008000033

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

000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c1

-----Decoded View---------------
Arg [0] : _proxyRegistryAddress (address): 0xa5409ec958C83C3f309868babACA7c86DCB077c1

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c1


Deployed Bytecode Sourcemap

183:876:15:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1490:300:5;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2408:98;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3919:217;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3457:401;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;975:1151:16;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;302:43:3;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;781:27:7;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1311:101:3;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4646:330:5;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2552:107:16;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;815:30:7;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1420:161:3;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;746:28:7;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;786:97:15;;;;;;;;;;;;;:::i;:::-;;5042:179:5;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2111:235;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1191:395:7;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;705:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1849:205:5;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1661:101:17;;;;;;;;;;;;;:::i;:::-;;1029:85;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2570:102:5;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4203:153;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5287:320;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2042:175:7;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;366:154:15;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;528:150;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2349:445:7;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1911:198:17;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1490:300:5;1592:4;1642:25;1627:40;;;:11;:40;;;;:104;;;;1698:33;1683:48;;;:11;:48;;;;1627:104;:156;;;;1747:36;1771:11;1747:23;:36::i;:::-;1627:156;1608:175;;1490:300;;;:::o;2408:98::-;2462:13;2494:5;2487:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2408:98;:::o;3919:217::-;3995:7;4022:16;4030:7;4022;:16::i;:::-;4014:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;4105:15;:24;4121:7;4105:24;;;;;;;;;;;;;;;;;;;;;4098:31;;3919:217;;;:::o;3457:401::-;3537:13;3553:23;3568:7;3553:14;:23::i;:::-;3537:39;;3600:5;3594:11;;:2;:11;;;;3586:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;3691:5;3675:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;3700:37;3717:5;3724:12;:10;:12::i;:::-;3700:16;:37::i;:::-;3675:62;3654:165;;;;;;;;;;;;:::i;:::-;;;;;;;;;3830:21;3839:2;3843:7;3830:8;:21::i;:::-;3457:401;;;:::o;975:1151:16:-;1176:12;1201:29;1233:152;;;;;;;;1271:6;:19;1278:11;1271:19;;;;;;;;;;;;;;;;1233:152;;;;1311:11;1233:152;;;;;;1356:17;1233:152;;;1201:184;;1420:45;1427:11;1440:6;1448:4;1454;1460;1420:6;:45::i;:::-;1398:128;;;;;;;;;;;;:::i;:::-;;;;;;;;;1615:26;1639:1;1615:6;:19;1622:11;1615:19;;;;;;;;;;;;;;;;:23;;:26;;;;:::i;:::-;1593:6;:19;1600:11;1593:19;;;;;;;;;;;;;;;:48;;;;1659:126;1697:11;1731:10;1757:17;1659:126;;;;;;;;:::i;:::-;;;;;;;;1896:12;1910:23;1945:4;1937:18;;1987:17;2006:11;1970:48;;;;;;;;;:::i;:::-;;;;;;;;;;;;;1937:92;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1895:134;;;;2048:7;2040:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;2108:10;2101:17;;;;;975:1151;;;;;;;:::o;302:43:3:-;;;;;;;;;;;;;;;;;;;:::o;781:27:7:-;;;;:::o;1311:101:3:-;1362:7;1389:15;;1382:22;;1311:101;:::o;4646:330:5:-;4835:41;4854:12;:10;:12::i;:::-;4868:7;4835:18;:41::i;:::-;4827:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;4941:28;4951:4;4957:2;4961:7;4941:9;:28::i;:::-;4646:330;;;:::o;2552:107:16:-;2605:13;2639:6;:12;2646:4;2639:12;;;;;;;;;;;;;;;;2631:20;;2552:107;;;:::o;815:30:7:-;;;;:::o;1420:161:3:-;1463:7;1483:10;1534:9;1528:15;;1571:2;1564:9;;;1420:161;:::o;746:28:7:-;;;;:::o;786:97:15:-;1252:12:17;:10;:12::i;:::-;1241:23;;:7;:5;:7::i;:::-;:23;;;1233:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;836:39:15::1;844:7;:5;:7::i;:::-;853:21;836:7;:39::i;:::-;786:97::o:0;5042:179:5:-;5175:39;5192:4;5198:2;5202:7;5175:39;;;;;;;;;;;;:16;:39::i;:::-;5042:179;;;:::o;2111:235::-;2183:7;2202:13;2218:7;:16;2226:7;2218:16;;;;;;;;;;;;;;;;;;;;;2202:32;;2269:1;2252:19;;:5;:19;;;;2244:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2334:5;2327:12;;;2111:235;;;:::o;1191:395:7:-;1262:14;1291:9;;1279;:21;;;;:::i;:::-;1262:38;;1311:11;1337:9;;1325;:21;;;;:::i;:::-;1311:35;;1378:1;1365:9;:14;1357:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;1455:13;;1445:6;:23;;1437:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;1521:57;1544:10;1556:6;1564:13;1521:22;:57::i;:::-;1191:395;;;:::o;705:34::-;;;;:::o;1849:205:5:-;1921:7;1965:1;1948:19;;:5;:19;;;;1940:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;2031:9;:16;2041:5;2031:16;;;;;;;;;;;;;;;;2024:23;;1849:205;;;:::o;1661:101:17:-;1252:12;:10;:12::i;:::-;1241:23;;:7;:5;:7::i;:::-;:23;;;1233:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1725:30:::1;1752:1;1725:18;:30::i;:::-;1661:101::o:0;1029:85::-;1075:7;1101:6;;;;;;;;;;;1094:13;;1029:85;:::o;2570:102:5:-;2626:13;2658:7;2651:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2570:102;:::o;4203:153::-;4297:52;4316:12;:10;:12::i;:::-;4330:8;4340;4297:18;:52::i;:::-;4203:153;;:::o;5287:320::-;5456:41;5475:12;:10;:12::i;:::-;5489:7;5456:18;:41::i;:::-;5448:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;5561:39;5575:4;5581:2;5585:7;5594:5;5561:13;:39::i;:::-;5287:320;;;;:::o;2042:175:7:-;2108:13;2165:14;:12;:14::i;:::-;2181:26;2198:8;2181:16;:26::i;:::-;2148:60;;;;;;;;;:::i;:::-;;;;;;;;;;;;;2134:75;;2042:175;;;:::o;366:154:15:-;420:13;446:66;;;;;;;;;;;;;;;;;;;366:154;:::o;528:150::-;572:13;598:72;;;;;;;;;;;;;;;;;;;528:150;:::o;2349:445:7:-;2474:4;2559:27;2603:20;;;;;;;;;;;2559:65;;2680:8;2639:49;;2647:13;:21;;;2669:5;2647:28;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;2639:49;;;2635:93;;;2712:4;2705:11;;;;;2635:93;2747:39;2770:5;2777:8;2747:22;:39::i;:::-;2740:46;;;2349:445;;;;;:::o;1911:198:17:-;1252:12;:10;:12::i;:::-;1241:23;;:7;:5;:7::i;:::-;:23;;;1233:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2019:1:::1;1999:22;;:8;:22;;;;1991:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2074:28;2093:8;2074:18;:28::i;:::-;1911:198:::0;:::o;100:650:1:-;171:22;237:4;215:27;;:10;:27;;;211:508;;;259:18;280:8;;259:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;303:13;319:8;;:15;;303:31;;571:42;541:5;534;530:17;524:24;498:134;488:144;;358:289;;;;;696:10;679:28;;211:508;100:650;:::o;829:155:4:-;914:4;952:25;937:40;;;:11;:40;;;;930:47;;829:155;;;:::o;7079:125:5:-;7144:4;7195:1;7167:30;;:7;:16;7175:7;7167:16;;;;;;;;;;;;;;;;;;;;;:30;;;;7160:37;;7079:125;;;:::o;2938:161:7:-;3028:14;3067:24;:22;:24::i;:::-;3060:31;;2938:161;:::o;10930:171:5:-;11031:2;11004:15;:24;11020:7;11004:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;11086:7;11082:2;11048:46;;11057:23;11072:7;11057:14;:23::i;:::-;11048:46;;;;;;;;;;;;10930:171;;:::o;2667:486:16:-;2845:4;2888:1;2870:20;;:6;:20;;;;2862:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;2986:159;3014:47;3033:27;3053:6;3033:19;:27::i;:::-;3014:18;:47::i;:::-;3080:4;3103;3126;2986:159;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2963:182;;:6;:182;;;2943:202;;2667:486;;;;;;;:::o;2741:96:18:-;2799:7;2829:1;2825;:5;;;;:::i;:::-;2818:12;;2741:96;;;;:::o;7362:344:5:-;7455:4;7479:16;7487:7;7479;:16::i;:::-;7471:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;7554:13;7570:23;7585:7;7570:14;:23::i;:::-;7554:39;;7622:5;7611:16;;:7;:16;;;:51;;;;7655:7;7631:31;;:20;7643:7;7631:11;:20::i;:::-;:31;;;7611:51;:87;;;;7666:32;7683:5;7690:7;7666:16;:32::i;:::-;7611:87;7603:96;;;7362:344;;;;:::o;10259:560::-;10413:4;10386:31;;:23;10401:7;10386:14;:23::i;:::-;:31;;;10378:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;10495:1;10481:16;;:2;:16;;;;10473:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;10549:39;10570:4;10576:2;10580:7;10549:20;:39::i;:::-;10650:29;10667:1;10671:7;10650:8;:29::i;:::-;10709:1;10690:9;:15;10700:4;10690:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;10737:1;10720:9;:13;10730:2;10720:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;10767:2;10748:7;:16;10756:7;10748:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;10804:7;10800:2;10785:27;;10794:4;10785:27;;;;;;;;;;;;10259:560;;;:::o;891:165:15:-;954:12;971:2;:7;;986:6;971:26;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;953:44;;;1016:7;1008:40;;;;;;;;;;;;:::i;:::-;;;;;;;;;891:165;;;:::o;1594:364:7:-;1726:8;;1716:6;1702:11;;:20;;;;:::i;:::-;:32;;1694:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;1786:6;1781:170;1802:6;1798:1;:10;1781:170;;;1830:22;1836:2;1840:11;;1830:5;:22::i;:::-;1881:11;;1877:2;1872:36;;;1894:13;1872:36;;;;;;:::i;:::-;;;;;;;;1938:1;1923:11;;:16;;;;;;;:::i;:::-;;;;;;;;1810:3;;;;;:::i;:::-;;;;1781:170;;;;1594:364;;;:::o;2263:187:17:-;2336:16;2355:6;;;;;;;;;;;2336:25;;2380:8;2371:6;;:17;;;;;;;;;;;;;;;;;;2434:8;2403:40;;2424:8;2403:40;;;;;;;;;;;;2263:187;;:::o;11236:307:5:-;11386:8;11377:17;;:5;:17;;;;11369:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;11472:8;11434:18;:25;11453:5;11434:25;;;;;;;;;;;;;;;:35;11460:8;11434:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;11517:8;11495:41;;11510:5;11495:41;;;11527:8;11495:41;;;;;;:::i;:::-;;;;;;;;11236:307;;;:::o;6469:::-;6620:28;6630:4;6636:2;6640:7;6620:9;:28::i;:::-;6666:48;6689:4;6695:2;6699:7;6708:5;6666:22;:48::i;:::-;6658:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;6469:307;;;;:::o;328:703:19:-;384:13;610:1;601:5;:10;597:51;;;627:10;;;;;;;;;;;;;;;;;;;;;597:51;657:12;672:5;657:20;;687:14;711:75;726:1;718:4;:9;711:75;;743:8;;;;;:::i;:::-;;;;773:2;765:10;;;;;:::i;:::-;;;711:75;;;795:19;827:6;817:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;795:39;;844:150;860:1;851:5;:10;844:150;;887:1;877:11;;;;;:::i;:::-;;;953:2;945:5;:10;;;;:::i;:::-;932:2;:24;;;;:::i;:::-;919:39;;902:6;909;902:14;;;;;;;;;;;;;;;;;;;:56;;;;;;;;;;;981:2;972:11;;;;;:::i;:::-;;;844:150;;;1017:6;1003:21;;;;;328:703;;;;:::o;4422:162:5:-;4519:4;4542:18;:25;4561:5;4542:25;;;;;;;;;;;;;;;:35;4568:8;4542:35;;;;;;;;;;;;;;;;;;;;;;;;;4535:42;;4422:162;;;;:::o;2134:410:16:-;2244:7;311:100;;;;;;;;;;;;;;;;;291:127;;;;;;2398:6;:12;;;2433:6;:11;;;2477:6;:24;;;2467:35;;;;;;2317:204;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;2289:247;;;;;;2269:267;;2134:410;;;:::o;1950:258:3:-;2049:7;2151:20;:18;:20::i;:::-;2173:11;2122:63;;;;;;;;;:::i;:::-;;;;;;;;;;;;;2094:106;;;;;;2074:126;;1950:258;;;:::o;13430:122:5:-;;;;:::o;8998:372::-;9091:1;9077:16;;:2;:16;;;;9069:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;9149:16;9157:7;9149;:16::i;:::-;9148:17;9140:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;9209:45;9238:1;9242:2;9246:7;9209:20;:45::i;:::-;9282:1;9265:9;:13;9275:2;9265:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;9312:2;9293:7;:16;9301:7;9293:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;9355:7;9351:2;9330:33;;9347:1;9330:33;;;;;;;;;;;;8998:372;;:::o;12096:778::-;12246:4;12266:15;:2;:13;;;:15::i;:::-;12262:606;;;12317:2;12301:36;;;12338:12;:10;:12::i;:::-;12352:4;12358:7;12367:5;12301:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;12297:519;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12557:1;12540:6;:13;:18;12536:266;;;12582:60;;;;;;;;;;:::i;:::-;;;;;;;;12536:266;12754:6;12748:13;12739:6;12735:2;12731:15;12724:38;12297:519;12433:41;;;12423:51;;;:6;:51;;;;12416:58;;;;;12262:606;12853:4;12846:11;;12096:778;;;;;;;:::o;771:377:0:-;831:4;1034:12;1099:7;1087:20;1079:28;;1140:1;1133:4;:8;1126:15;;;771:377;;;:::o;7:342:20:-;;109:64;124:48;165:6;124:48;:::i;:::-;109:64;:::i;:::-;100:73;;196:6;189:5;182:21;234:4;227:5;223:16;272:3;263:6;258:3;254:16;251:25;248:2;;;289:1;286;279:12;248:2;302:41;336:6;331:3;326;302:41;:::i;:::-;90:259;;;;;;:::o;355:139::-;;439:6;426:20;417:29;;455:33;482:5;455:33;:::i;:::-;407:87;;;;:::o;500:133::-;;581:6;568:20;559:29;;597:30;621:5;597:30;:::i;:::-;549:84;;;;:::o;639:139::-;;723:6;710:20;701:29;;739:33;766:5;739:33;:::i;:::-;691:87;;;;:::o;784:137::-;;867:6;854:20;845:29;;883:32;909:5;883:32;:::i;:::-;835:86;;;;:::o;927:141::-;;1014:6;1008:13;999:22;;1030:32;1056:5;1030:32;:::i;:::-;989:79;;;;:::o;1087:271::-;;1191:3;1184:4;1176:6;1172:17;1168:27;1158:2;;1209:1;1206;1199:12;1158:2;1249:6;1236:20;1274:78;1348:3;1340:6;1333:4;1325:6;1321:17;1274:78;:::i;:::-;1265:87;;1148:210;;;;;:::o;1364:201::-;;1481:6;1475:13;1466:22;;1497:62;1553:5;1497:62;:::i;:::-;1456:109;;;;:::o;1571:139::-;;1655:6;1642:20;1633:29;;1671:33;1698:5;1671:33;:::i;:::-;1623:87;;;;:::o;1716:139::-;;1800:6;1787:20;1778:29;;1816:33;1843:5;1816:33;:::i;:::-;1768:87;;;;:::o;1861:135::-;;1943:6;1930:20;1921:29;;1959:31;1984:5;1959:31;:::i;:::-;1911:85;;;;:::o;2002:262::-;;2110:2;2098:9;2089:7;2085:23;2081:32;2078:2;;;2126:1;2123;2116:12;2078:2;2169:1;2194:53;2239:7;2230:6;2219:9;2215:22;2194:53;:::i;:::-;2184:63;;2140:117;2068:196;;;;:::o;2270:407::-;;;2395:2;2383:9;2374:7;2370:23;2366:32;2363:2;;;2411:1;2408;2401:12;2363:2;2454:1;2479:53;2524:7;2515:6;2504:9;2500:22;2479:53;:::i;:::-;2469:63;;2425:117;2581:2;2607:53;2652:7;2643:6;2632:9;2628:22;2607:53;:::i;:::-;2597:63;;2552:118;2353:324;;;;;:::o;2683:552::-;;;;2825:2;2813:9;2804:7;2800:23;2796:32;2793:2;;;2841:1;2838;2831:12;2793:2;2884:1;2909:53;2954:7;2945:6;2934:9;2930:22;2909:53;:::i;:::-;2899:63;;2855:117;3011:2;3037:53;3082:7;3073:6;3062:9;3058:22;3037:53;:::i;:::-;3027:63;;2982:118;3139:2;3165:53;3210:7;3201:6;3190:9;3186:22;3165:53;:::i;:::-;3155:63;;3110:118;2783:452;;;;;:::o;3241:809::-;;;;;3409:3;3397:9;3388:7;3384:23;3380:33;3377:2;;;3426:1;3423;3416:12;3377:2;3469:1;3494:53;3539:7;3530:6;3519:9;3515:22;3494:53;:::i;:::-;3484:63;;3440:117;3596:2;3622:53;3667:7;3658:6;3647:9;3643:22;3622:53;:::i;:::-;3612:63;;3567:118;3724:2;3750:53;3795:7;3786:6;3775:9;3771:22;3750:53;:::i;:::-;3740:63;;3695:118;3880:2;3869:9;3865:18;3852:32;3911:18;3903:6;3900:30;3897:2;;;3943:1;3940;3933:12;3897:2;3971:62;4025:7;4016:6;4005:9;4001:22;3971:62;:::i;:::-;3961:72;;3823:220;3367:683;;;;;;;:::o;4056:401::-;;;4178:2;4166:9;4157:7;4153:23;4149:32;4146:2;;;4194:1;4191;4184:12;4146:2;4237:1;4262:53;4307:7;4298:6;4287:9;4283:22;4262:53;:::i;:::-;4252:63;;4208:117;4364:2;4390:50;4432:7;4423:6;4412:9;4408:22;4390:50;:::i;:::-;4380:60;;4335:115;4136:321;;;;;:::o;4463:951::-;;;;;;4646:3;4634:9;4625:7;4621:23;4617:33;4614:2;;;4663:1;4660;4653:12;4614:2;4706:1;4731:53;4776:7;4767:6;4756:9;4752:22;4731:53;:::i;:::-;4721:63;;4677:117;4861:2;4850:9;4846:18;4833:32;4892:18;4884:6;4881:30;4878:2;;;4924:1;4921;4914:12;4878:2;4952:62;5006:7;4997:6;4986:9;4982:22;4952:62;:::i;:::-;4942:72;;4804:220;5063:2;5089:53;5134:7;5125:6;5114:9;5110:22;5089:53;:::i;:::-;5079:63;;5034:118;5191:2;5217:53;5262:7;5253:6;5242:9;5238:22;5217:53;:::i;:::-;5207:63;;5162:118;5319:3;5346:51;5389:7;5380:6;5369:9;5365:22;5346:51;:::i;:::-;5336:61;;5290:117;4604:810;;;;;;;;:::o;5420:407::-;;;5545:2;5533:9;5524:7;5520:23;5516:32;5513:2;;;5561:1;5558;5551:12;5513:2;5604:1;5629:53;5674:7;5665:6;5654:9;5650:22;5629:53;:::i;:::-;5619:63;;5575:117;5731:2;5757:53;5802:7;5793:6;5782:9;5778:22;5757:53;:::i;:::-;5747:63;;5702:118;5503:324;;;;;:::o;5833:260::-;;5940:2;5928:9;5919:7;5915:23;5911:32;5908:2;;;5956:1;5953;5946:12;5908:2;5999:1;6024:52;6068:7;6059:6;6048:9;6044:22;6024:52;:::i;:::-;6014:62;;5970:116;5898:195;;;;:::o;6099:282::-;;6217:2;6205:9;6196:7;6192:23;6188:32;6185:2;;;6233:1;6230;6223:12;6185:2;6276:1;6301:63;6356:7;6347:6;6336:9;6332:22;6301:63;:::i;:::-;6291:73;;6247:127;6175:206;;;;:::o;6387:342::-;;6535:2;6523:9;6514:7;6510:23;6506:32;6503:2;;;6551:1;6548;6541:12;6503:2;6594:1;6619:93;6704:7;6695:6;6684:9;6680:22;6619:93;:::i;:::-;6609:103;;6565:157;6493:236;;;;:::o;6735:262::-;;6843:2;6831:9;6822:7;6818:23;6814:32;6811:2;;;6859:1;6856;6849:12;6811:2;6902:1;6927:53;6972:7;6963:6;6952:9;6948:22;6927:53;:::i;:::-;6917:63;;6873:117;6801:196;;;;:::o;7003:262::-;;7111:2;7099:9;7090:7;7086:23;7082:32;7079:2;;;7127:1;7124;7117:12;7079:2;7170:1;7195:53;7240:7;7231:6;7220:9;7216:22;7195:53;:::i;:::-;7185:63;;7141:117;7069:196;;;;:::o;7271:142::-;7374:32;7400:5;7374:32;:::i;:::-;7369:3;7362:45;7352:61;;:::o;7419:118::-;7506:24;7524:5;7506:24;:::i;:::-;7501:3;7494:37;7484:53;;:::o;7543:157::-;7648:45;7668:24;7686:5;7668:24;:::i;:::-;7648:45;:::i;:::-;7643:3;7636:58;7626:74;;:::o;7706:109::-;7787:21;7802:5;7787:21;:::i;:::-;7782:3;7775:34;7765:50;;:::o;7821:118::-;7908:24;7926:5;7908:24;:::i;:::-;7903:3;7896:37;7886:53;;:::o;7945:157::-;8050:45;8070:24;8088:5;8070:24;:::i;:::-;8050:45;:::i;:::-;8045:3;8038:58;8028:74;;:::o;8108:360::-;;8222:38;8254:5;8222:38;:::i;:::-;8276:70;8339:6;8334:3;8276:70;:::i;:::-;8269:77;;8355:52;8400:6;8395:3;8388:4;8381:5;8377:16;8355:52;:::i;:::-;8432:29;8454:6;8432:29;:::i;:::-;8427:3;8423:39;8416:46;;8198:270;;;;;:::o;8474:373::-;;8606:38;8638:5;8606:38;:::i;:::-;8660:88;8741:6;8736:3;8660:88;:::i;:::-;8653:95;;8757:52;8802:6;8797:3;8790:4;8783:5;8779:16;8757:52;:::i;:::-;8834:6;8829:3;8825:16;8818:23;;8582:265;;;;;:::o;8853:364::-;;8969:39;9002:5;8969:39;:::i;:::-;9024:71;9088:6;9083:3;9024:71;:::i;:::-;9017:78;;9104:52;9149:6;9144:3;9137:4;9130:5;9126:16;9104:52;:::i;:::-;9181:29;9203:6;9181:29;:::i;:::-;9176:3;9172:39;9165:46;;8945:272;;;;;:::o;9223:377::-;;9357:39;9390:5;9357:39;:::i;:::-;9412:89;9494:6;9489:3;9412:89;:::i;:::-;9405:96;;9510:52;9555:6;9550:3;9543:4;9536:5;9532:16;9510:52;:::i;:::-;9587:6;9582:3;9578:16;9571:23;;9333:267;;;;;:::o;9606:374::-;;9769:67;9833:2;9828:3;9769:67;:::i;:::-;9762:74;;9866:34;9862:1;9857:3;9853:11;9846:55;9932:12;9927:2;9922:3;9918:12;9911:34;9971:2;9966:3;9962:12;9955:19;;9752:228;;;:::o;9986:382::-;;10149:67;10213:2;10208:3;10149:67;:::i;:::-;10142:74;;10246:34;10242:1;10237:3;10233:11;10226:55;10312:20;10307:2;10302:3;10298:12;10291:42;10359:2;10354:3;10350:12;10343:19;;10132:236;;;:::o;10374:370::-;;10537:67;10601:2;10596:3;10537:67;:::i;:::-;10530:74;;10634:34;10630:1;10625:3;10621:11;10614:55;10700:8;10695:2;10690:3;10686:12;10679:30;10735:2;10730:3;10726:12;10719:19;;10520:224;;;:::o;10750:326::-;;10913:67;10977:2;10972:3;10913:67;:::i;:::-;10906:74;;11010:30;11006:1;11001:3;10997:11;10990:51;11067:2;11062:3;11058:12;11051:19;;10896:180;;;:::o;11082:329::-;;11245:67;11309:2;11304:3;11245:67;:::i;:::-;11238:74;;11342:33;11338:1;11333:3;11329:11;11322:54;11402:2;11397:3;11393:12;11386:19;;11228:183;;;:::o;11417:326::-;;11580:67;11644:2;11639:3;11580:67;:::i;:::-;11573:74;;11677:30;11673:1;11668:3;11664:11;11657:51;11734:2;11729:3;11725:12;11718:19;;11563:180;;;:::o;11749:396::-;;11930:84;12012:1;12007:3;11930:84;:::i;:::-;11923:91;;12044:66;12040:1;12035:3;12031:11;12024:87;12137:1;12132:3;12128:11;12121:18;;11913:232;;;:::o;12151:368::-;;12314:67;12378:2;12373:3;12314:67;:::i;:::-;12307:74;;12411:34;12407:1;12402:3;12398:11;12391:55;12477:6;12472:2;12467:3;12463:12;12456:28;12510:2;12505:3;12501:12;12494:19;;12297:222;;;:::o;12525:323::-;;12688:67;12752:2;12747:3;12688:67;:::i;:::-;12681:74;;12785:27;12781:1;12776:3;12772:11;12765:48;12839:2;12834:3;12830:12;12823:19;;12671:177;;;:::o;12854:376::-;;13017:67;13081:2;13076:3;13017:67;:::i;:::-;13010:74;;13114:34;13110:1;13105:3;13101:11;13094:55;13180:14;13175:2;13170:3;13166:12;13159:36;13221:2;13216:3;13212:12;13205:19;;13000:230;;;:::o;13236:369::-;;13399:67;13463:2;13458:3;13399:67;:::i;:::-;13392:74;;13496:34;13492:1;13487:3;13483:11;13476:55;13562:7;13557:2;13552:3;13548:12;13541:29;13596:2;13591:3;13587:12;13580:19;;13382:223;;;:::o;13611:388::-;;13774:67;13838:2;13833:3;13774:67;:::i;:::-;13767:74;;13871:34;13867:1;13862:3;13858:11;13851:55;13937:26;13932:2;13927:3;13923:12;13916:48;13990:2;13985:3;13981:12;13974:19;;13757:242;;;:::o;14005:374::-;;14168:67;14232:2;14227:3;14168:67;:::i;:::-;14161:74;;14265:34;14261:1;14256:3;14252:11;14245:55;14331:12;14326:2;14321:3;14317:12;14310:34;14370:2;14365:3;14361:12;14354:19;;14151:228;;;:::o;14385:373::-;;14548:67;14612:2;14607:3;14548:67;:::i;:::-;14541:74;;14645:34;14641:1;14636:3;14632:11;14625:55;14711:11;14706:2;14701:3;14697:12;14690:33;14749:2;14744:3;14740:12;14733:19;;14531:227;;;:::o;14764:330::-;;14927:67;14991:2;14986:3;14927:67;:::i;:::-;14920:74;;15024:34;15020:1;15015:3;15011:11;15004:55;15085:2;15080:3;15076:12;15069:19;;14910:184;;;:::o;15100:376::-;;15263:67;15327:2;15322:3;15263:67;:::i;:::-;15256:74;;15360:34;15356:1;15351:3;15347:11;15340:55;15426:14;15421:2;15416:3;15412:12;15405:36;15467:2;15462:3;15458:12;15451:19;;15246:230;;;:::o;15482:330::-;;15645:67;15709:2;15704:3;15645:67;:::i;:::-;15638:74;;15742:34;15738:1;15733:3;15729:11;15722:55;15803:2;15798:3;15794:12;15787:19;;15628:184;;;:::o;15818:318::-;;15981:67;16045:2;16040:3;15981:67;:::i;:::-;15974:74;;16078:22;16074:1;16069:3;16065:11;16058:43;16127:2;16122:3;16118:12;16111:19;;15964:172;;;:::o;16142:373::-;;16305:67;16369:2;16364:3;16305:67;:::i;:::-;16298:74;;16402:34;16398:1;16393:3;16389:11;16382:55;16468:11;16463:2;16458:3;16454:12;16447:33;16506:2;16501:3;16497:12;16490:19;;16288:227;;;:::o;16521:365::-;;16684:67;16748:2;16743:3;16684:67;:::i;:::-;16677:74;;16781:34;16777:1;16772:3;16768:11;16761:55;16847:3;16842:2;16837:3;16833:12;16826:25;16877:2;16872:3;16868:12;16861:19;;16667:219;;;:::o;16892:367::-;;17055:67;17119:2;17114:3;17055:67;:::i;:::-;17048:74;;17152:34;17148:1;17143:3;17139:11;17132:55;17218:5;17213:2;17208:3;17204:12;17197:27;17250:2;17245:3;17241:12;17234:19;;17038:221;;;:::o;17265:365::-;;17428:67;17492:2;17487:3;17428:67;:::i;:::-;17421:74;;17525:34;17521:1;17516:3;17512:11;17505:55;17591:3;17586:2;17581:3;17577:12;17570:25;17621:2;17616:3;17612:12;17605:19;;17411:219;;;:::o;17636:297::-;;17816:83;17897:1;17892:3;17816:83;:::i;:::-;17809:90;;17925:1;17920:3;17916:11;17909:18;;17799:134;;;:::o;17939:381::-;;18102:67;18166:2;18161:3;18102:67;:::i;:::-;18095:74;;18199:34;18195:1;18190:3;18186:11;18179:55;18265:19;18260:2;18255:3;18251:12;18244:41;18311:2;18306:3;18302:12;18295:19;;18085:235;;;:::o;18326:118::-;18413:24;18431:5;18413:24;:::i;:::-;18408:3;18401:37;18391:53;;:::o;18450:118::-;18537:24;18555:5;18537:24;:::i;:::-;18532:3;18525:37;18515:53;;:::o;18574:112::-;18657:22;18673:5;18657:22;:::i;:::-;18652:3;18645:35;18635:51;;:::o;18692:271::-;;18844:93;18933:3;18924:6;18844:93;:::i;:::-;18837:100;;18954:3;18947:10;;18826:137;;;;:::o;18969:412::-;;19149:93;19238:3;19229:6;19149:93;:::i;:::-;19142:100;;19252:75;19323:3;19314:6;19252:75;:::i;:::-;19352:2;19347:3;19343:12;19336:19;;19372:3;19365:10;;19131:250;;;;;:::o;19387:435::-;;19589:95;19680:3;19671:6;19589:95;:::i;:::-;19582:102;;19701:95;19792:3;19783:6;19701:95;:::i;:::-;19694:102;;19813:3;19806:10;;19571:251;;;;;:::o;19828:663::-;;20091:148;20235:3;20091:148;:::i;:::-;20084:155;;20249:75;20320:3;20311:6;20249:75;:::i;:::-;20349:2;20344:3;20340:12;20333:19;;20362:75;20433:3;20424:6;20362:75;:::i;:::-;20462:2;20457:3;20453:12;20446:19;;20482:3;20475:10;;20073:418;;;;;:::o;20497:379::-;;20703:147;20846:3;20703:147;:::i;:::-;20696:154;;20867:3;20860:10;;20685:191;;;:::o;20882:222::-;;21013:2;21002:9;20998:18;20990:26;;21026:71;21094:1;21083:9;21079:17;21070:6;21026:71;:::i;:::-;20980:124;;;;:::o;21110:561::-;;21331:2;21320:9;21316:18;21308:26;;21344:71;21412:1;21401:9;21397:17;21388:6;21344:71;:::i;:::-;21425:88;21509:2;21498:9;21494:18;21485:6;21425:88;:::i;:::-;21560:9;21554:4;21550:20;21545:2;21534:9;21530:18;21523:48;21588:76;21659:4;21650:6;21588:76;:::i;:::-;21580:84;;21298:373;;;;;;:::o;21677:640::-;;21910:3;21899:9;21895:19;21887:27;;21924:71;21992:1;21981:9;21977:17;21968:6;21924:71;:::i;:::-;22005:72;22073:2;22062:9;22058:18;22049:6;22005:72;:::i;:::-;22087;22155:2;22144:9;22140:18;22131:6;22087:72;:::i;:::-;22206:9;22200:4;22196:20;22191:2;22180:9;22176:18;22169:48;22234:76;22305:4;22296:6;22234:76;:::i;:::-;22226:84;;21877:440;;;;;;;:::o;22323:210::-;;22448:2;22437:9;22433:18;22425:26;;22461:65;22523:1;22512:9;22508:17;22499:6;22461:65;:::i;:::-;22415:118;;;;:::o;22539:222::-;;22670:2;22659:9;22655:18;22647:26;;22683:71;22751:1;22740:9;22736:17;22727:6;22683:71;:::i;:::-;22637:124;;;;:::o;22767:553::-;;22982:3;22971:9;22967:19;22959:27;;22996:71;23064:1;23053:9;23049:17;23040:6;22996:71;:::i;:::-;23077:72;23145:2;23134:9;23130:18;23121:6;23077:72;:::i;:::-;23159;23227:2;23216:9;23212:18;23203:6;23159:72;:::i;:::-;23241;23309:2;23298:9;23294:18;23285:6;23241:72;:::i;:::-;22949:371;;;;;;;:::o;23326:545::-;;23537:3;23526:9;23522:19;23514:27;;23551:71;23619:1;23608:9;23604:17;23595:6;23551:71;:::i;:::-;23632:68;23696:2;23685:9;23681:18;23672:6;23632:68;:::i;:::-;23710:72;23778:2;23767:9;23763:18;23754:6;23710:72;:::i;:::-;23792;23860:2;23849:9;23845:18;23836:6;23792:72;:::i;:::-;23504:367;;;;;;;:::o;23877:309::-;;24026:2;24015:9;24011:18;24003:26;;24075:9;24069:4;24065:20;24061:1;24050:9;24046:17;24039:47;24103:76;24174:4;24165:6;24103:76;:::i;:::-;24095:84;;23993:193;;;;:::o;24192:313::-;;24343:2;24332:9;24328:18;24320:26;;24392:9;24386:4;24382:20;24378:1;24367:9;24363:17;24356:47;24420:78;24493:4;24484:6;24420:78;:::i;:::-;24412:86;;24310:195;;;;:::o;24511:419::-;;24715:2;24704:9;24700:18;24692:26;;24764:9;24758:4;24754:20;24750:1;24739:9;24735:17;24728:47;24792:131;24918:4;24792:131;:::i;:::-;24784:139;;24682:248;;;:::o;24936:419::-;;25140:2;25129:9;25125:18;25117:26;;25189:9;25183:4;25179:20;25175:1;25164:9;25160:17;25153:47;25217:131;25343:4;25217:131;:::i;:::-;25209:139;;25107:248;;;:::o;25361:419::-;;25565:2;25554:9;25550:18;25542:26;;25614:9;25608:4;25604:20;25600:1;25589:9;25585:17;25578:47;25642:131;25768:4;25642:131;:::i;:::-;25634:139;;25532:248;;;:::o;25786:419::-;;25990:2;25979:9;25975:18;25967:26;;26039:9;26033:4;26029:20;26025:1;26014:9;26010:17;26003:47;26067:131;26193:4;26067:131;:::i;:::-;26059:139;;25957:248;;;:::o;26211:419::-;;26415:2;26404:9;26400:18;26392:26;;26464:9;26458:4;26454:20;26450:1;26439:9;26435:17;26428:47;26492:131;26618:4;26492:131;:::i;:::-;26484:139;;26382:248;;;:::o;26636:419::-;;26840:2;26829:9;26825:18;26817:26;;26889:9;26883:4;26879:20;26875:1;26864:9;26860:17;26853:47;26917:131;27043:4;26917:131;:::i;:::-;26909:139;;26807:248;;;:::o;27061:419::-;;27265:2;27254:9;27250:18;27242:26;;27314:9;27308:4;27304:20;27300:1;27289:9;27285:17;27278:47;27342:131;27468:4;27342:131;:::i;:::-;27334:139;;27232:248;;;:::o;27486:419::-;;27690:2;27679:9;27675:18;27667:26;;27739:9;27733:4;27729:20;27725:1;27714:9;27710:17;27703:47;27767:131;27893:4;27767:131;:::i;:::-;27759:139;;27657:248;;;:::o;27911:419::-;;28115:2;28104:9;28100:18;28092:26;;28164:9;28158:4;28154:20;28150:1;28139:9;28135:17;28128:47;28192:131;28318:4;28192:131;:::i;:::-;28184:139;;28082:248;;;:::o;28336:419::-;;28540:2;28529:9;28525:18;28517:26;;28589:9;28583:4;28579:20;28575:1;28564:9;28560:17;28553:47;28617:131;28743:4;28617:131;:::i;:::-;28609:139;;28507:248;;;:::o;28761:419::-;;28965:2;28954:9;28950:18;28942:26;;29014:9;29008:4;29004:20;29000:1;28989:9;28985:17;28978:47;29042:131;29168:4;29042:131;:::i;:::-;29034:139;;28932:248;;;:::o;29186:419::-;;29390:2;29379:9;29375:18;29367:26;;29439:9;29433:4;29429:20;29425:1;29414:9;29410:17;29403:47;29467:131;29593:4;29467:131;:::i;:::-;29459:139;;29357:248;;;:::o;29611:419::-;;29815:2;29804:9;29800:18;29792:26;;29864:9;29858:4;29854:20;29850:1;29839:9;29835:17;29828:47;29892:131;30018:4;29892:131;:::i;:::-;29884:139;;29782:248;;;:::o;30036:419::-;;30240:2;30229:9;30225:18;30217:26;;30289:9;30283:4;30279:20;30275:1;30264:9;30260:17;30253:47;30317:131;30443:4;30317:131;:::i;:::-;30309:139;;30207:248;;;:::o;30461:419::-;;30665:2;30654:9;30650:18;30642:26;;30714:9;30708:4;30704:20;30700:1;30689:9;30685:17;30678:47;30742:131;30868:4;30742:131;:::i;:::-;30734:139;;30632:248;;;:::o;30886:419::-;;31090:2;31079:9;31075:18;31067:26;;31139:9;31133:4;31129:20;31125:1;31114:9;31110:17;31103:47;31167:131;31293:4;31167:131;:::i;:::-;31159:139;;31057:248;;;:::o;31311:419::-;;31515:2;31504:9;31500:18;31492:26;;31564:9;31558:4;31554:20;31550:1;31539:9;31535:17;31528:47;31592:131;31718:4;31592:131;:::i;:::-;31584:139;;31482:248;;;:::o;31736:419::-;;31940:2;31929:9;31925:18;31917:26;;31989:9;31983:4;31979:20;31975:1;31964:9;31960:17;31953:47;32017:131;32143:4;32017:131;:::i;:::-;32009:139;;31907:248;;;:::o;32161:419::-;;32365:2;32354:9;32350:18;32342:26;;32414:9;32408:4;32404:20;32400:1;32389:9;32385:17;32378:47;32442:131;32568:4;32442:131;:::i;:::-;32434:139;;32332:248;;;:::o;32586:419::-;;32790:2;32779:9;32775:18;32767:26;;32839:9;32833:4;32829:20;32825:1;32814:9;32810:17;32803:47;32867:131;32993:4;32867:131;:::i;:::-;32859:139;;32757:248;;;:::o;33011:419::-;;33215:2;33204:9;33200:18;33192:26;;33264:9;33258:4;33254:20;33250:1;33239:9;33235:17;33228:47;33292:131;33418:4;33292:131;:::i;:::-;33284:139;;33182:248;;;:::o;33436:419::-;;33640:2;33629:9;33625:18;33617:26;;33689:9;33683:4;33679:20;33675:1;33664:9;33660:17;33653:47;33717:131;33843:4;33717:131;:::i;:::-;33709:139;;33607:248;;;:::o;33861:222::-;;33992:2;33981:9;33977:18;33969:26;;34005:71;34073:1;34062:9;34058:17;34049:6;34005:71;:::i;:::-;33959:124;;;;:::o;34089:222::-;;34220:2;34209:9;34205:18;34197:26;;34233:71;34301:1;34290:9;34286:17;34277:6;34233:71;:::i;:::-;34187:124;;;;:::o;34317:283::-;;34383:2;34377:9;34367:19;;34425:4;34417:6;34413:17;34532:6;34520:10;34517:22;34496:18;34484:10;34481:34;34478:62;34475:2;;;34543:18;;:::i;:::-;34475:2;34583:10;34579:2;34572:22;34357:243;;;;:::o;34606:331::-;;34757:18;34749:6;34746:30;34743:2;;;34779:18;;:::i;:::-;34743:2;34864:4;34860:9;34853:4;34845:6;34841:17;34837:33;34829:41;;34925:4;34919;34915:15;34907:23;;34672:265;;;:::o;34943:98::-;;35028:5;35022:12;35012:22;;35001:40;;;:::o;35047:99::-;;35133:5;35127:12;35117:22;;35106:40;;;:::o;35152:168::-;;35269:6;35264:3;35257:19;35309:4;35304:3;35300:14;35285:29;;35247:73;;;;:::o;35326:147::-;;35464:3;35449:18;;35439:34;;;;:::o;35479:169::-;;35597:6;35592:3;35585:19;35637:4;35632:3;35628:14;35613:29;;35575:73;;;;:::o;35654:148::-;;35793:3;35778:18;;35768:34;;;;:::o;35808:305::-;;35867:20;35885:1;35867:20;:::i;:::-;35862:25;;35901:20;35919:1;35901:20;:::i;:::-;35896:25;;36055:1;35987:66;35983:74;35980:1;35977:81;35974:2;;;36061:18;;:::i;:::-;35974:2;36105:1;36102;36098:9;36091:16;;35852:261;;;;:::o;36119:185::-;;36176:20;36194:1;36176:20;:::i;:::-;36171:25;;36210:20;36228:1;36210:20;:::i;:::-;36205:25;;36249:1;36239:2;;36254:18;;:::i;:::-;36239:2;36296:1;36293;36289:9;36284:14;;36161:143;;;;:::o;36310:191::-;;36370:20;36388:1;36370:20;:::i;:::-;36365:25;;36404:20;36422:1;36404:20;:::i;:::-;36399:25;;36443:1;36440;36437:8;36434:2;;;36448:18;;:::i;:::-;36434:2;36493:1;36490;36486:9;36478:17;;36355:146;;;;:::o;36507:96::-;;36573:24;36591:5;36573:24;:::i;:::-;36562:35;;36552:51;;;:::o;36609:104::-;;36683:24;36701:5;36683:24;:::i;:::-;36672:35;;36662:51;;;:::o;36719:90::-;;36796:5;36789:13;36782:21;36771:32;;36761:48;;;:::o;36815:77::-;;36881:5;36870:16;;36860:32;;;:::o;36898:149::-;;36974:66;36967:5;36963:78;36952:89;;36942:105;;;:::o;37053:125::-;;37148:24;37166:5;37148:24;:::i;:::-;37137:35;;37127:51;;;:::o;37184:118::-;;37261:34;37254:5;37250:46;37239:57;;37229:73;;;:::o;37308:126::-;;37385:42;37378:5;37374:54;37363:65;;37353:81;;;:::o;37440:77::-;;37506:5;37495:16;;37485:32;;;:::o;37523:86::-;;37598:4;37591:5;37587:16;37576:27;;37566:43;;;:::o;37615:154::-;37699:6;37694:3;37689;37676:30;37761:1;37752:6;37747:3;37743:16;37736:27;37666:103;;;:::o;37775:307::-;37843:1;37853:113;37867:6;37864:1;37861:13;37853:113;;;37952:1;37947:3;37943:11;37937:18;37933:1;37928:3;37924:11;37917:39;37889:2;37886:1;37882:10;37877:15;;37853:113;;;37984:6;37981:1;37978:13;37975:2;;;38064:1;38055:6;38050:3;38046:16;38039:27;37975:2;37824:258;;;;:::o;38088:320::-;;38169:1;38163:4;38159:12;38149:22;;38216:1;38210:4;38206:12;38237:18;38227:2;;38293:4;38285:6;38281:17;38271:27;;38227:2;38355;38347:6;38344:14;38324:18;38321:38;38318:2;;;38374:18;;:::i;:::-;38318:2;38139:269;;;;:::o;38414:233::-;;38476:24;38494:5;38476:24;:::i;:::-;38467:33;;38522:66;38515:5;38512:77;38509:2;;;38592:18;;:::i;:::-;38509:2;38639:1;38632:5;38628:13;38621:20;;38457:190;;;:::o;38653:100::-;;38721:26;38741:5;38721:26;:::i;:::-;38710:37;;38700:53;;;:::o;38759:79::-;;38827:5;38816:16;;38806:32;;;:::o;38844:94::-;;38912:20;38926:5;38912:20;:::i;:::-;38901:31;;38891:47;;;:::o;38944:176::-;;38993:20;39011:1;38993:20;:::i;:::-;38988:25;;39027:20;39045:1;39027:20;:::i;:::-;39022:25;;39066:1;39056:2;;39071:18;;:::i;:::-;39056:2;39112:1;39109;39105:9;39100:14;;38978:142;;;;:::o;39126:180::-;39174:77;39171:1;39164:88;39271:4;39268:1;39261:15;39295:4;39292:1;39285:15;39312:180;39360:77;39357:1;39350:88;39457:4;39454:1;39447:15;39481:4;39478:1;39471:15;39498:180;39546:77;39543:1;39536:88;39643:4;39640:1;39633:15;39667:4;39664:1;39657:15;39684:180;39732:77;39729:1;39722:88;39829:4;39826:1;39819:15;39853:4;39850:1;39843:15;39870:102;;39962:2;39958:7;39953:2;39946:5;39942:14;39938:28;39928:38;;39918:54;;;:::o;39978:94::-;;40059:5;40055:2;40051:14;40030:35;;40020:52;;;:::o;40078:122::-;40151:24;40169:5;40151:24;:::i;:::-;40144:5;40141:35;40131:2;;40190:1;40187;40180:12;40131:2;40121:79;:::o;40206:116::-;40276:21;40291:5;40276:21;:::i;:::-;40269:5;40266:32;40256:2;;40312:1;40309;40302:12;40256:2;40246:76;:::o;40328:122::-;40401:24;40419:5;40401:24;:::i;:::-;40394:5;40391:35;40381:2;;40440:1;40437;40430:12;40381:2;40371:79;:::o;40456:120::-;40528:23;40545:5;40528:23;:::i;:::-;40521:5;40518:34;40508:2;;40566:1;40563;40556:12;40508:2;40498:78;:::o;40582:180::-;40684:53;40731:5;40684:53;:::i;:::-;40677:5;40674:64;40664:2;;40752:1;40749;40742:12;40664:2;40654:108;:::o;40768:122::-;40841:24;40859:5;40841:24;:::i;:::-;40834:5;40831:35;40821:2;;40880:1;40877;40870:12;40821:2;40811:79;:::o;40896:122::-;40969:24;40987:5;40969:24;:::i;:::-;40962:5;40959:35;40949:2;;41008:1;41005;40998:12;40949:2;40939:79;:::o;41024:118::-;41095:22;41111:5;41095:22;:::i;:::-;41088:5;41085:33;41075:2;;41132:1;41129;41122:12;41075:2;41065:77;:::o

Swarm Source

ipfs://8d019bf8829901311024399bb0ec033c5827f9227a610e79cccff9472ea0836e
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.