ETH Price: $3,047.04 (+2.83%)
Gas: 2 Gwei

Token

Vizmesh Frames (FRM) ()
 

Overview

Max Total Supply

1,111

Holders

252

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
janiefitzgerald.eth
0xcd7c79616238fd3a887d21eda7e1f1c058845ef4
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

##### DECENTRALIZE ART CURATION Vizmesh (derived from a mesh of visualizations) is a web3 art gallery and decentralized curator collective where frame holders decide what NFT art to display in IRL exhibitions. All art selections are stored on-chain to bring transparency to cur...

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Vizmesh

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-03-02
*/

// SPDX-License-Identifier: MIT
// File: @openzeppelin/contracts/utils/Strings.sol


// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

// File: @openzeppelin/contracts/utils/Context.sol


// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

// File: @openzeppelin/contracts/access/Ownable.sol


// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;


/**
 * @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: @openzeppelin/contracts/utils/Address.sol


// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/utils/introspection/IERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/utils/introspection/ERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;


/**
 * @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: @openzeppelin/contracts/token/ERC1155/IERC1155Receiver.sol


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC1155/IERC1155Receiver.sol)

pragma solidity ^0.8.0;


/**
 * @dev _Available since v3.1._
 */
interface IERC1155Receiver is IERC165 {
    /**
     * @dev Handles the receipt of a single ERC1155 token type. This function is
     * called at the end of a `safeTransferFrom` after the balance has been updated.
     *
     * NOTE: To accept the transfer, this must return
     * `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))`
     * (i.e. 0xf23a6e61, or its own function selector).
     *
     * @param operator The address which initiated the transfer (i.e. msg.sender)
     * @param from The address which previously owned the token
     * @param id The ID of the token being transferred
     * @param value The amount of tokens being transferred
     * @param data Additional data with no specified format
     * @return `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` if transfer is allowed
     */
    function onERC1155Received(
        address operator,
        address from,
        uint256 id,
        uint256 value,
        bytes calldata data
    ) external returns (bytes4);

    /**
     * @dev Handles the receipt of a multiple ERC1155 token types. This function
     * is called at the end of a `safeBatchTransferFrom` after the balances have
     * been updated.
     *
     * NOTE: To accept the transfer(s), this must return
     * `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))`
     * (i.e. 0xbc197c81, or its own function selector).
     *
     * @param operator The address which initiated the batch transfer (i.e. msg.sender)
     * @param from The address which previously owned the token
     * @param ids An array containing ids of each token being transferred (order and length must match values array)
     * @param values An array containing amounts of each token being transferred (order and length must match ids array)
     * @param data Additional data with no specified format
     * @return `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` if transfer is allowed
     */
    function onERC1155BatchReceived(
        address operator,
        address from,
        uint256[] calldata ids,
        uint256[] calldata values,
        bytes calldata data
    ) external returns (bytes4);
}

// File: @openzeppelin/contracts/token/ERC1155/IERC1155.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC1155/IERC1155.sol)

pragma solidity ^0.8.0;


/**
 * @dev Required interface of an ERC1155 compliant contract, as defined in the
 * https://eips.ethereum.org/EIPS/eip-1155[EIP].
 *
 * _Available since v3.1._
 */
interface IERC1155 is IERC165 {
    /**
     * @dev Emitted when `value` tokens of token type `id` are transferred from `from` to `to` by `operator`.
     */
    event TransferSingle(address indexed operator, address indexed from, address indexed to, uint256 id, uint256 value);

    /**
     * @dev Equivalent to multiple {TransferSingle} events, where `operator`, `from` and `to` are the same for all
     * transfers.
     */
    event TransferBatch(
        address indexed operator,
        address indexed from,
        address indexed to,
        uint256[] ids,
        uint256[] values
    );

    /**
     * @dev Emitted when `account` grants or revokes permission to `operator` to transfer their tokens, according to
     * `approved`.
     */
    event ApprovalForAll(address indexed account, address indexed operator, bool approved);

    /**
     * @dev Emitted when the URI for token type `id` changes to `value`, if it is a non-programmatic URI.
     *
     * If an {URI} event was emitted for `id`, the standard
     * https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[guarantees] that `value` will equal the value
     * returned by {IERC1155MetadataURI-uri}.
     */
    event URI(string value, uint256 indexed id);

    /**
     * @dev Returns the amount of tokens of token type `id` owned by `account`.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function balanceOf(address account, uint256 id) external view returns (uint256);

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {balanceOf}.
     *
     * Requirements:
     *
     * - `accounts` and `ids` must have the same length.
     */
    function balanceOfBatch(address[] calldata accounts, uint256[] calldata ids)
        external
        view
        returns (uint256[] memory);

    /**
     * @dev Grants or revokes permission to `operator` to transfer the caller's tokens, according to `approved`,
     *
     * Emits an {ApprovalForAll} event.
     *
     * Requirements:
     *
     * - `operator` cannot be the caller.
     */
    function setApprovalForAll(address operator, bool approved) external;

    /**
     * @dev Returns true if `operator` is approved to transfer ``account``'s tokens.
     *
     * See {setApprovalForAll}.
     */
    function isApprovedForAll(address account, address operator) external view returns (bool);

    /**
     * @dev Transfers `amount` tokens of token type `id` from `from` to `to`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - If the caller is not `from`, it must be have been approved to spend ``from``'s tokens via {setApprovalForAll}.
     * - `from` must have a balance of tokens of type `id` of at least `amount`.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes calldata data
    ) external;

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {safeTransferFrom}.
     *
     * Emits a {TransferBatch} event.
     *
     * Requirements:
     *
     * - `ids` and `amounts` must have the same length.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
     * acceptance magic value.
     */
    function safeBatchTransferFrom(
        address from,
        address to,
        uint256[] calldata ids,
        uint256[] calldata amounts,
        bytes calldata data
    ) external;
}

// File: @openzeppelin/contracts/token/ERC1155/extensions/IERC1155MetadataURI.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC1155/extensions/IERC1155MetadataURI.sol)

pragma solidity ^0.8.0;


/**
 * @dev Interface of the optional ERC1155MetadataExtension interface, as defined
 * in the https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[EIP].
 *
 * _Available since v3.1._
 */
interface IERC1155MetadataURI is IERC1155 {
    /**
     * @dev Returns the URI for token type `id`.
     *
     * If the `\{id\}` substring is present in the URI, it must be replaced by
     * clients with the actual token type ID.
     */
    function uri(uint256 id) external view returns (string memory);
}

// File: @openzeppelin/contracts/token/ERC1155/ERC1155.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC1155/ERC1155.sol)

pragma solidity ^0.8.0;







/**
 * @dev Implementation of the basic standard multi-token.
 * See https://eips.ethereum.org/EIPS/eip-1155
 * Originally based on code by Enjin: https://github.com/enjin/erc-1155
 *
 * _Available since v3.1._
 */
contract ERC1155 is Context, ERC165, IERC1155, IERC1155MetadataURI {
    using Address for address;

    // Mapping from token ID to account balances
    mapping(uint256 => mapping(address => uint256)) private _balances;

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

    // Used as the URI for all token types by relying on ID substitution, e.g. https://token-cdn-domain/{id}.json
    string private _uri;

    uint256 private _supplyCap;

    /**
     * @dev See {_setURI}.
     */
    constructor(string memory uri_) {
        _setURI(uri_);
        _supplyCap = 10000;
    }

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

    /**
     * @dev See {IERC1155MetadataURI-uri}.
     *
     * This implementation returns the same URI for *all* token types. It relies
     * on the token type ID substitution mechanism
     * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP].
     *
     * Clients calling this function must replace the `\{id\}` substring with the
     * actual token type ID.
     */
    function uri(uint256 id) public view virtual override returns (string memory) {
        return string(
            abi.encodePacked(
                _uri,
                Strings.toString(id),
                ".json"
            )
        );
    }

    /**
     * @dev See {IERC1155-balanceOf}.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function balanceOf(address account, uint256 id) public view virtual override returns (uint256) {
        require(account != address(0), "ERC1155: balance query for the zero address");
        return _balances[id][account];
    }

    /**
     * @dev See {IERC1155-balanceOfBatch}.
     *
     * Requirements:
     *
     * - `accounts` and `ids` must have the same length.
     */
    function balanceOfBatch(address[] memory accounts, uint256[] memory ids)
        public
        view
        virtual
        override
        returns (uint256[] memory)
    {
        require(accounts.length == ids.length, "ERC1155: accounts and ids length mismatch");

        uint256[] memory batchBalances = new uint256[](accounts.length);

        for (uint256 i = 0; i < accounts.length; ++i) {
            batchBalances[i] = balanceOf(accounts[i], ids[i]);
        }

        return batchBalances;
    }

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

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

    /**
     * @dev See {IERC1155-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) public virtual override {
        require(
            from == _msgSender() || isApprovedForAll(from, _msgSender()),
            "ERC1155: caller is not owner nor approved"
        );
        _safeTransferFrom(from, to, id, amount, data);
    }

    /**
     * @dev See {IERC1155-safeBatchTransferFrom}.
     */
    function safeBatchTransferFrom(
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) public virtual override {
        require(
            from == _msgSender() || isApprovedForAll(from, _msgSender()),
            "ERC1155: transfer caller is not owner nor approved"
        );
        _safeBatchTransferFrom(from, to, ids, amounts, data);
    }

    /**
     * @dev Transfers `amount` tokens of token type `id` from `from` to `to`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `from` must have a balance of tokens of type `id` of at least `amount`.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function _safeTransferFrom(
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) internal virtual {
        require(to != address(0), "ERC1155: transfer to the zero address");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, from, to, _asSingletonArray(id), _asSingletonArray(amount), data);

        uint256 fromBalance = _balances[id][from];
        require(fromBalance >= amount, "ERC1155: insufficient balance for transfer");
        unchecked {
            _balances[id][from] = fromBalance - amount;
        }
        _balances[id][to] += amount;

        emit TransferSingle(operator, from, to, id, amount);

        _doSafeTransferAcceptanceCheck(operator, from, to, id, amount, data);
    }

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_safeTransferFrom}.
     *
     * Emits a {TransferBatch} event.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
     * acceptance magic value.
     */
    function _safeBatchTransferFrom(
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");
        require(to != address(0), "ERC1155: transfer to the zero address");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, from, to, ids, amounts, data);

        for (uint256 i = 0; i < ids.length; ++i) {
            uint256 id = ids[i];
            uint256 amount = amounts[i];

            uint256 fromBalance = _balances[id][from];
            require(fromBalance >= amount, "ERC1155: insufficient balance for transfer");
            unchecked {
                _balances[id][from] = fromBalance - amount;
            }
            _balances[id][to] += amount;
        }

        emit TransferBatch(operator, from, to, ids, amounts);

        _doSafeBatchTransferAcceptanceCheck(operator, from, to, ids, amounts, data);
    }

    /**
     * @dev Sets a new URI for all token types, by relying on the token type ID
     * substitution mechanism
     * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP].
     *
     * By this mechanism, any occurrence of the `\{id\}` substring in either the
     * URI or any of the amounts in the JSON file at said URI will be replaced by
     * clients with the token type ID.
     *
     * For example, the `https://token-cdn-domain/\{id\}.json` URI would be
     * interpreted by clients as
     * `https://token-cdn-domain/000000000000000000000000000000000000000000000000000000000004cce0.json`
     * for token type ID 0x4cce0.
     *
     * See {uri}.
     *
     * Because these URIs cannot be meaningfully represented by the {URI} event,
     * this function emits no events.
     */
    function _setURI(string memory newuri) internal virtual {
        _uri = newuri;
    }

    /**
     * @dev Creates `amount` tokens of token type `id`, and assigns them to `to`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function _mint(
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) internal virtual {
        require(to != address(0), "ERC1155: mint to the zero address");
        require(id <= _supplyCap, "FRM supply cannot exceed 10,000");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, address(0), to, _asSingletonArray(id), _asSingletonArray(amount), data);

        _balances[id][to] += amount;
        emit TransferSingle(operator, address(0), to, id, amount);

        _doSafeTransferAcceptanceCheck(operator, address(0), to, id, amount, data);
    }

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_mint}.
     *
     * Requirements:
     *
     * - `ids` and `amounts` must have the same length.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
     * acceptance magic value.
     */
    function _mintBatch(
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {
        require(to != address(0), "ERC1155: mint to the zero address");
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");

        uint256 maxId;
        maxId = 0;
        for (uint256 i = 0; i < ids.length; i++) {
            if(maxId < ids[i]) {
                maxId = ids[i];
            }
        }
        require(maxId <= _supplyCap, "FRM supply cannot exceed 10,000");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, address(0), to, ids, amounts, data);

        for (uint256 i = 0; i < ids.length; i++) {
            _balances[ids[i]][to] += amounts[i];
        }

        emit TransferBatch(operator, address(0), to, ids, amounts);

        _doSafeBatchTransferAcceptanceCheck(operator, address(0), to, ids, amounts, data);
    }

    /**
     * @dev Destroys `amount` tokens of token type `id` from `from`
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `from` must have at least `amount` tokens of token type `id`.
     */
    function _burn(
        address from,
        uint256 id,
        uint256 amount
    ) internal virtual {
        require(from != address(0), "ERC1155: burn from the zero address");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, from, address(0), _asSingletonArray(id), _asSingletonArray(amount), "");

        uint256 fromBalance = _balances[id][from];
        require(fromBalance >= amount, "ERC1155: burn amount exceeds balance");
        unchecked {
            _balances[id][from] = fromBalance - amount;
        }

        emit TransferSingle(operator, from, address(0), id, amount);
    }

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_burn}.
     *
     * Requirements:
     *
     * - `ids` and `amounts` must have the same length.
     */
    function _burnBatch(
        address from,
        uint256[] memory ids,
        uint256[] memory amounts
    ) internal virtual {
        require(from != address(0), "ERC1155: burn from the zero address");
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, from, address(0), ids, amounts, "");

        for (uint256 i = 0; i < ids.length; i++) {
            uint256 id = ids[i];
            uint256 amount = amounts[i];

            uint256 fromBalance = _balances[id][from];
            require(fromBalance >= amount, "ERC1155: burn amount exceeds balance");
            unchecked {
                _balances[id][from] = fromBalance - amount;
            }
        }

        emit TransferBatch(operator, from, address(0), ids, amounts);
    }

    /**
     * @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, "ERC1155: setting approval status for self");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning, as well as batched variants.
     *
     * The same hook is called on both single and batched variants. For single
     * transfers, the length of the `id` and `amount` arrays will be 1.
     *
     * Calling conditions (for each `id` and `amount` pair):
     *
     * - When `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * of token type `id` will be  transferred to `to`.
     * - When `from` is zero, `amount` tokens of token type `id` will be minted
     * for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens of token type `id`
     * will be burned.
     * - `from` and `to` are never both zero.
     * - `ids` and `amounts` have the same, non-zero length.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {}

    function _doSafeTransferAcceptanceCheck(
        address operator,
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) private {
        if (to.isContract()) {
            try IERC1155Receiver(to).onERC1155Received(operator, from, id, amount, data) returns (bytes4 response) {
                if (response != IERC1155Receiver.onERC1155Received.selector) {
                    revert("ERC1155: ERC1155Receiver rejected tokens");
                }
            } catch Error(string memory reason) {
                revert(reason);
            } catch {
                revert("ERC1155: transfer to non ERC1155Receiver implementer");
            }
        }
    }

    function _doSafeBatchTransferAcceptanceCheck(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) private {
        if (to.isContract()) {
            try IERC1155Receiver(to).onERC1155BatchReceived(operator, from, ids, amounts, data) returns (
                bytes4 response
            ) {
                if (response != IERC1155Receiver.onERC1155BatchReceived.selector) {
                    revert("ERC1155: ERC1155Receiver rejected tokens");
                }
            } catch Error(string memory reason) {
                revert(reason);
            } catch {
                revert("ERC1155: transfer to non ERC1155Receiver implementer");
            }
        }
    }

    function _asSingletonArray(uint256 element) private pure returns (uint256[] memory) {
        uint256[] memory array = new uint256[](1);
        array[0] = element;

        return array;
    }
}

// File: Vizmesh.sol


pragma solidity ^0.8.4;




contract Vizmesh is ERC1155, Ownable {
    constructor() ERC1155("") {}

    function setURI(string memory newuri) public onlyOwner {
        _setURI(newuri);
    }

    function mint(address account, uint256 id, uint256 amount, bytes memory data)
        public
        onlyOwner
    {
        _mint(account, id, amount, data);
    }

    function mintBatch(address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data)
        public
        onlyOwner
    {
        _mintBatch(to, ids, amounts, data);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"indexed":false,"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"TransferBatch","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"TransferSingle","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"value","type":"string"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"URI","type":"event"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"balanceOfBatch","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"mintBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeBatchTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","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":"string","name":"newuri","type":"string"}],"name":"setURI","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":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"}]

60806040523480156200001157600080fd5b506040518060200160405280600081525062000033816200006360201b60201c565b612710600381905550506200005d620000516200007f60201b60201c565b6200008760201b60201c565b62000262565b80600290805190602001906200007b9291906200014d565b5050565b600033905090565b6000600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200015b90620001fd565b90600052602060002090601f0160209004810192826200017f5760008555620001cb565b82601f106200019a57805160ff1916838001178555620001cb565b82800160010185558215620001cb579182015b82811115620001ca578251825591602001919060010190620001ad565b5b509050620001da9190620001de565b5090565b5b80821115620001f9576000816000905550600101620001df565b5090565b600060028204905060018216806200021657607f821691505b602082108114156200022d576200022c62000233565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6137a680620002726000396000f3fe608060405234801561001057600080fd5b50600436106100e95760003560e01c8063715018a61161008c578063a22cb46511610066578063a22cb46514610246578063e985e9c514610262578063f242432a14610292578063f2fde38b146102ae576100e9565b8063715018a614610202578063731133e91461020c5780638da5cb5b14610228576100e9565b80630e89341c116100c85780630e89341c1461016a5780631f7fdffa1461019a5780632eb2c2d6146101b65780634e1273f4146101d2576100e9565b8062fdd58e146100ee57806301ffc9a71461011e57806302fe53051461014e575b600080fd5b610108600480360381019061010391906123bb565b6102ca565b6040516101159190612d09565b60405180910390f35b610138600480360381019061013391906124f6565b610393565b6040516101459190612b0c565b60405180910390f35b61016860048036038101906101639190612550565b610475565b005b610184600480360381019061017f9190612599565b6104fd565b6040516101919190612b27565b60405180910390f35b6101b460048036038101906101af91906122c0565b610531565b005b6101d060048036038101906101cb919061215a565b6105bf565b005b6101ec60048036038101906101e7919061247e565b610660565b6040516101f99190612ab3565b60405180910390f35b61020a610779565b005b610226600480360381019061022191906123fb565b610801565b005b61023061088f565b60405161023d91906129d6565b60405180910390f35b610260600480360381019061025b919061237b565b6108b9565b005b61027c6004803603810190610277919061211a565b6108cf565b6040516102899190612b0c565b60405180910390f35b6102ac60048036038101906102a79190612229565b610963565b005b6102c860048036038101906102c391906120ed565b610a04565b005b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561033b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161033290612ba9565b60405180910390fd5b60008083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061045e57507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061046e575061046d82610afc565b5b9050919050565b61047d610b66565b73ffffffffffffffffffffffffffffffffffffffff1661049b61088f565b73ffffffffffffffffffffffffffffffffffffffff16146104f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104e890612c69565b60405180910390fd5b6104fa81610b6e565b50565b6060600261050a83610b88565b60405160200161051b9291906129a7565b6040516020818303038152906040529050919050565b610539610b66565b73ffffffffffffffffffffffffffffffffffffffff1661055761088f565b73ffffffffffffffffffffffffffffffffffffffff16146105ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105a490612c69565b60405180910390fd5b6105b984848484610ce9565b50505050565b6105c7610b66565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16148061060d575061060c85610607610b66565b6108cf565b5b61064c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161064390612c29565b60405180910390fd5b6106598585858585610fae565b5050505050565b606081518351146106a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161069d90612ca9565b60405180910390fd5b6000835167ffffffffffffffff8111156106c3576106c26131c7565b5b6040519080825280602002602001820160405280156106f15781602001602082028036833780820191505090505b50905060005b845181101561076e5761073e85828151811061071657610715613198565b5b602002602001015185838151811061073157610730613198565b5b60200260200101516102ca565b82828151811061075157610750613198565b5b6020026020010181815250508061076790613091565b90506106f7565b508091505092915050565b610781610b66565b73ffffffffffffffffffffffffffffffffffffffff1661079f61088f565b73ffffffffffffffffffffffffffffffffffffffff16146107f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107ec90612c69565b60405180910390fd5b6107ff60006112c2565b565b610809610b66565b73ffffffffffffffffffffffffffffffffffffffff1661082761088f565b73ffffffffffffffffffffffffffffffffffffffff161461087d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161087490612c69565b60405180910390fd5b61088984848484611388565b50505050565b6000600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6108cb6108c4610b66565b8383611563565b5050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61096b610b66565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614806109b157506109b0856109ab610b66565b6108cf565b5b6109f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109e790612be9565b60405180910390fd5b6109fd85858585856116d0565b5050505050565b610a0c610b66565b73ffffffffffffffffffffffffffffffffffffffff16610a2a61088f565b73ffffffffffffffffffffffffffffffffffffffff1614610a80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7790612c69565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610af0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae790612bc9565b60405180910390fd5b610af9816112c2565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b8060029080519060200190610b84929190611dc5565b5050565b60606000821415610bd0576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050610ce4565b600082905060005b60008214610c02578080610beb90613091565b915050600a82610bfb9190612f13565b9150610bd8565b60008167ffffffffffffffff811115610c1e57610c1d6131c7565b5b6040519080825280601f01601f191660200182016040528015610c505781602001600182028036833780820191505090505b5090505b60008514610cdd57600182610c699190612f44565b9150600a85610c7891906130da565b6030610c849190612ebd565b60f81b818381518110610c9a57610c99613198565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85610cd69190612f13565b9450610c54565b8093505050505b919050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415610d59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5090612ce9565b60405180910390fd5b8151835114610d9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9490612cc9565b60405180910390fd5b6000805b8451811015610dfd57848181518110610dbd57610dbc613198565b5b6020026020010151821015610dea57848181518110610ddf57610dde613198565b5b602002602001015191505b8080610df590613091565b915050610da1565b50600354811115610e43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3a90612b89565b60405180910390fd5b6000610e4d610b66565b9050610e5e81600088888888611952565b60005b8551811015610f1757848181518110610e7d57610e7c613198565b5b6020026020010151600080888481518110610e9b57610e9a613198565b5b6020026020010151815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610efd9190612ebd565b925050819055508080610f0f90613091565b915050610e61565b508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8888604051610f8f929190612ad5565b60405180910390a4610fa68160008888888861195a565b505050505050565b8151835114610ff2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe990612cc9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611062576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105990612c09565b60405180910390fd5b600061106c610b66565b905061107c818787878787611952565b60005b845181101561122d57600085828151811061109d5761109c613198565b5b6020026020010151905060008583815181106110bc576110bb613198565b5b60200260200101519050600080600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561115d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115490612c49565b60405180910390fd5b81810360008085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160008085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546112129190612ebd565b925050819055505050508061122690613091565b905061107f565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb87876040516112a4929190612ad5565b60405180910390a46112ba81878787878761195a565b505050505050565b6000600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156113f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ef90612ce9565b60405180910390fd5b60035483111561143d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143490612b89565b60405180910390fd5b6000611447610b66565b90506114688160008761145988611b41565b61146288611b41565b87611952565b8260008086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546114c79190612ebd565b925050819055508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628787604051611545929190612d24565b60405180910390a461155c81600087878787611bbb565b5050505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156115d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c990612c89565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516116c39190612b0c565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611740576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173790612c09565b60405180910390fd5b600061174a610b66565b905061176a81878761175b88611b41565b61176488611b41565b87611952565b600080600086815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905083811015611801576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f890612c49565b60405180910390fd5b83810360008087815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508360008087815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546118b69190612ebd565b925050819055508573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628888604051611933929190612d24565b60405180910390a4611949828888888888611bbb565b50505050505050565b505050505050565b6119798473ffffffffffffffffffffffffffffffffffffffff16611da2565b15611b39578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b81526004016119bf9594939291906129f1565b602060405180830381600087803b1580156119d957600080fd5b505af1925050508015611a0a57506040513d601f19601f82011682018060405250810190611a079190612523565b60015b611ab057611a166131f6565b806308c379a01415611a735750611a2b61367e565b80611a365750611a75565b806040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6a9190612b27565b60405180910390fd5b505b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aa790612b49565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614611b37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b2e90612b69565b60405180910390fd5b505b505050505050565b60606000600167ffffffffffffffff811115611b6057611b5f6131c7565b5b604051908082528060200260200182016040528015611b8e5781602001602082028036833780820191505090505b5090508281600081518110611ba657611ba5613198565b5b60200260200101818152505080915050919050565b611bda8473ffffffffffffffffffffffffffffffffffffffff16611da2565b15611d9a578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b8152600401611c20959493929190612a59565b602060405180830381600087803b158015611c3a57600080fd5b505af1925050508015611c6b57506040513d601f19601f82011682018060405250810190611c689190612523565b60015b611d1157611c776131f6565b806308c379a01415611cd45750611c8c61367e565b80611c975750611cd6565b806040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ccb9190612b27565b60405180910390fd5b505b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d0890612b49565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614611d98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8f90612b69565b60405180910390fd5b505b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b828054611dd19061302e565b90600052602060002090601f016020900481019282611df35760008555611e3a565b82601f10611e0c57805160ff1916838001178555611e3a565b82800160010185558215611e3a579182015b82811115611e39578251825591602001919060010190611e1e565b5b509050611e479190611e4b565b5090565b5b80821115611e64576000816000905550600101611e4c565b5090565b6000611e7b611e7684612d72565b612d4d565b90508083825260208201905082856020860282011115611e9e57611e9d61321d565b5b60005b85811015611ece5781611eb48882611fcc565b845260208401935060208301925050600181019050611ea1565b5050509392505050565b6000611eeb611ee684612d9e565b612d4d565b90508083825260208201905082856020860282011115611f0e57611f0d61321d565b5b60005b85811015611f3e5781611f2488826120d8565b845260208401935060208301925050600181019050611f11565b5050509392505050565b6000611f5b611f5684612dca565b612d4d565b905082815260208101848484011115611f7757611f76613222565b5b611f82848285612fec565b509392505050565b6000611f9d611f9884612dfb565b612d4d565b905082815260208101848484011115611fb957611fb8613222565b5b611fc4848285612fec565b509392505050565b600081359050611fdb81613714565b92915050565b600082601f830112611ff657611ff5613218565b5b8135612006848260208601611e68565b91505092915050565b600082601f83011261202457612023613218565b5b8135612034848260208601611ed8565b91505092915050565b60008135905061204c8161372b565b92915050565b60008135905061206181613742565b92915050565b60008151905061207681613742565b92915050565b600082601f83011261209157612090613218565b5b81356120a1848260208601611f48565b91505092915050565b600082601f8301126120bf576120be613218565b5b81356120cf848260208601611f8a565b91505092915050565b6000813590506120e781613759565b92915050565b6000602082840312156121035761210261322c565b5b600061211184828501611fcc565b91505092915050565b600080604083850312156121315761213061322c565b5b600061213f85828601611fcc565b925050602061215085828601611fcc565b9150509250929050565b600080600080600060a086880312156121765761217561322c565b5b600061218488828901611fcc565b955050602061219588828901611fcc565b945050604086013567ffffffffffffffff8111156121b6576121b5613227565b5b6121c28882890161200f565b935050606086013567ffffffffffffffff8111156121e3576121e2613227565b5b6121ef8882890161200f565b925050608086013567ffffffffffffffff8111156122105761220f613227565b5b61221c8882890161207c565b9150509295509295909350565b600080600080600060a086880312156122455761224461322c565b5b600061225388828901611fcc565b955050602061226488828901611fcc565b9450506040612275888289016120d8565b9350506060612286888289016120d8565b925050608086013567ffffffffffffffff8111156122a7576122a6613227565b5b6122b38882890161207c565b9150509295509295909350565b600080600080608085870312156122da576122d961322c565b5b60006122e887828801611fcc565b945050602085013567ffffffffffffffff81111561230957612308613227565b5b6123158782880161200f565b935050604085013567ffffffffffffffff81111561233657612335613227565b5b6123428782880161200f565b925050606085013567ffffffffffffffff81111561236357612362613227565b5b61236f8782880161207c565b91505092959194509250565b600080604083850312156123925761239161322c565b5b60006123a085828601611fcc565b92505060206123b18582860161203d565b9150509250929050565b600080604083850312156123d2576123d161322c565b5b60006123e085828601611fcc565b92505060206123f1858286016120d8565b9150509250929050565b600080600080608085870312156124155761241461322c565b5b600061242387828801611fcc565b9450506020612434878288016120d8565b9350506040612445878288016120d8565b925050606085013567ffffffffffffffff81111561246657612465613227565b5b6124728782880161207c565b91505092959194509250565b600080604083850312156124955761249461322c565b5b600083013567ffffffffffffffff8111156124b3576124b2613227565b5b6124bf85828601611fe1565b925050602083013567ffffffffffffffff8111156124e0576124df613227565b5b6124ec8582860161200f565b9150509250929050565b60006020828403121561250c5761250b61322c565b5b600061251a84828501612052565b91505092915050565b6000602082840312156125395761253861322c565b5b600061254784828501612067565b91505092915050565b6000602082840312156125665761256561322c565b5b600082013567ffffffffffffffff81111561258457612583613227565b5b612590848285016120aa565b91505092915050565b6000602082840312156125af576125ae61322c565b5b60006125bd848285016120d8565b91505092915050565b60006125d28383612989565b60208301905092915050565b6125e781612f78565b82525050565b60006125f882612e51565b6126028185612e7f565b935061260d83612e2c565b8060005b8381101561263e57815161262588826125c6565b975061263083612e72565b925050600181019050612611565b5085935050505092915050565b61265481612f8a565b82525050565b600061266582612e5c565b61266f8185612e90565b935061267f818560208601612ffb565b61268881613231565b840191505092915050565b600061269e82612e67565b6126a88185612ea1565b93506126b8818560208601612ffb565b6126c181613231565b840191505092915050565b60006126d782612e67565b6126e18185612eb2565b93506126f1818560208601612ffb565b80840191505092915050565b6000815461270a8161302e565b6127148186612eb2565b9450600182166000811461272f576001811461274057612773565b60ff19831686528186019350612773565b61274985612e3c565b60005b8381101561276b5781548189015260018201915060208101905061274c565b838801955050505b50505092915050565b6000612789603483612ea1565b91506127948261324f565b604082019050919050565b60006127ac602883612ea1565b91506127b78261329e565b604082019050919050565b60006127cf601f83612ea1565b91506127da826132ed565b602082019050919050565b60006127f2602b83612ea1565b91506127fd82613316565b604082019050919050565b6000612815602683612ea1565b915061282082613365565b604082019050919050565b6000612838602983612ea1565b9150612843826133b4565b604082019050919050565b600061285b602583612ea1565b915061286682613403565b604082019050919050565b600061287e603283612ea1565b915061288982613452565b604082019050919050565b60006128a1602a83612ea1565b91506128ac826134a1565b604082019050919050565b60006128c4600583612eb2565b91506128cf826134f0565b600582019050919050565b60006128e7602083612ea1565b91506128f282613519565b602082019050919050565b600061290a602983612ea1565b915061291582613542565b604082019050919050565b600061292d602983612ea1565b915061293882613591565b604082019050919050565b6000612950602883612ea1565b915061295b826135e0565b604082019050919050565b6000612973602183612ea1565b915061297e8261362f565b604082019050919050565b61299281612fe2565b82525050565b6129a181612fe2565b82525050565b60006129b382856126fd565b91506129bf82846126cc565b91506129ca826128b7565b91508190509392505050565b60006020820190506129eb60008301846125de565b92915050565b600060a082019050612a0660008301886125de565b612a1360208301876125de565b8181036040830152612a2581866125ed565b90508181036060830152612a3981856125ed565b90508181036080830152612a4d818461265a565b90509695505050505050565b600060a082019050612a6e60008301886125de565b612a7b60208301876125de565b612a886040830186612998565b612a956060830185612998565b8181036080830152612aa7818461265a565b90509695505050505050565b60006020820190508181036000830152612acd81846125ed565b905092915050565b60006040820190508181036000830152612aef81856125ed565b90508181036020830152612b0381846125ed565b90509392505050565b6000602082019050612b21600083018461264b565b92915050565b60006020820190508181036000830152612b418184612693565b905092915050565b60006020820190508181036000830152612b628161277c565b9050919050565b60006020820190508181036000830152612b828161279f565b9050919050565b60006020820190508181036000830152612ba2816127c2565b9050919050565b60006020820190508181036000830152612bc2816127e5565b9050919050565b60006020820190508181036000830152612be281612808565b9050919050565b60006020820190508181036000830152612c028161282b565b9050919050565b60006020820190508181036000830152612c228161284e565b9050919050565b60006020820190508181036000830152612c4281612871565b9050919050565b60006020820190508181036000830152612c6281612894565b9050919050565b60006020820190508181036000830152612c82816128da565b9050919050565b60006020820190508181036000830152612ca2816128fd565b9050919050565b60006020820190508181036000830152612cc281612920565b9050919050565b60006020820190508181036000830152612ce281612943565b9050919050565b60006020820190508181036000830152612d0281612966565b9050919050565b6000602082019050612d1e6000830184612998565b92915050565b6000604082019050612d396000830185612998565b612d466020830184612998565b9392505050565b6000612d57612d68565b9050612d638282613060565b919050565b6000604051905090565b600067ffffffffffffffff821115612d8d57612d8c6131c7565b5b602082029050602081019050919050565b600067ffffffffffffffff821115612db957612db86131c7565b5b602082029050602081019050919050565b600067ffffffffffffffff821115612de557612de46131c7565b5b612dee82613231565b9050602081019050919050565b600067ffffffffffffffff821115612e1657612e156131c7565b5b612e1f82613231565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000612ec882612fe2565b9150612ed383612fe2565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612f0857612f0761310b565b5b828201905092915050565b6000612f1e82612fe2565b9150612f2983612fe2565b925082612f3957612f3861313a565b5b828204905092915050565b6000612f4f82612fe2565b9150612f5a83612fe2565b925082821015612f6d57612f6c61310b565b5b828203905092915050565b6000612f8382612fc2565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613019578082015181840152602081019050612ffe565b83811115613028576000848401525b50505050565b6000600282049050600182168061304657607f821691505b6020821081141561305a57613059613169565b5b50919050565b61306982613231565b810181811067ffffffffffffffff82111715613088576130876131c7565b5b80604052505050565b600061309c82612fe2565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156130cf576130ce61310b565b5b600182019050919050565b60006130e582612fe2565b91506130f083612fe2565b925082613100576130ff61313a565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600060033d11156132155760046000803e613212600051613242565b90505b90565b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160e01c9050919050565b7f455243313135353a207472616e7366657220746f206e6f6e204552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b7f46524d20737570706c792063616e6e6f74206578636565642031302c30303000600082015250565b7f455243313135353a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260008201527f20617070726f7665640000000000000000000000000000000000000000000000602082015250565b7f455243313135353a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f455243313135353a20696e73756666696369656e742062616c616e636520666f60008201527f72207472616e7366657200000000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f455243313135353a2073657474696e6720617070726f76616c2073746174757360008201527f20666f722073656c660000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206163636f756e747320616e6420696473206c656e67746860008201527f206d69736d617463680000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600060443d101561368e57613711565b613696612d68565b60043d036004823e80513d602482011167ffffffffffffffff821117156136be575050613711565b808201805167ffffffffffffffff8111156136dc5750505050613711565b80602083010160043d0385018111156136f9575050505050613711565b61370882602001850186613060565b82955050505050505b90565b61371d81612f78565b811461372857600080fd5b50565b61373481612f8a565b811461373f57600080fd5b50565b61374b81612f96565b811461375657600080fd5b50565b61376281612fe2565b811461376d57600080fd5b5056fea2646970667358221220ce6a0923bb5a338aa38d5598349062ebfef23e1b40095e7b65baa9673d9f728064736f6c63430008070033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100e95760003560e01c8063715018a61161008c578063a22cb46511610066578063a22cb46514610246578063e985e9c514610262578063f242432a14610292578063f2fde38b146102ae576100e9565b8063715018a614610202578063731133e91461020c5780638da5cb5b14610228576100e9565b80630e89341c116100c85780630e89341c1461016a5780631f7fdffa1461019a5780632eb2c2d6146101b65780634e1273f4146101d2576100e9565b8062fdd58e146100ee57806301ffc9a71461011e57806302fe53051461014e575b600080fd5b610108600480360381019061010391906123bb565b6102ca565b6040516101159190612d09565b60405180910390f35b610138600480360381019061013391906124f6565b610393565b6040516101459190612b0c565b60405180910390f35b61016860048036038101906101639190612550565b610475565b005b610184600480360381019061017f9190612599565b6104fd565b6040516101919190612b27565b60405180910390f35b6101b460048036038101906101af91906122c0565b610531565b005b6101d060048036038101906101cb919061215a565b6105bf565b005b6101ec60048036038101906101e7919061247e565b610660565b6040516101f99190612ab3565b60405180910390f35b61020a610779565b005b610226600480360381019061022191906123fb565b610801565b005b61023061088f565b60405161023d91906129d6565b60405180910390f35b610260600480360381019061025b919061237b565b6108b9565b005b61027c6004803603810190610277919061211a565b6108cf565b6040516102899190612b0c565b60405180910390f35b6102ac60048036038101906102a79190612229565b610963565b005b6102c860048036038101906102c391906120ed565b610a04565b005b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561033b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161033290612ba9565b60405180910390fd5b60008083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061045e57507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061046e575061046d82610afc565b5b9050919050565b61047d610b66565b73ffffffffffffffffffffffffffffffffffffffff1661049b61088f565b73ffffffffffffffffffffffffffffffffffffffff16146104f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104e890612c69565b60405180910390fd5b6104fa81610b6e565b50565b6060600261050a83610b88565b60405160200161051b9291906129a7565b6040516020818303038152906040529050919050565b610539610b66565b73ffffffffffffffffffffffffffffffffffffffff1661055761088f565b73ffffffffffffffffffffffffffffffffffffffff16146105ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105a490612c69565b60405180910390fd5b6105b984848484610ce9565b50505050565b6105c7610b66565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16148061060d575061060c85610607610b66565b6108cf565b5b61064c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161064390612c29565b60405180910390fd5b6106598585858585610fae565b5050505050565b606081518351146106a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161069d90612ca9565b60405180910390fd5b6000835167ffffffffffffffff8111156106c3576106c26131c7565b5b6040519080825280602002602001820160405280156106f15781602001602082028036833780820191505090505b50905060005b845181101561076e5761073e85828151811061071657610715613198565b5b602002602001015185838151811061073157610730613198565b5b60200260200101516102ca565b82828151811061075157610750613198565b5b6020026020010181815250508061076790613091565b90506106f7565b508091505092915050565b610781610b66565b73ffffffffffffffffffffffffffffffffffffffff1661079f61088f565b73ffffffffffffffffffffffffffffffffffffffff16146107f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107ec90612c69565b60405180910390fd5b6107ff60006112c2565b565b610809610b66565b73ffffffffffffffffffffffffffffffffffffffff1661082761088f565b73ffffffffffffffffffffffffffffffffffffffff161461087d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161087490612c69565b60405180910390fd5b61088984848484611388565b50505050565b6000600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6108cb6108c4610b66565b8383611563565b5050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61096b610b66565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614806109b157506109b0856109ab610b66565b6108cf565b5b6109f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109e790612be9565b60405180910390fd5b6109fd85858585856116d0565b5050505050565b610a0c610b66565b73ffffffffffffffffffffffffffffffffffffffff16610a2a61088f565b73ffffffffffffffffffffffffffffffffffffffff1614610a80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7790612c69565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610af0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae790612bc9565b60405180910390fd5b610af9816112c2565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b8060029080519060200190610b84929190611dc5565b5050565b60606000821415610bd0576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050610ce4565b600082905060005b60008214610c02578080610beb90613091565b915050600a82610bfb9190612f13565b9150610bd8565b60008167ffffffffffffffff811115610c1e57610c1d6131c7565b5b6040519080825280601f01601f191660200182016040528015610c505781602001600182028036833780820191505090505b5090505b60008514610cdd57600182610c699190612f44565b9150600a85610c7891906130da565b6030610c849190612ebd565b60f81b818381518110610c9a57610c99613198565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85610cd69190612f13565b9450610c54565b8093505050505b919050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415610d59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5090612ce9565b60405180910390fd5b8151835114610d9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9490612cc9565b60405180910390fd5b6000805b8451811015610dfd57848181518110610dbd57610dbc613198565b5b6020026020010151821015610dea57848181518110610ddf57610dde613198565b5b602002602001015191505b8080610df590613091565b915050610da1565b50600354811115610e43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3a90612b89565b60405180910390fd5b6000610e4d610b66565b9050610e5e81600088888888611952565b60005b8551811015610f1757848181518110610e7d57610e7c613198565b5b6020026020010151600080888481518110610e9b57610e9a613198565b5b6020026020010151815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610efd9190612ebd565b925050819055508080610f0f90613091565b915050610e61565b508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8888604051610f8f929190612ad5565b60405180910390a4610fa68160008888888861195a565b505050505050565b8151835114610ff2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe990612cc9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611062576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105990612c09565b60405180910390fd5b600061106c610b66565b905061107c818787878787611952565b60005b845181101561122d57600085828151811061109d5761109c613198565b5b6020026020010151905060008583815181106110bc576110bb613198565b5b60200260200101519050600080600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561115d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115490612c49565b60405180910390fd5b81810360008085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160008085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546112129190612ebd565b925050819055505050508061122690613091565b905061107f565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb87876040516112a4929190612ad5565b60405180910390a46112ba81878787878761195a565b505050505050565b6000600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156113f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ef90612ce9565b60405180910390fd5b60035483111561143d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143490612b89565b60405180910390fd5b6000611447610b66565b90506114688160008761145988611b41565b61146288611b41565b87611952565b8260008086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546114c79190612ebd565b925050819055508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628787604051611545929190612d24565b60405180910390a461155c81600087878787611bbb565b5050505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156115d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c990612c89565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516116c39190612b0c565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611740576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173790612c09565b60405180910390fd5b600061174a610b66565b905061176a81878761175b88611b41565b61176488611b41565b87611952565b600080600086815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905083811015611801576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f890612c49565b60405180910390fd5b83810360008087815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508360008087815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546118b69190612ebd565b925050819055508573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628888604051611933929190612d24565b60405180910390a4611949828888888888611bbb565b50505050505050565b505050505050565b6119798473ffffffffffffffffffffffffffffffffffffffff16611da2565b15611b39578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b81526004016119bf9594939291906129f1565b602060405180830381600087803b1580156119d957600080fd5b505af1925050508015611a0a57506040513d601f19601f82011682018060405250810190611a079190612523565b60015b611ab057611a166131f6565b806308c379a01415611a735750611a2b61367e565b80611a365750611a75565b806040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6a9190612b27565b60405180910390fd5b505b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aa790612b49565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614611b37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b2e90612b69565b60405180910390fd5b505b505050505050565b60606000600167ffffffffffffffff811115611b6057611b5f6131c7565b5b604051908082528060200260200182016040528015611b8e5781602001602082028036833780820191505090505b5090508281600081518110611ba657611ba5613198565b5b60200260200101818152505080915050919050565b611bda8473ffffffffffffffffffffffffffffffffffffffff16611da2565b15611d9a578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b8152600401611c20959493929190612a59565b602060405180830381600087803b158015611c3a57600080fd5b505af1925050508015611c6b57506040513d601f19601f82011682018060405250810190611c689190612523565b60015b611d1157611c776131f6565b806308c379a01415611cd45750611c8c61367e565b80611c975750611cd6565b806040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ccb9190612b27565b60405180910390fd5b505b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d0890612b49565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614611d98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8f90612b69565b60405180910390fd5b505b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b828054611dd19061302e565b90600052602060002090601f016020900481019282611df35760008555611e3a565b82601f10611e0c57805160ff1916838001178555611e3a565b82800160010185558215611e3a579182015b82811115611e39578251825591602001919060010190611e1e565b5b509050611e479190611e4b565b5090565b5b80821115611e64576000816000905550600101611e4c565b5090565b6000611e7b611e7684612d72565b612d4d565b90508083825260208201905082856020860282011115611e9e57611e9d61321d565b5b60005b85811015611ece5781611eb48882611fcc565b845260208401935060208301925050600181019050611ea1565b5050509392505050565b6000611eeb611ee684612d9e565b612d4d565b90508083825260208201905082856020860282011115611f0e57611f0d61321d565b5b60005b85811015611f3e5781611f2488826120d8565b845260208401935060208301925050600181019050611f11565b5050509392505050565b6000611f5b611f5684612dca565b612d4d565b905082815260208101848484011115611f7757611f76613222565b5b611f82848285612fec565b509392505050565b6000611f9d611f9884612dfb565b612d4d565b905082815260208101848484011115611fb957611fb8613222565b5b611fc4848285612fec565b509392505050565b600081359050611fdb81613714565b92915050565b600082601f830112611ff657611ff5613218565b5b8135612006848260208601611e68565b91505092915050565b600082601f83011261202457612023613218565b5b8135612034848260208601611ed8565b91505092915050565b60008135905061204c8161372b565b92915050565b60008135905061206181613742565b92915050565b60008151905061207681613742565b92915050565b600082601f83011261209157612090613218565b5b81356120a1848260208601611f48565b91505092915050565b600082601f8301126120bf576120be613218565b5b81356120cf848260208601611f8a565b91505092915050565b6000813590506120e781613759565b92915050565b6000602082840312156121035761210261322c565b5b600061211184828501611fcc565b91505092915050565b600080604083850312156121315761213061322c565b5b600061213f85828601611fcc565b925050602061215085828601611fcc565b9150509250929050565b600080600080600060a086880312156121765761217561322c565b5b600061218488828901611fcc565b955050602061219588828901611fcc565b945050604086013567ffffffffffffffff8111156121b6576121b5613227565b5b6121c28882890161200f565b935050606086013567ffffffffffffffff8111156121e3576121e2613227565b5b6121ef8882890161200f565b925050608086013567ffffffffffffffff8111156122105761220f613227565b5b61221c8882890161207c565b9150509295509295909350565b600080600080600060a086880312156122455761224461322c565b5b600061225388828901611fcc565b955050602061226488828901611fcc565b9450506040612275888289016120d8565b9350506060612286888289016120d8565b925050608086013567ffffffffffffffff8111156122a7576122a6613227565b5b6122b38882890161207c565b9150509295509295909350565b600080600080608085870312156122da576122d961322c565b5b60006122e887828801611fcc565b945050602085013567ffffffffffffffff81111561230957612308613227565b5b6123158782880161200f565b935050604085013567ffffffffffffffff81111561233657612335613227565b5b6123428782880161200f565b925050606085013567ffffffffffffffff81111561236357612362613227565b5b61236f8782880161207c565b91505092959194509250565b600080604083850312156123925761239161322c565b5b60006123a085828601611fcc565b92505060206123b18582860161203d565b9150509250929050565b600080604083850312156123d2576123d161322c565b5b60006123e085828601611fcc565b92505060206123f1858286016120d8565b9150509250929050565b600080600080608085870312156124155761241461322c565b5b600061242387828801611fcc565b9450506020612434878288016120d8565b9350506040612445878288016120d8565b925050606085013567ffffffffffffffff81111561246657612465613227565b5b6124728782880161207c565b91505092959194509250565b600080604083850312156124955761249461322c565b5b600083013567ffffffffffffffff8111156124b3576124b2613227565b5b6124bf85828601611fe1565b925050602083013567ffffffffffffffff8111156124e0576124df613227565b5b6124ec8582860161200f565b9150509250929050565b60006020828403121561250c5761250b61322c565b5b600061251a84828501612052565b91505092915050565b6000602082840312156125395761253861322c565b5b600061254784828501612067565b91505092915050565b6000602082840312156125665761256561322c565b5b600082013567ffffffffffffffff81111561258457612583613227565b5b612590848285016120aa565b91505092915050565b6000602082840312156125af576125ae61322c565b5b60006125bd848285016120d8565b91505092915050565b60006125d28383612989565b60208301905092915050565b6125e781612f78565b82525050565b60006125f882612e51565b6126028185612e7f565b935061260d83612e2c565b8060005b8381101561263e57815161262588826125c6565b975061263083612e72565b925050600181019050612611565b5085935050505092915050565b61265481612f8a565b82525050565b600061266582612e5c565b61266f8185612e90565b935061267f818560208601612ffb565b61268881613231565b840191505092915050565b600061269e82612e67565b6126a88185612ea1565b93506126b8818560208601612ffb565b6126c181613231565b840191505092915050565b60006126d782612e67565b6126e18185612eb2565b93506126f1818560208601612ffb565b80840191505092915050565b6000815461270a8161302e565b6127148186612eb2565b9450600182166000811461272f576001811461274057612773565b60ff19831686528186019350612773565b61274985612e3c565b60005b8381101561276b5781548189015260018201915060208101905061274c565b838801955050505b50505092915050565b6000612789603483612ea1565b91506127948261324f565b604082019050919050565b60006127ac602883612ea1565b91506127b78261329e565b604082019050919050565b60006127cf601f83612ea1565b91506127da826132ed565b602082019050919050565b60006127f2602b83612ea1565b91506127fd82613316565b604082019050919050565b6000612815602683612ea1565b915061282082613365565b604082019050919050565b6000612838602983612ea1565b9150612843826133b4565b604082019050919050565b600061285b602583612ea1565b915061286682613403565b604082019050919050565b600061287e603283612ea1565b915061288982613452565b604082019050919050565b60006128a1602a83612ea1565b91506128ac826134a1565b604082019050919050565b60006128c4600583612eb2565b91506128cf826134f0565b600582019050919050565b60006128e7602083612ea1565b91506128f282613519565b602082019050919050565b600061290a602983612ea1565b915061291582613542565b604082019050919050565b600061292d602983612ea1565b915061293882613591565b604082019050919050565b6000612950602883612ea1565b915061295b826135e0565b604082019050919050565b6000612973602183612ea1565b915061297e8261362f565b604082019050919050565b61299281612fe2565b82525050565b6129a181612fe2565b82525050565b60006129b382856126fd565b91506129bf82846126cc565b91506129ca826128b7565b91508190509392505050565b60006020820190506129eb60008301846125de565b92915050565b600060a082019050612a0660008301886125de565b612a1360208301876125de565b8181036040830152612a2581866125ed565b90508181036060830152612a3981856125ed565b90508181036080830152612a4d818461265a565b90509695505050505050565b600060a082019050612a6e60008301886125de565b612a7b60208301876125de565b612a886040830186612998565b612a956060830185612998565b8181036080830152612aa7818461265a565b90509695505050505050565b60006020820190508181036000830152612acd81846125ed565b905092915050565b60006040820190508181036000830152612aef81856125ed565b90508181036020830152612b0381846125ed565b90509392505050565b6000602082019050612b21600083018461264b565b92915050565b60006020820190508181036000830152612b418184612693565b905092915050565b60006020820190508181036000830152612b628161277c565b9050919050565b60006020820190508181036000830152612b828161279f565b9050919050565b60006020820190508181036000830152612ba2816127c2565b9050919050565b60006020820190508181036000830152612bc2816127e5565b9050919050565b60006020820190508181036000830152612be281612808565b9050919050565b60006020820190508181036000830152612c028161282b565b9050919050565b60006020820190508181036000830152612c228161284e565b9050919050565b60006020820190508181036000830152612c4281612871565b9050919050565b60006020820190508181036000830152612c6281612894565b9050919050565b60006020820190508181036000830152612c82816128da565b9050919050565b60006020820190508181036000830152612ca2816128fd565b9050919050565b60006020820190508181036000830152612cc281612920565b9050919050565b60006020820190508181036000830152612ce281612943565b9050919050565b60006020820190508181036000830152612d0281612966565b9050919050565b6000602082019050612d1e6000830184612998565b92915050565b6000604082019050612d396000830185612998565b612d466020830184612998565b9392505050565b6000612d57612d68565b9050612d638282613060565b919050565b6000604051905090565b600067ffffffffffffffff821115612d8d57612d8c6131c7565b5b602082029050602081019050919050565b600067ffffffffffffffff821115612db957612db86131c7565b5b602082029050602081019050919050565b600067ffffffffffffffff821115612de557612de46131c7565b5b612dee82613231565b9050602081019050919050565b600067ffffffffffffffff821115612e1657612e156131c7565b5b612e1f82613231565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000612ec882612fe2565b9150612ed383612fe2565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612f0857612f0761310b565b5b828201905092915050565b6000612f1e82612fe2565b9150612f2983612fe2565b925082612f3957612f3861313a565b5b828204905092915050565b6000612f4f82612fe2565b9150612f5a83612fe2565b925082821015612f6d57612f6c61310b565b5b828203905092915050565b6000612f8382612fc2565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613019578082015181840152602081019050612ffe565b83811115613028576000848401525b50505050565b6000600282049050600182168061304657607f821691505b6020821081141561305a57613059613169565b5b50919050565b61306982613231565b810181811067ffffffffffffffff82111715613088576130876131c7565b5b80604052505050565b600061309c82612fe2565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156130cf576130ce61310b565b5b600182019050919050565b60006130e582612fe2565b91506130f083612fe2565b925082613100576130ff61313a565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600060033d11156132155760046000803e613212600051613242565b90505b90565b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160e01c9050919050565b7f455243313135353a207472616e7366657220746f206e6f6e204552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b7f46524d20737570706c792063616e6e6f74206578636565642031302c30303000600082015250565b7f455243313135353a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260008201527f20617070726f7665640000000000000000000000000000000000000000000000602082015250565b7f455243313135353a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f455243313135353a20696e73756666696369656e742062616c616e636520666f60008201527f72207472616e7366657200000000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f455243313135353a2073657474696e6720617070726f76616c2073746174757360008201527f20666f722073656c660000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206163636f756e747320616e6420696473206c656e67746860008201527f206d69736d617463680000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600060443d101561368e57613711565b613696612d68565b60043d036004823e80513d602482011167ffffffffffffffff821117156136be575050613711565b808201805167ffffffffffffffff8111156136dc5750505050613711565b80602083010160043d0385018111156136f9575050505050613711565b61370882602001850186613060565b82955050505050505b90565b61371d81612f78565b811461372857600080fd5b50565b61373481612f8a565b811461373f57600080fd5b50565b61374b81612f96565b811461375657600080fd5b50565b61376281612fe2565b811461376d57600080fd5b5056fea2646970667358221220ce6a0923bb5a338aa38d5598349062ebfef23e1b40095e7b65baa9673d9f728064736f6c63430008070033

Deployed Bytecode Sourcemap

39646:548:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25748:231;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24621:310;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39726:89;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25342:255;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40000:191;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27687:442;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26145:524;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4763:103;;;:::i;:::-;;39823:169;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4112:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26742:155;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26969:168;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27209:401;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5021:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25748:231;25834:7;25881:1;25862:21;;:7;:21;;;;25854:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;25949:9;:13;25959:2;25949:13;;;;;;;;;;;:22;25963:7;25949:22;;;;;;;;;;;;;;;;25942:29;;25748:231;;;;:::o;24621:310::-;24723:4;24775:26;24760:41;;;:11;:41;;;;:110;;;;24833:37;24818:52;;;:11;:52;;;;24760:110;:163;;;;24887:36;24911:11;24887:23;:36::i;:::-;24760:163;24740:183;;24621:310;;;:::o;39726:89::-;4343:12;:10;:12::i;:::-;4332:23;;:7;:5;:7::i;:::-;:23;;;4324:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39792:15:::1;39800:6;39792:7;:15::i;:::-;39726:89:::0;:::o;25342:255::-;25405:13;25494:4;25517:20;25534:2;25517:16;:20::i;:::-;25459:119;;;;;;;;;:::i;:::-;;;;;;;;;;;;;25431:158;;25342:255;;;:::o;40000:191::-;4343:12;:10;:12::i;:::-;4332:23;;:7;:5;:7::i;:::-;:23;;;4324:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40149:34:::1;40160:2;40164:3;40169:7;40178:4;40149:10;:34::i;:::-;40000:191:::0;;;;:::o;27687:442::-;27928:12;:10;:12::i;:::-;27920:20;;:4;:20;;;:60;;;;27944:36;27961:4;27967:12;:10;:12::i;:::-;27944:16;:36::i;:::-;27920:60;27898:160;;;;;;;;;;;;:::i;:::-;;;;;;;;;28069:52;28092:4;28098:2;28102:3;28107:7;28116:4;28069:22;:52::i;:::-;27687:442;;;;;:::o;26145:524::-;26301:16;26362:3;:10;26343:8;:15;:29;26335:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;26431:30;26478:8;:15;26464:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26431:63;;26512:9;26507:122;26531:8;:15;26527:1;:19;26507:122;;;26587:30;26597:8;26606:1;26597:11;;;;;;;;:::i;:::-;;;;;;;;26610:3;26614:1;26610:6;;;;;;;;:::i;:::-;;;;;;;;26587:9;:30::i;:::-;26568:13;26582:1;26568:16;;;;;;;;:::i;:::-;;;;;;;:49;;;;;26548:3;;;;:::i;:::-;;;26507:122;;;;26648:13;26641:20;;;26145:524;;;;:::o;4763:103::-;4343:12;:10;:12::i;:::-;4332:23;;:7;:5;:7::i;:::-;:23;;;4324:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4828:30:::1;4855:1;4828:18;:30::i;:::-;4763:103::o:0;39823:169::-;4343:12;:10;:12::i;:::-;4332:23;;:7;:5;:7::i;:::-;:23;;;4324:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39952:32:::1;39958:7;39967:2;39971:6;39979:4;39952:5;:32::i;:::-;39823:169:::0;;;;:::o;4112:87::-;4158:7;4185:6;;;;;;;;;;;4178:13;;4112:87;:::o;26742:155::-;26837:52;26856:12;:10;:12::i;:::-;26870:8;26880;26837:18;:52::i;:::-;26742:155;;:::o;26969:168::-;27068:4;27092:18;:27;27111:7;27092:27;;;;;;;;;;;;;;;:37;27120:8;27092:37;;;;;;;;;;;;;;;;;;;;;;;;;27085:44;;26969:168;;;;:::o;27209:401::-;27425:12;:10;:12::i;:::-;27417:20;;:4;:20;;;:60;;;;27441:36;27458:4;27464:12;:10;:12::i;:::-;27441:16;:36::i;:::-;27417:60;27395:151;;;;;;;;;;;;:::i;:::-;;;;;;;;;27557:45;27575:4;27581:2;27585;27589:6;27597:4;27557:17;:45::i;:::-;27209:401;;;;;:::o;5021:201::-;4343:12;:10;:12::i;:::-;4332:23;;:7;:5;:7::i;:::-;:23;;;4324:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5130:1:::1;5110:22;;:8;:22;;;;5102:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;5186:28;5205:8;5186:18;:28::i;:::-;5021:201:::0;:::o;15865:157::-;15950:4;15989:25;15974:40;;;:11;:40;;;;15967:47;;15865:157;;;:::o;2836:98::-;2889:7;2916:10;2909:17;;2836:98;:::o;31689:88::-;31763:6;31756:4;:13;;;;;;;;;;;;:::i;:::-;;31689:88;:::o;398:723::-;454:13;684:1;675:5;:10;671:53;;;702:10;;;;;;;;;;;;;;;;;;;;;671:53;734:12;749:5;734:20;;765:14;790:78;805:1;797:4;:9;790:78;;823:8;;;;;:::i;:::-;;;;854:2;846:10;;;;;:::i;:::-;;;790:78;;;878:19;910:6;900:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;878:39;;928:154;944:1;935:5;:10;928:154;;972:1;962:11;;;;;:::i;:::-;;;1039:2;1031:5;:10;;;;:::i;:::-;1018:2;:24;;;;:::i;:::-;1005:39;;988:6;995;988:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1068:2;1059:11;;;;;:::i;:::-;;;928:154;;;1106:6;1092:21;;;;;398:723;;;;:::o;33159:1000::-;33351:1;33337:16;;:2;:16;;;;33329:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;33424:7;:14;33410:3;:10;:28;33402:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;33496:13;33545:9;33540:135;33564:3;:10;33560:1;:14;33540:135;;;33607:3;33611:1;33607:6;;;;;;;;:::i;:::-;;;;;;;;33599:5;:14;33596:68;;;33642:3;33646:1;33642:6;;;;;;;;:::i;:::-;;;;;;;;33634:14;;33596:68;33576:3;;;;;:::i;:::-;;;;33540:135;;;;33702:10;;33693:5;:19;;33685:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;33761:16;33780:12;:10;:12::i;:::-;33761:31;;33805:66;33826:8;33844:1;33848:2;33852:3;33857:7;33866:4;33805:20;:66::i;:::-;33889:9;33884:103;33908:3;:10;33904:1;:14;33884:103;;;33965:7;33973:1;33965:10;;;;;;;;:::i;:::-;;;;;;;;33940:9;:17;33950:3;33954:1;33950:6;;;;;;;;:::i;:::-;;;;;;;;33940:17;;;;;;;;;;;:21;33958:2;33940:21;;;;;;;;;;;;;;;;:35;;;;;;;:::i;:::-;;;;;;;;33920:3;;;;;:::i;:::-;;;;33884:103;;;;34040:2;34004:53;;34036:1;34004:53;;34018:8;34004:53;;;34044:3;34049:7;34004:53;;;;;;;:::i;:::-;;;;;;;;34070:81;34106:8;34124:1;34128:2;34132:3;34137:7;34146:4;34070:35;:81::i;:::-;33318:841;;33159:1000;;;;:::o;29771:1074::-;29998:7;:14;29984:3;:10;:28;29976:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;30090:1;30076:16;;:2;:16;;;;30068:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;30147:16;30166:12;:10;:12::i;:::-;30147:31;;30191:60;30212:8;30222:4;30228:2;30232:3;30237:7;30246:4;30191:20;:60::i;:::-;30269:9;30264:421;30288:3;:10;30284:1;:14;30264:421;;;30320:10;30333:3;30337:1;30333:6;;;;;;;;:::i;:::-;;;;;;;;30320:19;;30354:14;30371:7;30379:1;30371:10;;;;;;;;:::i;:::-;;;;;;;;30354:27;;30398:19;30420:9;:13;30430:2;30420:13;;;;;;;;;;;:19;30434:4;30420:19;;;;;;;;;;;;;;;;30398:41;;30477:6;30462:11;:21;;30454:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;30610:6;30596:11;:20;30574:9;:13;30584:2;30574:13;;;;;;;;;;;:19;30588:4;30574:19;;;;;;;;;;;;;;;:42;;;;30667:6;30646:9;:13;30656:2;30646:13;;;;;;;;;;;:17;30660:2;30646:17;;;;;;;;;;;;;;;;:27;;;;;;;:::i;:::-;;;;;;;;30305:380;;;30300:3;;;;:::i;:::-;;;30264:421;;;;30732:2;30702:47;;30726:4;30702:47;;30716:8;30702:47;;;30736:3;30741:7;30702:47;;;;;;;:::i;:::-;;;;;;;;30762:75;30798:8;30808:4;30814:2;30818:3;30823:7;30832:4;30762:35;:75::i;:::-;29965:880;29771:1074;;;;;:::o;5382:191::-;5456:16;5475:6;;;;;;;;;;;5456:25;;5501:8;5492:6;;:17;;;;;;;;;;;;;;;;;;5556:8;5525:40;;5546:8;5525:40;;;;;;;;;;;;5445:128;5382:191;:::o;32163:640::-;32330:1;32316:16;;:2;:16;;;;32308:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;32395:10;;32389:2;:16;;32381:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;32454:16;32473:12;:10;:12::i;:::-;32454:31;;32498:102;32519:8;32537:1;32541:2;32545:21;32563:2;32545:17;:21::i;:::-;32568:25;32586:6;32568:17;:25::i;:::-;32595:4;32498:20;:102::i;:::-;32634:6;32613:9;:13;32623:2;32613:13;;;;;;;;;;;:17;32627:2;32613:17;;;;;;;;;;;;;;;;:27;;;;;;;:::i;:::-;;;;;;;;32693:2;32656:52;;32689:1;32656:52;;32671:8;32656:52;;;32697:2;32701:6;32656:52;;;;;;;:::i;:::-;;;;;;;;32721:74;32752:8;32770:1;32774:2;32778;32782:6;32790:4;32721:30;:74::i;:::-;32297:506;32163:640;;;;:::o;36293:331::-;36448:8;36439:17;;:5;:17;;;;36431:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;36551:8;36513:18;:25;36532:5;36513:25;;;;;;;;;;;;;;;:35;36539:8;36513:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;36597:8;36575:41;;36590:5;36575:41;;;36607:8;36575:41;;;;;;:::i;:::-;;;;;;;;36293:331;;;:::o;28593:820::-;28795:1;28781:16;;:2;:16;;;;28773:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;28852:16;28871:12;:10;:12::i;:::-;28852:31;;28896:96;28917:8;28927:4;28933:2;28937:21;28955:2;28937:17;:21::i;:::-;28960:25;28978:6;28960:17;:25::i;:::-;28987:4;28896:20;:96::i;:::-;29005:19;29027:9;:13;29037:2;29027:13;;;;;;;;;;;:19;29041:4;29027:19;;;;;;;;;;;;;;;;29005:41;;29080:6;29065:11;:21;;29057:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;29205:6;29191:11;:20;29169:9;:13;29179:2;29169:13;;;;;;;;;;;:19;29183:4;29169:19;;;;;;;;;;;;;;;:42;;;;29254:6;29233:9;:13;29243:2;29233:13;;;;;;;;;;;:17;29247:2;29233:17;;;;;;;;;;;;;;;;:27;;;;;;;:::i;:::-;;;;;;;;29309:2;29278:46;;29303:4;29278:46;;29293:8;29278:46;;;29313:2;29317:6;29278:46;;;;;;;:::i;:::-;;;;;;;;29337:68;29368:8;29378:4;29384:2;29388;29392:6;29400:4;29337:30;:68::i;:::-;28762:651;;28593:820;;;;;:::o;37580:221::-;;;;;;;:::o;38561:813::-;38801:15;:2;:13;;;:15::i;:::-;38797:570;;;38854:2;38837:43;;;38881:8;38891:4;38897:3;38902:7;38911:4;38837:79;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;38833:523;;;;:::i;:::-;;;;;;;;;;:::i;:::-;;;;;;;;39229:6;39222:14;;;;;;;;;;;:::i;:::-;;;;;;;;38833:523;;;39278:62;;;;;;;;;;:::i;:::-;;;;;;;;38833:523;39010:48;;;38998:60;;;:8;:60;;;;38994:159;;39083:50;;;;;;;;;;:::i;:::-;;;;;;;;38994:159;38917:251;38797:570;38561:813;;;;;;:::o;39382:198::-;39448:16;39477:22;39516:1;39502:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39477:41;;39540:7;39529:5;39535:1;39529:8;;;;;;;;:::i;:::-;;;;;;;:18;;;;;39567:5;39560:12;;;39382:198;;;:::o;37809:744::-;38024:15;:2;:13;;;:15::i;:::-;38020:526;;;38077:2;38060:38;;;38099:8;38109:4;38115:2;38119:6;38127:4;38060:72;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;38056:479;;;;:::i;:::-;;;;;;;;;;:::i;:::-;;;;;;;;38408:6;38401:14;;;;;;;;;;;:::i;:::-;;;;;;;;38056:479;;;38457:62;;;;;;;;;;:::i;:::-;;;;;;;;38056:479;38194:43;;;38182:55;;;:8;:55;;;;38178:154;;38262:50;;;;;;;;;;:::i;:::-;;;;;;;;38178:154;38133:214;38020:526;37809:744;;;;;;:::o;6813:326::-;6873:4;7130:1;7108:7;:19;;;:23;7101:30;;6813:326;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;24:722:1:-;120:5;145:81;161:64;218:6;161:64;:::i;:::-;145:81;:::i;:::-;136:90;;246:5;275:6;268:5;261:21;309:4;302:5;298:16;291:23;;335:6;385:3;377:4;369:6;365:17;360:3;356:27;353:36;350:143;;;404:79;;:::i;:::-;350:143;517:1;502:238;527:6;524:1;521:13;502:238;;;595:3;624:37;657:3;645:10;624:37;:::i;:::-;619:3;612:50;691:4;686:3;682:14;675:21;;725:4;720:3;716:14;709:21;;562:178;549:1;546;542:9;537:14;;502:238;;;506:14;126:620;;24:722;;;;;:::o;769:::-;865:5;890:81;906:64;963:6;906:64;:::i;:::-;890:81;:::i;:::-;881:90;;991:5;1020:6;1013:5;1006:21;1054:4;1047:5;1043:16;1036:23;;1080:6;1130:3;1122:4;1114:6;1110:17;1105:3;1101:27;1098:36;1095:143;;;1149:79;;:::i;:::-;1095:143;1262:1;1247:238;1272:6;1269:1;1266:13;1247:238;;;1340:3;1369:37;1402:3;1390:10;1369:37;:::i;:::-;1364:3;1357:50;1436:4;1431:3;1427:14;1420:21;;1470:4;1465:3;1461:14;1454:21;;1307:178;1294:1;1291;1287:9;1282:14;;1247:238;;;1251:14;871:620;;769:722;;;;;:::o;1497:410::-;1574:5;1599:65;1615:48;1656:6;1615:48;:::i;:::-;1599:65;:::i;:::-;1590:74;;1687:6;1680:5;1673:21;1725:4;1718:5;1714:16;1763:3;1754:6;1749:3;1745:16;1742:25;1739:112;;;1770:79;;:::i;:::-;1739:112;1860:41;1894:6;1889:3;1884;1860:41;:::i;:::-;1580:327;1497:410;;;;;:::o;1913:412::-;1991:5;2016:66;2032:49;2074:6;2032:49;:::i;:::-;2016:66;:::i;:::-;2007:75;;2105:6;2098:5;2091:21;2143:4;2136:5;2132:16;2181:3;2172:6;2167:3;2163:16;2160:25;2157:112;;;2188:79;;:::i;:::-;2157:112;2278:41;2312:6;2307:3;2302;2278:41;:::i;:::-;1997:328;1913:412;;;;;:::o;2331:139::-;2377:5;2415:6;2402:20;2393:29;;2431:33;2458:5;2431:33;:::i;:::-;2331:139;;;;:::o;2493:370::-;2564:5;2613:3;2606:4;2598:6;2594:17;2590:27;2580:122;;2621:79;;:::i;:::-;2580:122;2738:6;2725:20;2763:94;2853:3;2845:6;2838:4;2830:6;2826:17;2763:94;:::i;:::-;2754:103;;2570:293;2493:370;;;;:::o;2886:::-;2957:5;3006:3;2999:4;2991:6;2987:17;2983:27;2973:122;;3014:79;;:::i;:::-;2973:122;3131:6;3118:20;3156:94;3246:3;3238:6;3231:4;3223:6;3219:17;3156:94;:::i;:::-;3147:103;;2963:293;2886:370;;;;:::o;3262:133::-;3305:5;3343:6;3330:20;3321:29;;3359:30;3383:5;3359:30;:::i;:::-;3262:133;;;;:::o;3401:137::-;3446:5;3484:6;3471:20;3462:29;;3500:32;3526:5;3500:32;:::i;:::-;3401:137;;;;:::o;3544:141::-;3600:5;3631:6;3625:13;3616:22;;3647:32;3673:5;3647:32;:::i;:::-;3544:141;;;;:::o;3704:338::-;3759:5;3808:3;3801:4;3793:6;3789:17;3785:27;3775:122;;3816:79;;:::i;:::-;3775:122;3933:6;3920:20;3958:78;4032:3;4024:6;4017:4;4009:6;4005:17;3958:78;:::i;:::-;3949:87;;3765:277;3704:338;;;;:::o;4062:340::-;4118:5;4167:3;4160:4;4152:6;4148:17;4144:27;4134:122;;4175:79;;:::i;:::-;4134:122;4292:6;4279:20;4317:79;4392:3;4384:6;4377:4;4369:6;4365:17;4317:79;:::i;:::-;4308:88;;4124:278;4062:340;;;;:::o;4408:139::-;4454:5;4492:6;4479:20;4470:29;;4508:33;4535:5;4508:33;:::i;:::-;4408:139;;;;:::o;4553:329::-;4612:6;4661:2;4649:9;4640:7;4636:23;4632:32;4629:119;;;4667:79;;:::i;:::-;4629:119;4787:1;4812:53;4857:7;4848:6;4837:9;4833:22;4812:53;:::i;:::-;4802:63;;4758:117;4553:329;;;;:::o;4888:474::-;4956:6;4964;5013:2;5001:9;4992:7;4988:23;4984:32;4981:119;;;5019:79;;:::i;:::-;4981:119;5139:1;5164:53;5209:7;5200:6;5189:9;5185:22;5164:53;:::i;:::-;5154:63;;5110:117;5266:2;5292:53;5337:7;5328:6;5317:9;5313:22;5292:53;:::i;:::-;5282:63;;5237:118;4888:474;;;;;:::o;5368:1509::-;5522:6;5530;5538;5546;5554;5603:3;5591:9;5582:7;5578:23;5574:33;5571:120;;;5610:79;;:::i;:::-;5571:120;5730:1;5755:53;5800:7;5791:6;5780:9;5776:22;5755:53;:::i;:::-;5745:63;;5701:117;5857:2;5883:53;5928:7;5919:6;5908:9;5904:22;5883:53;:::i;:::-;5873:63;;5828:118;6013:2;6002:9;5998:18;5985:32;6044:18;6036:6;6033:30;6030:117;;;6066:79;;:::i;:::-;6030:117;6171:78;6241:7;6232:6;6221:9;6217:22;6171:78;:::i;:::-;6161:88;;5956:303;6326:2;6315:9;6311:18;6298:32;6357:18;6349:6;6346:30;6343:117;;;6379:79;;:::i;:::-;6343:117;6484:78;6554:7;6545:6;6534:9;6530:22;6484:78;:::i;:::-;6474:88;;6269:303;6639:3;6628:9;6624:19;6611:33;6671:18;6663:6;6660:30;6657:117;;;6693:79;;:::i;:::-;6657:117;6798:62;6852:7;6843:6;6832:9;6828:22;6798:62;:::i;:::-;6788:72;;6582:288;5368:1509;;;;;;;;:::o;6883:1089::-;6987:6;6995;7003;7011;7019;7068:3;7056:9;7047:7;7043:23;7039:33;7036:120;;;7075:79;;:::i;:::-;7036:120;7195:1;7220:53;7265:7;7256:6;7245:9;7241:22;7220:53;:::i;:::-;7210:63;;7166:117;7322:2;7348:53;7393:7;7384:6;7373:9;7369:22;7348:53;:::i;:::-;7338:63;;7293:118;7450:2;7476:53;7521:7;7512:6;7501:9;7497:22;7476:53;:::i;:::-;7466:63;;7421:118;7578:2;7604:53;7649:7;7640:6;7629:9;7625:22;7604:53;:::i;:::-;7594:63;;7549:118;7734:3;7723:9;7719:19;7706:33;7766:18;7758:6;7755:30;7752:117;;;7788:79;;:::i;:::-;7752:117;7893:62;7947:7;7938:6;7927:9;7923:22;7893:62;:::i;:::-;7883:72;;7677:288;6883:1089;;;;;;;;:::o;7978:1363::-;8123:6;8131;8139;8147;8196:3;8184:9;8175:7;8171:23;8167:33;8164:120;;;8203:79;;:::i;:::-;8164:120;8323:1;8348:53;8393:7;8384:6;8373:9;8369:22;8348:53;:::i;:::-;8338:63;;8294:117;8478:2;8467:9;8463:18;8450:32;8509:18;8501:6;8498:30;8495:117;;;8531:79;;:::i;:::-;8495:117;8636:78;8706:7;8697:6;8686:9;8682:22;8636:78;:::i;:::-;8626:88;;8421:303;8791:2;8780:9;8776:18;8763:32;8822:18;8814:6;8811:30;8808:117;;;8844:79;;:::i;:::-;8808:117;8949:78;9019:7;9010:6;8999:9;8995:22;8949:78;:::i;:::-;8939:88;;8734:303;9104:2;9093:9;9089:18;9076:32;9135:18;9127:6;9124:30;9121:117;;;9157:79;;:::i;:::-;9121:117;9262:62;9316:7;9307:6;9296:9;9292:22;9262:62;:::i;:::-;9252:72;;9047:287;7978:1363;;;;;;;:::o;9347:468::-;9412:6;9420;9469:2;9457:9;9448:7;9444:23;9440:32;9437:119;;;9475:79;;:::i;:::-;9437:119;9595:1;9620:53;9665:7;9656:6;9645:9;9641:22;9620:53;:::i;:::-;9610:63;;9566:117;9722:2;9748:50;9790:7;9781:6;9770:9;9766:22;9748:50;:::i;:::-;9738:60;;9693:115;9347:468;;;;;:::o;9821:474::-;9889:6;9897;9946:2;9934:9;9925:7;9921:23;9917:32;9914:119;;;9952:79;;:::i;:::-;9914:119;10072:1;10097:53;10142:7;10133:6;10122:9;10118:22;10097:53;:::i;:::-;10087:63;;10043:117;10199:2;10225:53;10270:7;10261:6;10250:9;10246:22;10225:53;:::i;:::-;10215:63;;10170:118;9821:474;;;;;:::o;10301:943::-;10396:6;10404;10412;10420;10469:3;10457:9;10448:7;10444:23;10440:33;10437:120;;;10476:79;;:::i;:::-;10437:120;10596:1;10621:53;10666:7;10657:6;10646:9;10642:22;10621:53;:::i;:::-;10611:63;;10567:117;10723:2;10749:53;10794:7;10785:6;10774:9;10770:22;10749:53;:::i;:::-;10739:63;;10694:118;10851:2;10877:53;10922:7;10913:6;10902:9;10898:22;10877:53;:::i;:::-;10867:63;;10822:118;11007:2;10996:9;10992:18;10979:32;11038:18;11030:6;11027:30;11024:117;;;11060:79;;:::i;:::-;11024:117;11165:62;11219:7;11210:6;11199:9;11195:22;11165:62;:::i;:::-;11155:72;;10950:287;10301:943;;;;;;;:::o;11250:894::-;11368:6;11376;11425:2;11413:9;11404:7;11400:23;11396:32;11393:119;;;11431:79;;:::i;:::-;11393:119;11579:1;11568:9;11564:17;11551:31;11609:18;11601:6;11598:30;11595:117;;;11631:79;;:::i;:::-;11595:117;11736:78;11806:7;11797:6;11786:9;11782:22;11736:78;:::i;:::-;11726:88;;11522:302;11891:2;11880:9;11876:18;11863:32;11922:18;11914:6;11911:30;11908:117;;;11944:79;;:::i;:::-;11908:117;12049:78;12119:7;12110:6;12099:9;12095:22;12049:78;:::i;:::-;12039:88;;11834:303;11250:894;;;;;:::o;12150:327::-;12208:6;12257:2;12245:9;12236:7;12232:23;12228:32;12225:119;;;12263:79;;:::i;:::-;12225:119;12383:1;12408:52;12452:7;12443:6;12432:9;12428:22;12408:52;:::i;:::-;12398:62;;12354:116;12150:327;;;;:::o;12483:349::-;12552:6;12601:2;12589:9;12580:7;12576:23;12572:32;12569:119;;;12607:79;;:::i;:::-;12569:119;12727:1;12752:63;12807:7;12798:6;12787:9;12783:22;12752:63;:::i;:::-;12742:73;;12698:127;12483:349;;;;:::o;12838:509::-;12907:6;12956:2;12944:9;12935:7;12931:23;12927:32;12924:119;;;12962:79;;:::i;:::-;12924:119;13110:1;13099:9;13095:17;13082:31;13140:18;13132:6;13129:30;13126:117;;;13162:79;;:::i;:::-;13126:117;13267:63;13322:7;13313:6;13302:9;13298:22;13267:63;:::i;:::-;13257:73;;13053:287;12838:509;;;;:::o;13353:329::-;13412:6;13461:2;13449:9;13440:7;13436:23;13432:32;13429:119;;;13467:79;;:::i;:::-;13429:119;13587:1;13612:53;13657:7;13648:6;13637:9;13633:22;13612:53;:::i;:::-;13602:63;;13558:117;13353:329;;;;:::o;13688:179::-;13757:10;13778:46;13820:3;13812:6;13778:46;:::i;:::-;13856:4;13851:3;13847:14;13833:28;;13688:179;;;;:::o;13873:118::-;13960:24;13978:5;13960:24;:::i;:::-;13955:3;13948:37;13873:118;;:::o;14027:732::-;14146:3;14175:54;14223:5;14175:54;:::i;:::-;14245:86;14324:6;14319:3;14245:86;:::i;:::-;14238:93;;14355:56;14405:5;14355:56;:::i;:::-;14434:7;14465:1;14450:284;14475:6;14472:1;14469:13;14450:284;;;14551:6;14545:13;14578:63;14637:3;14622:13;14578:63;:::i;:::-;14571:70;;14664:60;14717:6;14664:60;:::i;:::-;14654:70;;14510:224;14497:1;14494;14490:9;14485:14;;14450:284;;;14454:14;14750:3;14743:10;;14151:608;;;14027:732;;;;:::o;14765:109::-;14846:21;14861:5;14846:21;:::i;:::-;14841:3;14834:34;14765:109;;:::o;14880:360::-;14966:3;14994:38;15026:5;14994:38;:::i;:::-;15048:70;15111:6;15106:3;15048:70;:::i;:::-;15041:77;;15127:52;15172:6;15167:3;15160:4;15153:5;15149:16;15127:52;:::i;:::-;15204:29;15226:6;15204:29;:::i;:::-;15199:3;15195:39;15188:46;;14970:270;14880:360;;;;:::o;15246:364::-;15334:3;15362:39;15395:5;15362:39;:::i;:::-;15417:71;15481:6;15476:3;15417:71;:::i;:::-;15410:78;;15497:52;15542:6;15537:3;15530:4;15523:5;15519:16;15497:52;:::i;:::-;15574:29;15596:6;15574:29;:::i;:::-;15569:3;15565:39;15558:46;;15338:272;15246:364;;;;:::o;15616:377::-;15722:3;15750:39;15783:5;15750:39;:::i;:::-;15805:89;15887:6;15882:3;15805:89;:::i;:::-;15798:96;;15903:52;15948:6;15943:3;15936:4;15929:5;15925:16;15903:52;:::i;:::-;15980:6;15975:3;15971:16;15964:23;;15726:267;15616:377;;;;:::o;16023:845::-;16126:3;16163:5;16157:12;16192:36;16218:9;16192:36;:::i;:::-;16244:89;16326:6;16321:3;16244:89;:::i;:::-;16237:96;;16364:1;16353:9;16349:17;16380:1;16375:137;;;;16526:1;16521:341;;;;16342:520;;16375:137;16459:4;16455:9;16444;16440:25;16435:3;16428:38;16495:6;16490:3;16486:16;16479:23;;16375:137;;16521:341;16588:38;16620:5;16588:38;:::i;:::-;16648:1;16662:154;16676:6;16673:1;16670:13;16662:154;;;16750:7;16744:14;16740:1;16735:3;16731:11;16724:35;16800:1;16791:7;16787:15;16776:26;;16698:4;16695:1;16691:12;16686:17;;16662:154;;;16845:6;16840:3;16836:16;16829:23;;16528:334;;16342:520;;16130:738;;16023:845;;;;:::o;16874:366::-;17016:3;17037:67;17101:2;17096:3;17037:67;:::i;:::-;17030:74;;17113:93;17202:3;17113:93;:::i;:::-;17231:2;17226:3;17222:12;17215:19;;16874:366;;;:::o;17246:::-;17388:3;17409:67;17473:2;17468:3;17409:67;:::i;:::-;17402:74;;17485:93;17574:3;17485:93;:::i;:::-;17603:2;17598:3;17594:12;17587:19;;17246:366;;;:::o;17618:::-;17760:3;17781:67;17845:2;17840:3;17781:67;:::i;:::-;17774:74;;17857:93;17946:3;17857:93;:::i;:::-;17975:2;17970:3;17966:12;17959:19;;17618:366;;;:::o;17990:::-;18132:3;18153:67;18217:2;18212:3;18153:67;:::i;:::-;18146:74;;18229:93;18318:3;18229:93;:::i;:::-;18347:2;18342:3;18338:12;18331:19;;17990:366;;;:::o;18362:::-;18504:3;18525:67;18589:2;18584:3;18525:67;:::i;:::-;18518:74;;18601:93;18690:3;18601:93;:::i;:::-;18719:2;18714:3;18710:12;18703:19;;18362:366;;;:::o;18734:::-;18876:3;18897:67;18961:2;18956:3;18897:67;:::i;:::-;18890:74;;18973:93;19062:3;18973:93;:::i;:::-;19091:2;19086:3;19082:12;19075:19;;18734:366;;;:::o;19106:::-;19248:3;19269:67;19333:2;19328:3;19269:67;:::i;:::-;19262:74;;19345:93;19434:3;19345:93;:::i;:::-;19463:2;19458:3;19454:12;19447:19;;19106:366;;;:::o;19478:::-;19620:3;19641:67;19705:2;19700:3;19641:67;:::i;:::-;19634:74;;19717:93;19806:3;19717:93;:::i;:::-;19835:2;19830:3;19826:12;19819:19;;19478:366;;;:::o;19850:::-;19992:3;20013:67;20077:2;20072:3;20013:67;:::i;:::-;20006:74;;20089:93;20178:3;20089:93;:::i;:::-;20207:2;20202:3;20198:12;20191:19;;19850:366;;;:::o;20222:400::-;20382:3;20403:84;20485:1;20480:3;20403:84;:::i;:::-;20396:91;;20496:93;20585:3;20496:93;:::i;:::-;20614:1;20609:3;20605:11;20598:18;;20222:400;;;:::o;20628:366::-;20770:3;20791:67;20855:2;20850:3;20791:67;:::i;:::-;20784:74;;20867:93;20956:3;20867:93;:::i;:::-;20985:2;20980:3;20976:12;20969:19;;20628:366;;;:::o;21000:::-;21142:3;21163:67;21227:2;21222:3;21163:67;:::i;:::-;21156:74;;21239:93;21328:3;21239:93;:::i;:::-;21357:2;21352:3;21348:12;21341:19;;21000:366;;;:::o;21372:::-;21514:3;21535:67;21599:2;21594:3;21535:67;:::i;:::-;21528:74;;21611:93;21700:3;21611:93;:::i;:::-;21729:2;21724:3;21720:12;21713:19;;21372:366;;;:::o;21744:::-;21886:3;21907:67;21971:2;21966:3;21907:67;:::i;:::-;21900:74;;21983:93;22072:3;21983:93;:::i;:::-;22101:2;22096:3;22092:12;22085:19;;21744:366;;;:::o;22116:::-;22258:3;22279:67;22343:2;22338:3;22279:67;:::i;:::-;22272:74;;22355:93;22444:3;22355:93;:::i;:::-;22473:2;22468:3;22464:12;22457:19;;22116:366;;;:::o;22488:108::-;22565:24;22583:5;22565:24;:::i;:::-;22560:3;22553:37;22488:108;;:::o;22602:118::-;22689:24;22707:5;22689:24;:::i;:::-;22684:3;22677:37;22602:118;;:::o;22726:695::-;23004:3;23026:92;23114:3;23105:6;23026:92;:::i;:::-;23019:99;;23135:95;23226:3;23217:6;23135:95;:::i;:::-;23128:102;;23247:148;23391:3;23247:148;:::i;:::-;23240:155;;23412:3;23405:10;;22726:695;;;;;:::o;23427:222::-;23520:4;23558:2;23547:9;23543:18;23535:26;;23571:71;23639:1;23628:9;23624:17;23615:6;23571:71;:::i;:::-;23427:222;;;;:::o;23655:1053::-;23978:4;24016:3;24005:9;24001:19;23993:27;;24030:71;24098:1;24087:9;24083:17;24074:6;24030:71;:::i;:::-;24111:72;24179:2;24168:9;24164:18;24155:6;24111:72;:::i;:::-;24230:9;24224:4;24220:20;24215:2;24204:9;24200:18;24193:48;24258:108;24361:4;24352:6;24258:108;:::i;:::-;24250:116;;24413:9;24407:4;24403:20;24398:2;24387:9;24383:18;24376:48;24441:108;24544:4;24535:6;24441:108;:::i;:::-;24433:116;;24597:9;24591:4;24587:20;24581:3;24570:9;24566:19;24559:49;24625:76;24696:4;24687:6;24625:76;:::i;:::-;24617:84;;23655:1053;;;;;;;;:::o;24714:751::-;24937:4;24975:3;24964:9;24960:19;24952:27;;24989:71;25057:1;25046:9;25042:17;25033:6;24989:71;:::i;:::-;25070:72;25138:2;25127:9;25123:18;25114:6;25070:72;:::i;:::-;25152;25220:2;25209:9;25205:18;25196:6;25152:72;:::i;:::-;25234;25302:2;25291:9;25287:18;25278:6;25234:72;:::i;:::-;25354:9;25348:4;25344:20;25338:3;25327:9;25323:19;25316:49;25382:76;25453:4;25444:6;25382:76;:::i;:::-;25374:84;;24714:751;;;;;;;;:::o;25471:373::-;25614:4;25652:2;25641:9;25637:18;25629:26;;25701:9;25695:4;25691:20;25687:1;25676:9;25672:17;25665:47;25729:108;25832:4;25823:6;25729:108;:::i;:::-;25721:116;;25471:373;;;;:::o;25850:634::-;26071:4;26109:2;26098:9;26094:18;26086:26;;26158:9;26152:4;26148:20;26144:1;26133:9;26129:17;26122:47;26186:108;26289:4;26280:6;26186:108;:::i;:::-;26178:116;;26341:9;26335:4;26331:20;26326:2;26315:9;26311:18;26304:48;26369:108;26472:4;26463:6;26369:108;:::i;:::-;26361:116;;25850:634;;;;;:::o;26490:210::-;26577:4;26615:2;26604:9;26600:18;26592:26;;26628:65;26690:1;26679:9;26675:17;26666:6;26628:65;:::i;:::-;26490:210;;;;:::o;26706:313::-;26819:4;26857:2;26846:9;26842:18;26834:26;;26906:9;26900:4;26896:20;26892:1;26881:9;26877:17;26870:47;26934:78;27007:4;26998:6;26934:78;:::i;:::-;26926:86;;26706:313;;;;:::o;27025:419::-;27191:4;27229:2;27218:9;27214:18;27206:26;;27278:9;27272:4;27268:20;27264:1;27253:9;27249:17;27242:47;27306:131;27432:4;27306:131;:::i;:::-;27298:139;;27025:419;;;:::o;27450:::-;27616:4;27654:2;27643:9;27639:18;27631:26;;27703:9;27697:4;27693:20;27689:1;27678:9;27674:17;27667:47;27731:131;27857:4;27731:131;:::i;:::-;27723:139;;27450:419;;;:::o;27875:::-;28041:4;28079:2;28068:9;28064:18;28056:26;;28128:9;28122:4;28118:20;28114:1;28103:9;28099:17;28092:47;28156:131;28282:4;28156:131;:::i;:::-;28148:139;;27875:419;;;:::o;28300:::-;28466:4;28504:2;28493:9;28489:18;28481:26;;28553:9;28547:4;28543:20;28539:1;28528:9;28524:17;28517:47;28581:131;28707:4;28581:131;:::i;:::-;28573:139;;28300:419;;;:::o;28725:::-;28891:4;28929:2;28918:9;28914:18;28906:26;;28978:9;28972:4;28968:20;28964:1;28953:9;28949:17;28942:47;29006:131;29132:4;29006:131;:::i;:::-;28998:139;;28725:419;;;:::o;29150:::-;29316:4;29354:2;29343:9;29339:18;29331:26;;29403:9;29397:4;29393:20;29389:1;29378:9;29374:17;29367:47;29431:131;29557:4;29431:131;:::i;:::-;29423:139;;29150:419;;;:::o;29575:::-;29741:4;29779:2;29768:9;29764:18;29756:26;;29828:9;29822:4;29818:20;29814:1;29803:9;29799:17;29792:47;29856:131;29982:4;29856:131;:::i;:::-;29848:139;;29575:419;;;:::o;30000:::-;30166:4;30204:2;30193:9;30189:18;30181:26;;30253:9;30247:4;30243:20;30239:1;30228:9;30224:17;30217:47;30281:131;30407:4;30281:131;:::i;:::-;30273:139;;30000:419;;;:::o;30425:::-;30591:4;30629:2;30618:9;30614:18;30606:26;;30678:9;30672:4;30668:20;30664:1;30653:9;30649:17;30642:47;30706:131;30832:4;30706:131;:::i;:::-;30698:139;;30425:419;;;:::o;30850:::-;31016:4;31054:2;31043:9;31039:18;31031:26;;31103:9;31097:4;31093:20;31089:1;31078:9;31074:17;31067:47;31131:131;31257:4;31131:131;:::i;:::-;31123:139;;30850:419;;;:::o;31275:::-;31441:4;31479:2;31468:9;31464:18;31456:26;;31528:9;31522:4;31518:20;31514:1;31503:9;31499:17;31492:47;31556:131;31682:4;31556:131;:::i;:::-;31548:139;;31275:419;;;:::o;31700:::-;31866:4;31904:2;31893:9;31889:18;31881:26;;31953:9;31947:4;31943:20;31939:1;31928:9;31924:17;31917:47;31981:131;32107:4;31981:131;:::i;:::-;31973:139;;31700:419;;;:::o;32125:::-;32291:4;32329:2;32318:9;32314:18;32306:26;;32378:9;32372:4;32368:20;32364:1;32353:9;32349:17;32342:47;32406:131;32532:4;32406:131;:::i;:::-;32398:139;;32125:419;;;:::o;32550:::-;32716:4;32754:2;32743:9;32739:18;32731:26;;32803:9;32797:4;32793:20;32789:1;32778:9;32774:17;32767:47;32831:131;32957:4;32831:131;:::i;:::-;32823:139;;32550:419;;;:::o;32975:222::-;33068:4;33106:2;33095:9;33091:18;33083:26;;33119:71;33187:1;33176:9;33172:17;33163:6;33119:71;:::i;:::-;32975:222;;;;:::o;33203:332::-;33324:4;33362:2;33351:9;33347:18;33339:26;;33375:71;33443:1;33432:9;33428:17;33419:6;33375:71;:::i;:::-;33456:72;33524:2;33513:9;33509:18;33500:6;33456:72;:::i;:::-;33203:332;;;;;:::o;33541:129::-;33575:6;33602:20;;:::i;:::-;33592:30;;33631:33;33659:4;33651:6;33631:33;:::i;:::-;33541:129;;;:::o;33676:75::-;33709:6;33742:2;33736:9;33726:19;;33676:75;:::o;33757:311::-;33834:4;33924:18;33916:6;33913:30;33910:56;;;33946:18;;:::i;:::-;33910:56;33996:4;33988:6;33984:17;33976:25;;34056:4;34050;34046:15;34038:23;;33757:311;;;:::o;34074:::-;34151:4;34241:18;34233:6;34230:30;34227:56;;;34263:18;;:::i;:::-;34227:56;34313:4;34305:6;34301:17;34293:25;;34373:4;34367;34363:15;34355:23;;34074:311;;;:::o;34391:307::-;34452:4;34542:18;34534:6;34531:30;34528:56;;;34564:18;;:::i;:::-;34528:56;34602:29;34624:6;34602:29;:::i;:::-;34594:37;;34686:4;34680;34676:15;34668:23;;34391:307;;;:::o;34704:308::-;34766:4;34856:18;34848:6;34845:30;34842:56;;;34878:18;;:::i;:::-;34842:56;34916:29;34938:6;34916:29;:::i;:::-;34908:37;;35000:4;34994;34990:15;34982:23;;34704:308;;;:::o;35018:132::-;35085:4;35108:3;35100:11;;35138:4;35133:3;35129:14;35121:22;;35018:132;;;:::o;35156:141::-;35205:4;35228:3;35220:11;;35251:3;35248:1;35241:14;35285:4;35282:1;35272:18;35264:26;;35156:141;;;:::o;35303:114::-;35370:6;35404:5;35398:12;35388:22;;35303:114;;;:::o;35423:98::-;35474:6;35508:5;35502:12;35492:22;;35423:98;;;:::o;35527:99::-;35579:6;35613:5;35607:12;35597:22;;35527:99;;;:::o;35632:113::-;35702:4;35734;35729:3;35725:14;35717:22;;35632:113;;;:::o;35751:184::-;35850:11;35884:6;35879:3;35872:19;35924:4;35919:3;35915:14;35900:29;;35751:184;;;;:::o;35941:168::-;36024:11;36058:6;36053:3;36046:19;36098:4;36093:3;36089:14;36074:29;;35941:168;;;;:::o;36115:169::-;36199:11;36233:6;36228:3;36221:19;36273:4;36268:3;36264:14;36249:29;;36115:169;;;;:::o;36290:148::-;36392:11;36429:3;36414:18;;36290:148;;;;:::o;36444:305::-;36484:3;36503:20;36521:1;36503:20;:::i;:::-;36498:25;;36537:20;36555:1;36537:20;:::i;:::-;36532:25;;36691:1;36623:66;36619:74;36616:1;36613:81;36610:107;;;36697:18;;:::i;:::-;36610:107;36741:1;36738;36734:9;36727:16;;36444:305;;;;:::o;36755:185::-;36795:1;36812:20;36830:1;36812:20;:::i;:::-;36807:25;;36846:20;36864:1;36846:20;:::i;:::-;36841:25;;36885:1;36875:35;;36890:18;;:::i;:::-;36875:35;36932:1;36929;36925:9;36920:14;;36755:185;;;;:::o;36946:191::-;36986:4;37006:20;37024:1;37006:20;:::i;:::-;37001:25;;37040:20;37058:1;37040:20;:::i;:::-;37035:25;;37079:1;37076;37073:8;37070:34;;;37084:18;;:::i;:::-;37070:34;37129:1;37126;37122:9;37114:17;;36946:191;;;;:::o;37143:96::-;37180:7;37209:24;37227:5;37209:24;:::i;:::-;37198:35;;37143:96;;;:::o;37245:90::-;37279:7;37322:5;37315:13;37308:21;37297:32;;37245:90;;;:::o;37341:149::-;37377:7;37417:66;37410:5;37406:78;37395:89;;37341:149;;;:::o;37496:126::-;37533:7;37573:42;37566:5;37562:54;37551:65;;37496:126;;;:::o;37628:77::-;37665:7;37694:5;37683:16;;37628:77;;;:::o;37711:154::-;37795:6;37790:3;37785;37772:30;37857:1;37848:6;37843:3;37839:16;37832:27;37711:154;;;:::o;37871:307::-;37939:1;37949:113;37963:6;37960:1;37957:13;37949:113;;;38048:1;38043:3;38039:11;38033:18;38029:1;38024:3;38020:11;38013:39;37985:2;37982:1;37978:10;37973:15;;37949:113;;;38080:6;38077:1;38074:13;38071:101;;;38160:1;38151:6;38146:3;38142:16;38135:27;38071:101;37920:258;37871:307;;;:::o;38184:320::-;38228:6;38265:1;38259:4;38255:12;38245:22;;38312:1;38306:4;38302:12;38333:18;38323:81;;38389:4;38381:6;38377:17;38367:27;;38323:81;38451:2;38443:6;38440:14;38420:18;38417:38;38414:84;;;38470:18;;:::i;:::-;38414:84;38235:269;38184:320;;;:::o;38510:281::-;38593:27;38615:4;38593:27;:::i;:::-;38585:6;38581:40;38723:6;38711:10;38708:22;38687:18;38675:10;38672:34;38669:62;38666:88;;;38734:18;;:::i;:::-;38666:88;38774:10;38770:2;38763:22;38553:238;38510:281;;:::o;38797:233::-;38836:3;38859:24;38877:5;38859:24;:::i;:::-;38850:33;;38905:66;38898:5;38895:77;38892:103;;;38975:18;;:::i;:::-;38892:103;39022:1;39015:5;39011:13;39004:20;;38797:233;;;:::o;39036:176::-;39068:1;39085:20;39103:1;39085:20;:::i;:::-;39080:25;;39119:20;39137:1;39119:20;:::i;:::-;39114:25;;39158:1;39148:35;;39163:18;;:::i;:::-;39148:35;39204:1;39201;39197:9;39192:14;;39036:176;;;;:::o;39218:180::-;39266:77;39263:1;39256:88;39363:4;39360:1;39353:15;39387:4;39384:1;39377:15;39404:180;39452:77;39449:1;39442:88;39549:4;39546:1;39539:15;39573:4;39570:1;39563:15;39590:180;39638:77;39635:1;39628:88;39735:4;39732:1;39725:15;39759:4;39756:1;39749:15;39776:180;39824:77;39821:1;39814:88;39921:4;39918:1;39911:15;39945:4;39942:1;39935:15;39962:180;40010:77;40007:1;40000:88;40107:4;40104:1;40097:15;40131:4;40128:1;40121:15;40148:183;40183:3;40221:1;40203:16;40200:23;40197:128;;;40259:1;40256;40253;40238:23;40281:34;40312:1;40306:8;40281:34;:::i;:::-;40274:41;;40197:128;40148:183;:::o;40337:117::-;40446:1;40443;40436:12;40460:117;40569:1;40566;40559:12;40583:117;40692:1;40689;40682:12;40706:117;40815:1;40812;40805:12;40829:117;40938:1;40935;40928:12;40952:102;40993:6;41044:2;41040:7;41035:2;41028:5;41024:14;41020:28;41010:38;;40952:102;;;:::o;41060:106::-;41104:8;41153:5;41148:3;41144:15;41123:36;;41060:106;;;:::o;41172:239::-;41312:34;41308:1;41300:6;41296:14;41289:58;41381:22;41376:2;41368:6;41364:15;41357:47;41172:239;:::o;41417:227::-;41557:34;41553:1;41545:6;41541:14;41534:58;41626:10;41621:2;41613:6;41609:15;41602:35;41417:227;:::o;41650:181::-;41790:33;41786:1;41778:6;41774:14;41767:57;41650:181;:::o;41837:230::-;41977:34;41973:1;41965:6;41961:14;41954:58;42046:13;42041:2;42033:6;42029:15;42022:38;41837:230;:::o;42073:225::-;42213:34;42209:1;42201:6;42197:14;42190:58;42282:8;42277:2;42269:6;42265:15;42258:33;42073:225;:::o;42304:228::-;42444:34;42440:1;42432:6;42428:14;42421:58;42513:11;42508:2;42500:6;42496:15;42489:36;42304:228;:::o;42538:224::-;42678:34;42674:1;42666:6;42662:14;42655:58;42747:7;42742:2;42734:6;42730:15;42723:32;42538:224;:::o;42768:237::-;42908:34;42904:1;42896:6;42892:14;42885:58;42977:20;42972:2;42964:6;42960:15;42953:45;42768:237;:::o;43011:229::-;43151:34;43147:1;43139:6;43135:14;43128:58;43220:12;43215:2;43207:6;43203:15;43196:37;43011:229;:::o;43246:155::-;43386:7;43382:1;43374:6;43370:14;43363:31;43246:155;:::o;43407:182::-;43547:34;43543:1;43535:6;43531:14;43524:58;43407:182;:::o;43595:228::-;43735:34;43731:1;43723:6;43719:14;43712:58;43804:11;43799:2;43791:6;43787:15;43780:36;43595:228;:::o;43829:::-;43969:34;43965:1;43957:6;43953:14;43946:58;44038:11;44033:2;44025:6;44021:15;44014:36;43829:228;:::o;44063:227::-;44203:34;44199:1;44191:6;44187:14;44180:58;44272:10;44267:2;44259:6;44255:15;44248:35;44063:227;:::o;44296:220::-;44436:34;44432:1;44424:6;44420:14;44413:58;44505:3;44500:2;44492:6;44488:15;44481:28;44296:220;:::o;44522:711::-;44561:3;44599:4;44581:16;44578:26;44575:39;;;44607:5;;44575:39;44636:20;;:::i;:::-;44711:1;44693:16;44689:24;44686:1;44680:4;44665:49;44744:4;44738:11;44843:16;44836:4;44828:6;44824:17;44821:39;44788:18;44780:6;44777:30;44761:113;44758:146;;;44889:5;;;;44758:146;44935:6;44929:4;44925:17;44971:3;44965:10;44998:18;44990:6;44987:30;44984:43;;;45020:5;;;;;;44984:43;45068:6;45061:4;45056:3;45052:14;45048:27;45127:1;45109:16;45105:24;45099:4;45095:35;45090:3;45087:44;45084:57;;;45134:5;;;;;;;45084:57;45151;45199:6;45193:4;45189:17;45181:6;45177:30;45171:4;45151:57;:::i;:::-;45224:3;45217:10;;44565:668;;;;;44522:711;;:::o;45239:122::-;45312:24;45330:5;45312:24;:::i;:::-;45305:5;45302:35;45292:63;;45351:1;45348;45341:12;45292:63;45239:122;:::o;45367:116::-;45437:21;45452:5;45437:21;:::i;:::-;45430:5;45427:32;45417:60;;45473:1;45470;45463:12;45417:60;45367:116;:::o;45489:120::-;45561:23;45578:5;45561:23;:::i;:::-;45554:5;45551:34;45541:62;;45599:1;45596;45589:12;45541:62;45489:120;:::o;45615:122::-;45688:24;45706:5;45688:24;:::i;:::-;45681:5;45678:35;45668:63;;45727:1;45724;45717:12;45668:63;45615:122;:::o

Swarm Source

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