ETH Price: $3,361.05 (-0.67%)
Gas: 1 Gwei

Token

Animonkeys (ANMK)
 

Overview

Max Total Supply

2,500 ANMK

Holders

833

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
chumwithnodick.eth
Balance
2 ANMK
0xB2Aadf6BFc0a5213acb9c279394B46F50aEa65a3
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Animonkeys is a generative collection of 2500 tokens divided into 5 groups of elements - earth, air, water, fire, and lightning. It is an Animetas early adopters token that will have utility in the future.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Animonkeys

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

File 1 of 2: Animonkeys.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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;
    }
}

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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


pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant alphabet = "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] = alphabet[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }

}

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) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

pragma solidity ^0.8.0;

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

        uint256 size;
        // solhint-disable-next-line no-inline-assembly
        assembly { size := extcodesize(account) }
        return size > 0;
    }

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

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

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

                // solhint-disable-next-line no-inline-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}



pragma solidity ^0.8.0;

/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {

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

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

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

pragma solidity ^0.8.0;

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



pragma solidity ^0.8.0;

/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {

    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

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

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

pragma solidity ^0.8.0;

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Base URI for computing {tokenURI}. Empty by default, can be overriden
     * in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

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 () {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), 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 {
        emit OwnershipTransferred(_owner, address(0));
        _owner = 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");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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



pragma solidity ^0.8.0;

import "./diesel.sol";

contract Animonkeys is ERC721Enumerable, Ownable, usingProvable {

    using Strings for uint256;

    string _baseTokenURI;
    uint256 private _reserved = 50;
    uint256 private _price = 0.02 ether;
    bool public _paused = true;
    
    mapping (bytes32 => uint256) requests;
    
    string public requestStatus;
    
    // Optional mapping for token URIs
    mapping (uint256 => string) private _tokenURIs;

    event LogNewProvableQuery(string description);
    event LogNewRequestStatus(string status);
    event PermanentURI(string _value, uint256 indexed _id);

    // withdraw addresses
    address t1 = 0xA422bfFF5dABa6eeeFAFf84Debf609Edf0868C5f;
    address t2 = 0xb5967DE6328290103614f74Da0C7fa5FcD9BF08A;

    // 2500 Animonkeys in total
    constructor(string memory baseURI) ERC721("Animonkeys", "ANMK")  {
        setBaseURI(baseURI);
        //team gets the first 2 Animonkeys
        // _safeMint( t1, 0);
        // update(0);
        // _safeMint( t2, 1);
        // update(1);
    }
    
    function mint(uint256 num) public payable {
        uint256 supply = totalSupply();
        require( !_paused,                              "Sale paused" );
        require( num < 2,                              "You can mint a maximum of 1 Animonkey" );
        require( supply + num < 2501 - _reserved,      "Exceeds maximum Animonkeys supply" );
        require( msg.value >= _price * num,             "Ether sent is not correct" );

        for(uint256 i; i < num; i++){
            _safeMint( msg.sender, supply + i);
            update(supply + i);
        }
    }

    function walletOfOwner(address _owner) public view returns(uint256[] memory) {
        uint256 tokenCount = balanceOf(_owner);

        uint256[] memory tokensId = new uint256[](tokenCount);
        for(uint256 i; i < tokenCount; i++){
            tokensId[i] = tokenOfOwnerByIndex(_owner, i);
        }
        return tokensId;
    }

    // Just in case Eth does some crazy stuff
    function setPrice(uint256 _newPrice) public onlyOwner() {
        _price = _newPrice;
    }

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

    function setBaseURI(string memory baseURI) public onlyOwner {
        _baseTokenURI = baseURI;
    }
    
    function getPrice() public view returns (uint256){
        return _price;
    }
    
    function _setTokenURI(uint256 tokenId, string memory _tokenURI) internal virtual {
            require(_exists(tokenId), "ERC721Metadata: URI set of nonexistent token");
            _tokenURIs[tokenId] = _tokenURI;
    }
    
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
            require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

            string memory _tokenURI = _tokenURIs[tokenId];
            string memory base = _baseURI();
            
            // If there is no base URI, return the token URI.
            if (bytes(base).length == 0) {
                return _tokenURI;
            }
            // If both are set, concatenate the baseURI and tokenURI (via abi.encodePacked).
            if (bytes(_tokenURI).length > 0) {
                return string(abi.encodePacked(base, _tokenURI));
            }
            // If there is a baseURI but no tokenURI, concatenate the tokenID to the baseURI.
            return string(abi.encodePacked(base, tokenId.toString()));
    }
    
    function giveAway(address _to, uint256 _amount) external onlyOwner() {
        require( _amount <= _reserved, "Exceeds reserved Animonkeys supply" );

        uint256 supply = totalSupply();
        for(uint256 i; i < _amount; i++){
            _safeMint( _to, supply + i );
            update(supply + i);
        }

        _reserved -= _amount;
    }

    function pause(bool val) public onlyOwner {
        _paused = val;
    }

    function withdrawAll() public payable onlyOwner {
        uint256 _each = address(this).balance / 2;
        require(payable(t1).send(_each));
        require(payable(t2).send(_each));
    }
    
    
    function __callback(
        bytes32 myid, string memory _result
    )
        public override
    {
        require(msg.sender == provable_cbAddress());
        
        _setTokenURI(requests[myid], _result);
        
        emit PermanentURI(_result, requests[myid]);

        // emit LogNewRequestStatus(requestStatus);
    }
    
    function update(uint256 tokenNum)
        public
        payable
    {
        
        emit LogNewProvableQuery("Provable query was sent, standing by for the answer...");
        // Query not encrypted: provable_query("URL","json(https://api.postcodes.io/postcodes).status",'{"postcodes" : ["OX49 5NU", "M32 0JG", "NE30 1DP"]}');
        bytes32 queryId = provable_query("URL", string(abi.encodePacked("json(https://www.animetas.io/api/metadata/animonkeys/", uint2str(tokenNum), ").result")), 
"BHekVRqr+iX/62X1FVzAToHYGT83vxXfo3KXhoW9AAhjoMLNOxHWLuZJnGbq28FpiGKKTpcfujkdzPRH9KOCcgdgqNdaeMmDpPeVstq84IhzzsMrMbNP673vCU9arETj8kszNGLRALmcty3jVSPggJqFhJ9qF9noiIB8ePOwa7s2E9yT9FUy5t/juxdXGc55PI93tHWLUdopaIKjOAgLr2Tsug3OiGyyH2VBB3Q8vTI6XybPppH6ew+F2vAgVss=");
        requests[queryId] = tokenNum;
    }
}

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

// <provableAPI>
/*
Copyright (c) 2015-2016 Oraclize SRL
Copyright (c) 2016-2019 Oraclize LTD
Copyright (c) 2019-2020 Provable Things Limited
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
*/
pragma solidity ^0.8.0; // Incompatible compiler version - please select a compiler within the stated pragma range, or use a different version of the provableAPI!

// Dummy contract only used to emit to end-user they are using wrong solc
abstract contract solcChecker {
/* INCOMPATIBLE SOLC: import the following instead: "github.com/oraclize/ethereum-api/oraclizeAPI_0.4.sol" */ function f(bytes calldata x) virtual external;
}

interface ProvableI {

    function cbAddress() external returns (address _cbAddress);
    function setProofType(bytes1 _proofType) external;
    function setCustomGasPrice(uint _gasPrice) external;
    function getPrice(string calldata _datasource) external returns (uint _dsprice);
    function randomDS_getSessionPubKeyHash() external view returns (bytes32 _sessionKeyHash);
    function getPrice(string calldata _datasource, uint _gasLimit)  external returns (uint _dsprice);
    function queryN(uint _timestamp, string calldata _datasource, bytes calldata _argN) external payable returns (bytes32 _id);
    function query(uint _timestamp, string calldata _datasource, string calldata _arg) external payable returns (bytes32 _id);
    function query2(uint _timestamp, string calldata _datasource, string calldata _arg1, string calldata _arg2) external payable returns (bytes32 _id);
    function query_withGasLimit(uint _timestamp, string calldata _datasource, string calldata _arg, uint _gasLimit) external payable returns (bytes32 _id);
    function queryN_withGasLimit(uint _timestamp, string calldata _datasource, bytes calldata _argN, uint _gasLimit) external payable returns (bytes32 _id);
    function query2_withGasLimit(uint _timestamp, string calldata _datasource, string calldata _arg1, string calldata _arg2, uint _gasLimit) external payable returns (bytes32 _id);
}

interface OracleAddrResolverI {
    function getAddress() external returns (address _address);
}
/*
Begin solidity-cborutils
https://github.com/smartcontractkit/solidity-cborutils
MIT License
Copyright (c) 2018 SmartContract ChainLink, Ltd.
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
*/
library Buffer {

    struct buffer {
        bytes buf;
        uint capacity;
    }

    function init(buffer memory _buf, uint _capacity) internal pure {
        uint capacity = _capacity;
        if (capacity % 32 != 0) {
            capacity += 32 - (capacity % 32);
        }
        _buf.capacity = capacity; // Allocate space for the buffer data
        assembly {
            let ptr := mload(0x40)
            mstore(_buf, ptr)
            mstore(ptr, 0)
            mstore(0x40, add(ptr, capacity))
        }
    }

    function resize(buffer memory _buf, uint _capacity) private pure {
        bytes memory oldbuf = _buf.buf;
        init(_buf, _capacity);
        append(_buf, oldbuf);
    }

    function max(uint _a, uint _b) private pure returns (uint _max) {
        if (_a > _b) {
            return _a;
        }
        return _b;
    }
    /**
      * @dev Appends a byte array to the end of the buffer. Resizes if doing so
      *      would exceed the capacity of the buffer.
      * @param _buf The buffer to append to.
      * @param _data The data to append.
      * @return _buffer The original buffer.
      *
      */
    function append(buffer memory _buf, bytes memory _data) internal pure returns (buffer memory _buffer) {
        if (_data.length + _buf.buf.length > _buf.capacity) {
            resize(_buf, max(_buf.capacity, _data.length) * 2);
        }
        uint dest;
        uint src;
        uint len = _data.length;
        assembly {
            let bufptr := mload(_buf) // Memory address of the buffer data
            let buflen := mload(bufptr) // Length of existing buffer data
            dest := add(add(bufptr, buflen), 32) // Start address = buffer address + buffer length + sizeof(buffer length)
            mstore(bufptr, add(buflen, mload(_data))) // Update buffer length
            src := add(_data, 32)
        }
        for(; len >= 32; len -= 32) { // Copy word-length chunks while possible
            assembly {
                mstore(dest, mload(src))
            }
            dest += 32;
            src += 32;
        }
        uint mask = 256 ** (32 - len) - 1; // Copy remaining bytes
        assembly {
            let srcpart := and(mload(src), not(mask))
            let destpart := and(mload(dest), mask)
            mstore(dest, or(destpart, srcpart))
        }
        return _buf;
    }
    /**
      *
      * @dev Appends a byte to the end of the buffer. Resizes if doing so would
      * exceed the capacity of the buffer.
      * @param _buf The buffer to append to.
      * @param _data The data to append.
      *
      */
    function append(buffer memory _buf, uint8 _data) internal pure {
        if (_buf.buf.length + 1 > _buf.capacity) {
            resize(_buf, _buf.capacity * 2);
        }
        assembly {
            let bufptr := mload(_buf) // Memory address of the buffer data
            let buflen := mload(bufptr) // Length of existing buffer data
            let dest := add(add(bufptr, buflen), 32) // Address = buffer address + buffer length + sizeof(buffer length)
            mstore8(dest, _data)
            mstore(bufptr, add(buflen, 1)) // Update buffer length
        }
    }
    /**
      *
      * @dev Appends a byte to the end of the buffer. Resizes if doing so would
      * exceed the capacity of the buffer.
      * @param _buf The buffer to append to.
      * @param _data The data to append.
      * @return _buffer The original buffer.
      *
      */
    function appendInt(buffer memory _buf, uint _data, uint _len) internal pure returns (buffer memory _buffer) {
        if (_len + _buf.buf.length > _buf.capacity) {
            resize(_buf, max(_buf.capacity, _len) * 2);
        }
        uint mask = 256 ** _len - 1;
        assembly {
            let bufptr := mload(_buf) // Memory address of the buffer data
            let buflen := mload(bufptr) // Length of existing buffer data
            let dest := add(add(bufptr, buflen), _len) // Address = buffer address + buffer length + sizeof(buffer length) + len
            mstore(dest, or(and(mload(dest), not(mask)), _data))
            mstore(bufptr, add(buflen, _len)) // Update buffer length
        }
        return _buf;
    }
}

library CBOR {

    using Buffer for Buffer.buffer;

    uint8 private constant MAJOR_TYPE_INT = 0;
    uint8 private constant MAJOR_TYPE_MAP = 5;
    uint8 private constant MAJOR_TYPE_BYTES = 2;
    uint8 private constant MAJOR_TYPE_ARRAY = 4;
    uint8 private constant MAJOR_TYPE_STRING = 3;
    uint8 private constant MAJOR_TYPE_NEGATIVE_INT = 1;
    uint8 private constant MAJOR_TYPE_CONTENT_FREE = 7;

    function encodeType(Buffer.buffer memory _buf, uint8 _major, uint _value) private pure {
        if (_value <= 23) {
            _buf.append(uint8((_major << 5) | _value));
        } else if (_value <= 0xFF) {
            _buf.append(uint8((_major << 5) | 24));
            _buf.appendInt(_value, 1);
        } else if (_value <= 0xFFFF) {
            _buf.append(uint8((_major << 5) | 25));
            _buf.appendInt(_value, 2);
        } else if (_value <= 0xFFFFFFFF) {
            _buf.append(uint8((_major << 5) | 26));
            _buf.appendInt(_value, 4);
        } else if (_value <= 0xFFFFFFFFFFFFFFFF) {
            _buf.append(uint8((_major << 5) | 27));
            _buf.appendInt(_value, 8);
        }
    }

    function encodeIndefiniteLengthType(Buffer.buffer memory _buf, uint8 _major) private pure {
        _buf.append(uint8((_major << 5) | 31));
    }

    function encodeUInt(Buffer.buffer memory _buf, uint _value) internal pure {
        encodeType(_buf, MAJOR_TYPE_INT, _value);
    }

    function encodeInt(Buffer.buffer memory _buf, int _value) internal pure {
        if (_value >= 0) {
            encodeType(_buf, MAJOR_TYPE_INT, uint(_value));
        } else {
            encodeType(_buf, MAJOR_TYPE_NEGATIVE_INT, uint(-1 - _value));
        }
    }

    function encodeBytes(Buffer.buffer memory _buf, bytes memory _value) internal pure {
        encodeType(_buf, MAJOR_TYPE_BYTES, _value.length);
        _buf.append(_value);
    }

    function encodeString(Buffer.buffer memory _buf, string memory _value) internal pure {
        encodeType(_buf, MAJOR_TYPE_STRING, bytes(_value).length);
        _buf.append(bytes(_value));
    }

    function startArray(Buffer.buffer memory _buf) internal pure {
        encodeIndefiniteLengthType(_buf, MAJOR_TYPE_ARRAY);
    }

    function startMap(Buffer.buffer memory _buf) internal pure {
        encodeIndefiniteLengthType(_buf, MAJOR_TYPE_MAP);
    }

    function endSequence(Buffer.buffer memory _buf) internal pure {
        encodeIndefiniteLengthType(_buf, MAJOR_TYPE_CONTENT_FREE);
    }
}
/*
End solidity-cborutils
*/
contract usingProvable {

    using CBOR for Buffer.buffer;

    ProvableI provable;
    OracleAddrResolverI OAR;

    uint constant day = 60 * 60 * 24;
    uint constant week = 60 * 60 * 24 * 7;
    uint constant month = 60 * 60 * 24 * 30;

    bytes1 constant proofType_NONE = 0x00;
    bytes1 constant proofType_Ledger = 0x30;
    bytes1 constant proofType_Native = 0xF0;
    bytes1 constant proofStorage_IPFS = 0x01;
    bytes1 constant proofType_Android = 0x40;
    bytes1 constant proofType_TLSNotary = 0x10;

    string provable_network_name;
    uint8 constant networkID_auto = 0;
    uint8 constant networkID_morden = 2;
    uint8 constant networkID_mainnet = 1;
    uint8 constant networkID_testnet = 2;
    uint8 constant networkID_consensys = 161;

    mapping(bytes32 => bytes32) provable_randomDS_args;
    mapping(bytes32 => bool) provable_randomDS_sessionKeysHashVerified;

    modifier provableAPI {
        if ((address(OAR) == address(0)) || (getCodeSize(address(OAR)) == 0)) {
            provable_setNetwork(networkID_auto);
        }
        if (address(provable) != OAR.getAddress()) {
            provable = ProvableI(OAR.getAddress());
        }
        _;
    }

    modifier provable_randomDS_proofVerify(bytes32 _queryId, string memory _result, bytes memory _proof) {
        // RandomDS Proof Step 1: The prefix has to match 'LP\x01' (Ledger Proof version 1)
        require((_proof[0] == "L") && (_proof[1] == "P") && (uint8(_proof[2]) == uint8(1)));
        bool proofVerified = provable_randomDS_proofVerify__main(_proof, _queryId, bytes(_result), provable_getNetworkName());
        require(proofVerified);
        _;
    }

    function provable_setNetwork(uint8 _networkID) internal returns (bool _networkSet) {
      _networkID; // NOTE: Silence the warning and remain backwards compatible
      return provable_setNetwork();
    }

    function provable_setNetworkName(string memory _network_name) internal {
        provable_network_name = _network_name;
    }

    function provable_getNetworkName() internal view returns (string memory _networkName) {
        return provable_network_name;
    }

    function provable_setNetwork() internal returns (bool _networkSet) {
        if (getCodeSize(0x1d3B2638a7cC9f2CB3D298A3DA7a90B67E5506ed) > 0) { //mainnet
            OAR = OracleAddrResolverI(0x1d3B2638a7cC9f2CB3D298A3DA7a90B67E5506ed);
            provable_setNetworkName("eth_mainnet");
            return true;
        }
        if (getCodeSize(0xc03A2615D5efaf5F49F60B7BB6583eaec212fdf1) > 0) { //ropsten testnet
            OAR = OracleAddrResolverI(0xc03A2615D5efaf5F49F60B7BB6583eaec212fdf1);
            provable_setNetworkName("eth_ropsten3");
            return true;
        }
        if (getCodeSize(0xB7A07BcF2Ba2f2703b24C0691b5278999C59AC7e) > 0) { //kovan testnet
            OAR = OracleAddrResolverI(0xB7A07BcF2Ba2f2703b24C0691b5278999C59AC7e);
            provable_setNetworkName("eth_kovan");
            return true;
        }
        if (getCodeSize(0x146500cfd35B22E4A392Fe0aDc06De1a1368Ed48) > 0) { //rinkeby testnet
            OAR = OracleAddrResolverI(0x146500cfd35B22E4A392Fe0aDc06De1a1368Ed48);
            provable_setNetworkName("eth_rinkeby");
            return true;
        }
        if (getCodeSize(0xa2998EFD205FB9D4B4963aFb70778D6354ad3A41) > 0) { //goerli testnet
            OAR = OracleAddrResolverI(0xa2998EFD205FB9D4B4963aFb70778D6354ad3A41);
            provable_setNetworkName("eth_goerli");
            return true;
        }
        if (getCodeSize(0x6f485C8BF6fc43eA212E93BBF8ce046C7f1cb475) > 0) { //ethereum-bridge
            OAR = OracleAddrResolverI(0x6f485C8BF6fc43eA212E93BBF8ce046C7f1cb475);
            return true;
        }
        if (getCodeSize(0x20e12A1F859B3FeaE5Fb2A0A32C18F5a65555bBF) > 0) { //ether.camp ide
            OAR = OracleAddrResolverI(0x20e12A1F859B3FeaE5Fb2A0A32C18F5a65555bBF);
            return true;
        }
        if (getCodeSize(0x51efaF4c8B3C9AfBD5aB9F4bbC82784Ab6ef8fAA) > 0) { //browser-solidity
            OAR = OracleAddrResolverI(0x51efaF4c8B3C9AfBD5aB9F4bbC82784Ab6ef8fAA);
            return true;
        }
        return false;
    }
    /**
     * @dev The following `__callback` functions are just placeholders ideally
     *      meant to be defined in child contract when proofs are used.
     *      The function bodies simply silence compiler warnings.
     */
    function __callback(bytes32 _myid, string memory _result) virtual public {
        __callback(_myid, _result, new bytes(0));
    }

    function __callback(bytes32 _myid, string memory _result, bytes memory _proof) virtual public {
      _myid; _result; _proof;
      provable_randomDS_args[bytes32(0)] = bytes32(0);
    }

    function provable_getPrice(string memory _datasource) provableAPI internal returns (uint _queryPrice) {
        return provable.getPrice(_datasource);
    }

    function provable_getPrice(string memory _datasource, uint _gasLimit) provableAPI internal returns (uint _queryPrice) {
        return provable.getPrice(_datasource, _gasLimit);
    }

    function provable_query(string memory _datasource, string memory _arg) provableAPI internal returns (bytes32 _id) {
        uint price = provable.getPrice(_datasource);
        if (price > 1 ether + tx.gasprice * 200000) {
            return 0; // Unexpectedly high price
        }
        return provable.query{value: price}(0, _datasource, _arg);
    }

    function provable_query(uint _timestamp, string memory _datasource, string memory _arg) provableAPI internal returns (bytes32 _id) {
        uint price = provable.getPrice(_datasource);
        if (price > 1 ether + tx.gasprice * 200000) {
            return 0; // Unexpectedly high price
        }
        return provable.query{value: price}(_timestamp, _datasource, _arg);
    }

    function provable_query(uint _timestamp, string memory _datasource, string memory _arg, uint _gasLimit) provableAPI internal returns (bytes32 _id) {
        uint price = provable.getPrice(_datasource,_gasLimit);
        if (price > 1 ether + tx.gasprice * _gasLimit) {
            return 0; // Unexpectedly high price
        }
        return provable.query_withGasLimit{value: price}(_timestamp, _datasource, _arg, _gasLimit);
    }

    function provable_query(string memory _datasource, string memory _arg, uint _gasLimit) provableAPI internal returns (bytes32 _id) {
        uint price = provable.getPrice(_datasource, _gasLimit);
        if (price > 1 ether + tx.gasprice * _gasLimit) {
           return 0; // Unexpectedly high price
        }
        return provable.query_withGasLimit{value: price}(0, _datasource, _arg, _gasLimit);
    }

    function provable_query(string memory _datasource, string memory _arg1, string memory _arg2) provableAPI internal returns (bytes32 _id) {
        uint price = provable.getPrice(_datasource);
        if (price > 1 ether + tx.gasprice * 200000) {
            return 0; // Unexpectedly high price
        }
        return provable.query2{value: price}(0, _datasource, _arg1, _arg2);
    }

    function provable_query(uint _timestamp, string memory _datasource, string memory _arg1, string memory _arg2) provableAPI internal returns (bytes32 _id) {
        uint price = provable.getPrice(_datasource);
        if (price > 1 ether + tx.gasprice * 200000) {
            return 0; // Unexpectedly high price
        }
        return provable.query2{value: price}(_timestamp, _datasource, _arg1, _arg2);
    }

    function provable_query(uint _timestamp, string memory _datasource, string memory _arg1, string memory _arg2, uint _gasLimit) provableAPI internal returns (bytes32 _id) {
        uint price = provable.getPrice(_datasource, _gasLimit);
        if (price > 1 ether + tx.gasprice * _gasLimit) {
            return 0; // Unexpectedly high price
        }
        return provable.query2_withGasLimit{value: price}(_timestamp, _datasource, _arg1, _arg2, _gasLimit);
    }

    function provable_query(string memory _datasource, string memory _arg1, string memory _arg2, uint _gasLimit) provableAPI internal returns (bytes32 _id) {
        uint price = provable.getPrice(_datasource, _gasLimit);
        if (price > 1 ether + tx.gasprice * _gasLimit) {
            return 0; // Unexpectedly high price
        }
        return provable.query2_withGasLimit{value: price}(0, _datasource, _arg1, _arg2, _gasLimit);
    }

    function provable_query(string memory _datasource, string[] memory _argN) provableAPI internal returns (bytes32 _id) {
        uint price = provable.getPrice(_datasource);
        if (price > 1 ether + tx.gasprice * 200000) {
            return 0; // Unexpectedly high price
        }
        bytes memory args = stra2cbor(_argN);
        return provable.queryN{value: price}(0, _datasource, args);
    }

    function provable_query(uint _timestamp, string memory _datasource, string[] memory _argN) provableAPI internal returns (bytes32 _id) {
        uint price = provable.getPrice(_datasource);
        if (price > 1 ether + tx.gasprice * 200000) {
            return 0; // Unexpectedly high price
        }
        bytes memory args = stra2cbor(_argN);
        return provable.queryN{value: price}(_timestamp, _datasource, args);
    }

    function provable_query(uint _timestamp, string memory _datasource, string[] memory _argN, uint _gasLimit) provableAPI internal returns (bytes32 _id) {
        uint price = provable.getPrice(_datasource, _gasLimit);
        if (price > 1 ether + tx.gasprice * _gasLimit) {
            return 0; // Unexpectedly high price
        }
        bytes memory args = stra2cbor(_argN);
        return provable.queryN_withGasLimit{value: price}(_timestamp, _datasource, args, _gasLimit);
    }

    function provable_query(string memory _datasource, string[] memory _argN, uint _gasLimit) provableAPI internal returns (bytes32 _id) {
        uint price = provable.getPrice(_datasource, _gasLimit);
        if (price > 1 ether + tx.gasprice * _gasLimit) {
            return 0; // Unexpectedly high price
        }
        bytes memory args = stra2cbor(_argN);
        return provable.queryN_withGasLimit{value: price}(0, _datasource, args, _gasLimit);
    }

    function provable_query(string memory _datasource, string[1] memory _args) provableAPI internal returns (bytes32 _id) {
        string[] memory dynargs = new string[](1);
        dynargs[0] = _args[0];
        return provable_query(_datasource, dynargs);
    }

    function provable_query(uint _timestamp, string memory _datasource, string[1] memory _args) provableAPI internal returns (bytes32 _id) {
        string[] memory dynargs = new string[](1);
        dynargs[0] = _args[0];
        return provable_query(_timestamp, _datasource, dynargs);
    }

    function provable_query(uint _timestamp, string memory _datasource, string[1] memory _args, uint _gasLimit) provableAPI internal returns (bytes32 _id) {
        string[] memory dynargs = new string[](1);
        dynargs[0] = _args[0];
        return provable_query(_timestamp, _datasource, dynargs, _gasLimit);
    }

    function provable_query(string memory _datasource, string[1] memory _args, uint _gasLimit) provableAPI internal returns (bytes32 _id) {
        string[] memory dynargs = new string[](1);
        dynargs[0] = _args[0];
        return provable_query(_datasource, dynargs, _gasLimit);
    }

    function provable_query(string memory _datasource, string[2] memory _args) provableAPI internal returns (bytes32 _id) {
        string[] memory dynargs = new string[](2);
        dynargs[0] = _args[0];
        dynargs[1] = _args[1];
        return provable_query(_datasource, dynargs);
    }

    function provable_query(uint _timestamp, string memory _datasource, string[2] memory _args) provableAPI internal returns (bytes32 _id) {
        string[] memory dynargs = new string[](2);
        dynargs[0] = _args[0];
        dynargs[1] = _args[1];
        return provable_query(_timestamp, _datasource, dynargs);
    }

    function provable_query(uint _timestamp, string memory _datasource, string[2] memory _args, uint _gasLimit) provableAPI internal returns (bytes32 _id) {
        string[] memory dynargs = new string[](2);
        dynargs[0] = _args[0];
        dynargs[1] = _args[1];
        return provable_query(_timestamp, _datasource, dynargs, _gasLimit);
    }

    function provable_query(string memory _datasource, string[2] memory _args, uint _gasLimit) provableAPI internal returns (bytes32 _id) {
        string[] memory dynargs = new string[](2);
        dynargs[0] = _args[0];
        dynargs[1] = _args[1];
        return provable_query(_datasource, dynargs, _gasLimit);
    }

    function provable_query(string memory _datasource, string[3] memory _args) provableAPI internal returns (bytes32 _id) {
        string[] memory dynargs = new string[](3);
        dynargs[0] = _args[0];
        dynargs[1] = _args[1];
        dynargs[2] = _args[2];
        return provable_query(_datasource, dynargs);
    }

    function provable_query(uint _timestamp, string memory _datasource, string[3] memory _args) provableAPI internal returns (bytes32 _id) {
        string[] memory dynargs = new string[](3);
        dynargs[0] = _args[0];
        dynargs[1] = _args[1];
        dynargs[2] = _args[2];
        return provable_query(_timestamp, _datasource, dynargs);
    }

    function provable_query(uint _timestamp, string memory _datasource, string[3] memory _args, uint _gasLimit) provableAPI internal returns (bytes32 _id) {
        string[] memory dynargs = new string[](3);
        dynargs[0] = _args[0];
        dynargs[1] = _args[1];
        dynargs[2] = _args[2];
        return provable_query(_timestamp, _datasource, dynargs, _gasLimit);
    }

    function provable_query(string memory _datasource, string[3] memory _args, uint _gasLimit) provableAPI internal returns (bytes32 _id) {
        string[] memory dynargs = new string[](3);
        dynargs[0] = _args[0];
        dynargs[1] = _args[1];
        dynargs[2] = _args[2];
        return provable_query(_datasource, dynargs, _gasLimit);
    }

    function provable_query(string memory _datasource, string[4] memory _args) provableAPI internal returns (bytes32 _id) {
        string[] memory dynargs = new string[](4);
        dynargs[0] = _args[0];
        dynargs[1] = _args[1];
        dynargs[2] = _args[2];
        dynargs[3] = _args[3];
        return provable_query(_datasource, dynargs);
    }

    function provable_query(uint _timestamp, string memory _datasource, string[4] memory _args) provableAPI internal returns (bytes32 _id) {
        string[] memory dynargs = new string[](4);
        dynargs[0] = _args[0];
        dynargs[1] = _args[1];
        dynargs[2] = _args[2];
        dynargs[3] = _args[3];
        return provable_query(_timestamp, _datasource, dynargs);
    }

    function provable_query(uint _timestamp, string memory _datasource, string[4] memory _args, uint _gasLimit) provableAPI internal returns (bytes32 _id) {
        string[] memory dynargs = new string[](4);
        dynargs[0] = _args[0];
        dynargs[1] = _args[1];
        dynargs[2] = _args[2];
        dynargs[3] = _args[3];
        return provable_query(_timestamp, _datasource, dynargs, _gasLimit);
    }

    function provable_query(string memory _datasource, string[4] memory _args, uint _gasLimit) provableAPI internal returns (bytes32 _id) {
        string[] memory dynargs = new string[](4);
        dynargs[0] = _args[0];
        dynargs[1] = _args[1];
        dynargs[2] = _args[2];
        dynargs[3] = _args[3];
        return provable_query(_datasource, dynargs, _gasLimit);
    }

    function provable_query(string memory _datasource, string[5] memory _args) provableAPI internal returns (bytes32 _id) {
        string[] memory dynargs = new string[](5);
        dynargs[0] = _args[0];
        dynargs[1] = _args[1];
        dynargs[2] = _args[2];
        dynargs[3] = _args[3];
        dynargs[4] = _args[4];
        return provable_query(_datasource, dynargs);
    }

    function provable_query(uint _timestamp, string memory _datasource, string[5] memory _args) provableAPI internal returns (bytes32 _id) {
        string[] memory dynargs = new string[](5);
        dynargs[0] = _args[0];
        dynargs[1] = _args[1];
        dynargs[2] = _args[2];
        dynargs[3] = _args[3];
        dynargs[4] = _args[4];
        return provable_query(_timestamp, _datasource, dynargs);
    }

    function provable_query(uint _timestamp, string memory _datasource, string[5] memory _args, uint _gasLimit) provableAPI internal returns (bytes32 _id) {
        string[] memory dynargs = new string[](5);
        dynargs[0] = _args[0];
        dynargs[1] = _args[1];
        dynargs[2] = _args[2];
        dynargs[3] = _args[3];
        dynargs[4] = _args[4];
        return provable_query(_timestamp, _datasource, dynargs, _gasLimit);
    }

    function provable_query(string memory _datasource, string[5] memory _args, uint _gasLimit) provableAPI internal returns (bytes32 _id) {
        string[] memory dynargs = new string[](5);
        dynargs[0] = _args[0];
        dynargs[1] = _args[1];
        dynargs[2] = _args[2];
        dynargs[3] = _args[3];
        dynargs[4] = _args[4];
        return provable_query(_datasource, dynargs, _gasLimit);
    }

    function provable_query(string memory _datasource, bytes[] memory _argN) provableAPI internal returns (bytes32 _id) {
        uint price = provable.getPrice(_datasource);
        if (price > 1 ether + tx.gasprice * 200000) {
            return 0; // Unexpectedly high price
        }
        bytes memory args = ba2cbor(_argN);
        return provable.queryN{value: price}(0, _datasource, args);
    }

    function provable_query(uint _timestamp, string memory _datasource, bytes[] memory _argN) provableAPI internal returns (bytes32 _id) {
        uint price = provable.getPrice(_datasource);
        if (price > 1 ether + tx.gasprice * 200000) {
            return 0; // Unexpectedly high price
        }
        bytes memory args = ba2cbor(_argN);
        return provable.queryN{value: price}(_timestamp, _datasource, args);
    }

    function provable_query(uint _timestamp, string memory _datasource, bytes[] memory _argN, uint _gasLimit) provableAPI internal returns (bytes32 _id) {
        uint price = provable.getPrice(_datasource, _gasLimit);
        if (price > 1 ether + tx.gasprice * _gasLimit) {
            return 0; // Unexpectedly high price
        }
        bytes memory args = ba2cbor(_argN);
        return provable.queryN_withGasLimit{value: price}(_timestamp, _datasource, args, _gasLimit);
    }

    function provable_query(string memory _datasource, bytes[] memory _argN, uint _gasLimit) provableAPI internal returns (bytes32 _id) {
        uint price = provable.getPrice(_datasource, _gasLimit);
        if (price > 1 ether + tx.gasprice * _gasLimit) {
            return 0; // Unexpectedly high price
        }
        bytes memory args = ba2cbor(_argN);
        return provable.queryN_withGasLimit{value: price}(0, _datasource, args, _gasLimit);
    }

    function provable_query(string memory _datasource, bytes[1] memory _args) provableAPI internal returns (bytes32 _id) {
        bytes[] memory dynargs = new bytes[](1);
        dynargs[0] = _args[0];
        return provable_query(_datasource, dynargs);
    }

    function provable_query(uint _timestamp, string memory _datasource, bytes[1] memory _args) provableAPI internal returns (bytes32 _id) {
        bytes[] memory dynargs = new bytes[](1);
        dynargs[0] = _args[0];
        return provable_query(_timestamp, _datasource, dynargs);
    }

    function provable_query(uint _timestamp, string memory _datasource, bytes[1] memory _args, uint _gasLimit) provableAPI internal returns (bytes32 _id) {
        bytes[] memory dynargs = new bytes[](1);
        dynargs[0] = _args[0];
        return provable_query(_timestamp, _datasource, dynargs, _gasLimit);
    }

    function provable_query(string memory _datasource, bytes[1] memory _args, uint _gasLimit) provableAPI internal returns (bytes32 _id) {
        bytes[] memory dynargs = new bytes[](1);
        dynargs[0] = _args[0];
        return provable_query(_datasource, dynargs, _gasLimit);
    }

    function provable_query(string memory _datasource, bytes[2] memory _args) provableAPI internal returns (bytes32 _id) {
        bytes[] memory dynargs = new bytes[](2);
        dynargs[0] = _args[0];
        dynargs[1] = _args[1];
        return provable_query(_datasource, dynargs);
    }

    function provable_query(uint _timestamp, string memory _datasource, bytes[2] memory _args) provableAPI internal returns (bytes32 _id) {
        bytes[] memory dynargs = new bytes[](2);
        dynargs[0] = _args[0];
        dynargs[1] = _args[1];
        return provable_query(_timestamp, _datasource, dynargs);
    }

    function provable_query(uint _timestamp, string memory _datasource, bytes[2] memory _args, uint _gasLimit) provableAPI internal returns (bytes32 _id) {
        bytes[] memory dynargs = new bytes[](2);
        dynargs[0] = _args[0];
        dynargs[1] = _args[1];
        return provable_query(_timestamp, _datasource, dynargs, _gasLimit);
    }

    function provable_query(string memory _datasource, bytes[2] memory _args, uint _gasLimit) provableAPI internal returns (bytes32 _id) {
        bytes[] memory dynargs = new bytes[](2);
        dynargs[0] = _args[0];
        dynargs[1] = _args[1];
        return provable_query(_datasource, dynargs, _gasLimit);
    }

    function provable_query(string memory _datasource, bytes[3] memory _args) provableAPI internal returns (bytes32 _id) {
        bytes[] memory dynargs = new bytes[](3);
        dynargs[0] = _args[0];
        dynargs[1] = _args[1];
        dynargs[2] = _args[2];
        return provable_query(_datasource, dynargs);
    }

    function provable_query(uint _timestamp, string memory _datasource, bytes[3] memory _args) provableAPI internal returns (bytes32 _id) {
        bytes[] memory dynargs = new bytes[](3);
        dynargs[0] = _args[0];
        dynargs[1] = _args[1];
        dynargs[2] = _args[2];
        return provable_query(_timestamp, _datasource, dynargs);
    }

    function provable_query(uint _timestamp, string memory _datasource, bytes[3] memory _args, uint _gasLimit) provableAPI internal returns (bytes32 _id) {
        bytes[] memory dynargs = new bytes[](3);
        dynargs[0] = _args[0];
        dynargs[1] = _args[1];
        dynargs[2] = _args[2];
        return provable_query(_timestamp, _datasource, dynargs, _gasLimit);
    }

    function provable_query(string memory _datasource, bytes[3] memory _args, uint _gasLimit) provableAPI internal returns (bytes32 _id) {
        bytes[] memory dynargs = new bytes[](3);
        dynargs[0] = _args[0];
        dynargs[1] = _args[1];
        dynargs[2] = _args[2];
        return provable_query(_datasource, dynargs, _gasLimit);
    }

    function provable_query(string memory _datasource, bytes[4] memory _args) provableAPI internal returns (bytes32 _id) {
        bytes[] memory dynargs = new bytes[](4);
        dynargs[0] = _args[0];
        dynargs[1] = _args[1];
        dynargs[2] = _args[2];
        dynargs[3] = _args[3];
        return provable_query(_datasource, dynargs);
    }

    function provable_query(uint _timestamp, string memory _datasource, bytes[4] memory _args) provableAPI internal returns (bytes32 _id) {
        bytes[] memory dynargs = new bytes[](4);
        dynargs[0] = _args[0];
        dynargs[1] = _args[1];
        dynargs[2] = _args[2];
        dynargs[3] = _args[3];
        return provable_query(_timestamp, _datasource, dynargs);
    }

    function provable_query(uint _timestamp, string memory _datasource, bytes[4] memory _args, uint _gasLimit) provableAPI internal returns (bytes32 _id) {
        bytes[] memory dynargs = new bytes[](4);
        dynargs[0] = _args[0];
        dynargs[1] = _args[1];
        dynargs[2] = _args[2];
        dynargs[3] = _args[3];
        return provable_query(_timestamp, _datasource, dynargs, _gasLimit);
    }

    function provable_query(string memory _datasource, bytes[4] memory _args, uint _gasLimit) provableAPI internal returns (bytes32 _id) {
        bytes[] memory dynargs = new bytes[](4);
        dynargs[0] = _args[0];
        dynargs[1] = _args[1];
        dynargs[2] = _args[2];
        dynargs[3] = _args[3];
        return provable_query(_datasource, dynargs, _gasLimit);
    }

    function provable_query(string memory _datasource, bytes[5] memory _args) provableAPI internal returns (bytes32 _id) {
        bytes[] memory dynargs = new bytes[](5);
        dynargs[0] = _args[0];
        dynargs[1] = _args[1];
        dynargs[2] = _args[2];
        dynargs[3] = _args[3];
        dynargs[4] = _args[4];
        return provable_query(_datasource, dynargs);
    }

    function provable_query(uint _timestamp, string memory _datasource, bytes[5] memory _args) provableAPI internal returns (bytes32 _id) {
        bytes[] memory dynargs = new bytes[](5);
        dynargs[0] = _args[0];
        dynargs[1] = _args[1];
        dynargs[2] = _args[2];
        dynargs[3] = _args[3];
        dynargs[4] = _args[4];
        return provable_query(_timestamp, _datasource, dynargs);
    }

    function provable_query(uint _timestamp, string memory _datasource, bytes[5] memory _args, uint _gasLimit) provableAPI internal returns (bytes32 _id) {
        bytes[] memory dynargs = new bytes[](5);
        dynargs[0] = _args[0];
        dynargs[1] = _args[1];
        dynargs[2] = _args[2];
        dynargs[3] = _args[3];
        dynargs[4] = _args[4];
        return provable_query(_timestamp, _datasource, dynargs, _gasLimit);
    }

    function provable_query(string memory _datasource, bytes[5] memory _args, uint _gasLimit) provableAPI internal returns (bytes32 _id) {
        bytes[] memory dynargs = new bytes[](5);
        dynargs[0] = _args[0];
        dynargs[1] = _args[1];
        dynargs[2] = _args[2];
        dynargs[3] = _args[3];
        dynargs[4] = _args[4];
        return provable_query(_datasource, dynargs, _gasLimit);
    }

    function provable_setProof(bytes1 _proofP) provableAPI internal {
        return provable.setProofType(_proofP);
    }


    function provable_cbAddress() provableAPI internal returns (address _callbackAddress) {
        return provable.cbAddress();
    }

    function getCodeSize(address _addr) view internal returns (uint _size) {
        assembly {
            _size := extcodesize(_addr)
        }
    }

    function provable_setCustomGasPrice(uint _gasPrice) provableAPI internal {
        return provable.setCustomGasPrice(_gasPrice);
    }

    function provable_randomDS_getSessionPubKeyHash() provableAPI internal returns (bytes32 _sessionKeyHash) {
        return provable.randomDS_getSessionPubKeyHash();
    }

    function parseAddr(string memory _a) internal pure returns (address _parsedAddress) {
        bytes memory tmp = bytes(_a);
        uint160 iaddr = 0;
        uint160 b1;
        uint160 b2;
        for (uint i = 2; i < 2 + 2 * 20; i += 2) {
            iaddr *= 256;
            b1 = uint160(uint8(tmp[i]));
            b2 = uint160(uint8(tmp[i + 1]));
            if ((b1 >= 97) && (b1 <= 102)) {
                b1 -= 87;
            } else if ((b1 >= 65) && (b1 <= 70)) {
                b1 -= 55;
            } else if ((b1 >= 48) && (b1 <= 57)) {
                b1 -= 48;
            }
            if ((b2 >= 97) && (b2 <= 102)) {
                b2 -= 87;
            } else if ((b2 >= 65) && (b2 <= 70)) {
                b2 -= 55;
            } else if ((b2 >= 48) && (b2 <= 57)) {
                b2 -= 48;
            }
            iaddr += (b1 * 16 + b2);
        }
        return address(iaddr);
    }

    function strCompare(string memory _a, string memory _b) internal pure returns (int _returnCode) {
        bytes memory a = bytes(_a);
        bytes memory b = bytes(_b);
        uint minLength = a.length;
        if (b.length < minLength) {
            minLength = b.length;
        }
        for (uint i = 0; i < minLength; i ++) {
            if (a[i] < b[i]) {
                return -1;
            } else if (a[i] > b[i]) {
                return 1;
            }
        }
        if (a.length < b.length) {
            return -1;
        } else if (a.length > b.length) {
            return 1;
        } else {
            return 0;
        }
    }

    function indexOf(string memory _haystack, string memory _needle) internal pure returns (int _returnCode) {
        bytes memory h = bytes(_haystack);
        bytes memory n = bytes(_needle);
        if (h.length < 1 || n.length < 1 || (n.length > h.length)) {
            return -1;
        } else if (h.length > (2 ** 128 - 1)) {
            return -1;
        } else {
            uint subindex = 0;
            for (uint i = 0; i < h.length; i++) {
                if (h[i] == n[0]) {
                    subindex = 1;
                    while(subindex < n.length && (i + subindex) < h.length && h[i + subindex] == n[subindex]) {
                        subindex++;
                    }
                    if (subindex == n.length) {
                        return int(i);
                    }
                }
            }
            return -1;
        }
    }

    function strConcat(string memory _a, string memory _b) internal pure returns (string memory _concatenatedString) {
        return strConcat(_a, _b, "", "", "");
    }

    function strConcat(string memory _a, string memory _b, string memory _c) internal pure returns (string memory _concatenatedString) {
        return strConcat(_a, _b, _c, "", "");
    }

    function strConcat(string memory _a, string memory _b, string memory _c, string memory _d) internal pure returns (string memory _concatenatedString) {
        return strConcat(_a, _b, _c, _d, "");
    }

    function strConcat(string memory _a, string memory _b, string memory _c, string memory _d, string memory _e) internal pure returns (string memory _concatenatedString) {
        bytes memory _ba = bytes(_a);
        bytes memory _bb = bytes(_b);
        bytes memory _bc = bytes(_c);
        bytes memory _bd = bytes(_d);
        bytes memory _be = bytes(_e);
        string memory abcde = new string(_ba.length + _bb.length + _bc.length + _bd.length + _be.length);
        bytes memory babcde = bytes(abcde);
        uint k = 0;
        uint i = 0;
        for (i = 0; i < _ba.length; i++) {
            babcde[k++] = _ba[i];
        }
        for (i = 0; i < _bb.length; i++) {
            babcde[k++] = _bb[i];
        }
        for (i = 0; i < _bc.length; i++) {
            babcde[k++] = _bc[i];
        }
        for (i = 0; i < _bd.length; i++) {
            babcde[k++] = _bd[i];
        }
        for (i = 0; i < _be.length; i++) {
            babcde[k++] = _be[i];
        }
        return string(babcde);
    }

    function safeParseInt(string memory _a) internal pure returns (uint _parsedInt) {
        return safeParseInt(_a, 0);
    }

    function safeParseInt(string memory _a, uint _b) internal pure returns (uint _parsedInt) {
        bytes memory bresult = bytes(_a);
        uint mint = 0;
        bool decimals = false;
        for (uint i = 0; i < bresult.length; i++) {
            if ((uint(uint8(bresult[i])) >= 48) && (uint(uint8(bresult[i])) <= 57)) {
                if (decimals) {
                   if (_b == 0) break;
                    else _b--;
                }
                mint *= 10;
                mint += uint(uint8(bresult[i])) - 48;
            } else if (uint(uint8(bresult[i])) == 46) {
                require(!decimals, 'More than one decimal encountered in string!');
                decimals = true;
            } else {
                revert("Non-numeral character encountered in string!");
            }
        }
        if (_b > 0) {
            mint *= 10 ** _b;
        }
        return mint;
    }

    function parseInt(string memory _a) internal pure returns (uint _parsedInt) {
        return parseInt(_a, 0);
    }

    function parseInt(string memory _a, uint _b) internal pure returns (uint _parsedInt) {
        bytes memory bresult = bytes(_a);
        uint mint = 0;
        bool decimals = false;
        for (uint i = 0; i < bresult.length; i++) {
            if ((uint(uint8(bresult[i])) >= 48) && (uint(uint8(bresult[i])) <= 57)) {
                if (decimals) {
                   if (_b == 0) {
                       break;
                   } else {
                       _b--;
                   }
                }
                mint *= 10;
                mint += uint(uint8(bresult[i])) - 48;
            } else if (uint(uint8(bresult[i])) == 46) {
                decimals = true;
            }
        }
        if (_b > 0) {
            mint *= 10 ** _b;
        }
        return mint;
    }

    function uint2str(uint _i) internal pure returns (string memory _uintAsString) {
        if (_i == 0) {
            return "0";
        }
        uint j = _i;
        uint len;
        while (j != 0) {
            len++;
            j /= 10;
        }
        bytes memory bstr = new bytes(len);
        uint k = len;
        while (_i != 0) {
            k = k-1;
            uint8 temp = (48 + uint8(_i - _i / 10 * 10));
            bytes1 b1 = bytes1(temp);
            bstr[k] = b1;
            _i /= 10;
        }
        return string(bstr);
    }

    function stra2cbor(string[] memory _arr) internal pure returns (bytes memory _cborEncoding) {
        safeMemoryCleaner();
        Buffer.buffer memory buf;
        Buffer.init(buf, 1024);
        buf.startArray();
        for (uint i = 0; i < _arr.length; i++) {
            buf.encodeString(_arr[i]);
        }
        buf.endSequence();
        return buf.buf;
    }

    function ba2cbor(bytes[] memory _arr) internal pure returns (bytes memory _cborEncoding) {
        safeMemoryCleaner();
        Buffer.buffer memory buf;
        Buffer.init(buf, 1024);
        buf.startArray();
        for (uint i = 0; i < _arr.length; i++) {
            buf.encodeBytes(_arr[i]);
        }
        buf.endSequence();
        return buf.buf;
    }

    function provable_newRandomDSQuery(uint _delay, uint _nbytes, uint _customGasLimit) internal returns (bytes32 _queryId) {
        require((_nbytes > 0) && (_nbytes <= 32));
        _delay *= 10; // Convert from seconds to ledger timer ticks
        bytes memory nbytes = new bytes(1);
        nbytes[0] = bytes1(uint8(_nbytes));
        bytes memory unonce = new bytes(32);
        bytes memory sessionKeyHash = new bytes(32);
        bytes32 sessionKeyHash_bytes32 = provable_randomDS_getSessionPubKeyHash();
        assembly {
            mstore(unonce, 0x20)
            /*
             The following variables can be relaxed.
             Check the relaxed random contract at https://github.com/oraclize/ethereum-examples
             for an idea on how to override and replace commit hash variables.
            */
            mstore(add(unonce, 0x20), xor(blockhash(sub(number(), 1)), xor(coinbase(), timestamp())))
            mstore(sessionKeyHash, 0x20)
            mstore(add(sessionKeyHash, 0x20), sessionKeyHash_bytes32)
        }
        bytes memory delay = new bytes(32);
        assembly {
            mstore(add(delay, 0x20), _delay)
        }
        bytes memory delay_bytes8 = new bytes(8);
        copyBytes(delay, 24, 8, delay_bytes8, 0);
        bytes[4] memory args = [unonce, nbytes, sessionKeyHash, delay];
        bytes32 queryId = provable_query("random", args, _customGasLimit);
        bytes memory delay_bytes8_left = new bytes(8);
        assembly {
            let x := mload(add(delay_bytes8, 0x20))
            mstore8(add(delay_bytes8_left, 0x27), div(x, 0x100000000000000000000000000000000000000000000000000000000000000))
            mstore8(add(delay_bytes8_left, 0x26), div(x, 0x1000000000000000000000000000000000000000000000000000000000000))
            mstore8(add(delay_bytes8_left, 0x25), div(x, 0x10000000000000000000000000000000000000000000000000000000000))
            mstore8(add(delay_bytes8_left, 0x24), div(x, 0x100000000000000000000000000000000000000000000000000000000))
            mstore8(add(delay_bytes8_left, 0x23), div(x, 0x1000000000000000000000000000000000000000000000000000000))
            mstore8(add(delay_bytes8_left, 0x22), div(x, 0x10000000000000000000000000000000000000000000000000000))
            mstore8(add(delay_bytes8_left, 0x21), div(x, 0x100000000000000000000000000000000000000000000000000))
            mstore8(add(delay_bytes8_left, 0x20), div(x, 0x1000000000000000000000000000000000000000000000000))
        }
        provable_randomDS_setCommitment(queryId, keccak256(abi.encodePacked(delay_bytes8_left, args[1], sha256(args[0]), args[2])));
        return queryId;
    }

    function provable_randomDS_setCommitment(bytes32 _queryId, bytes32 _commitment) internal {
        provable_randomDS_args[_queryId] = _commitment;
    }

    function verifySig(bytes32 _tosignh, bytes memory _dersig, bytes memory _pubkey) internal returns (bool _sigVerified) {
        bool sigok;
        address signer;
        bytes32 sigr;
        bytes32 sigs;
        bytes memory sigr_ = new bytes(32);
        uint offset = 4 + (uint(uint8(_dersig[3])) - 0x20);
        sigr_ = copyBytes(_dersig, offset, 32, sigr_, 0);
        bytes memory sigs_ = new bytes(32);
        offset += 32 + 2;
        sigs_ = copyBytes(_dersig, offset + (uint(uint8(_dersig[offset - 1])) - 0x20), 32, sigs_, 0);
        assembly {
            sigr := mload(add(sigr_, 32))
            sigs := mload(add(sigs_, 32))
        }
        (sigok, signer) = safer_ecrecover(_tosignh, 27, sigr, sigs);
        if (address(uint160(uint256(keccak256(_pubkey)))) == signer) {
            return true;
        } else {
            (sigok, signer) = safer_ecrecover(_tosignh, 28, sigr, sigs);
            return (address(uint160(uint256(keccak256(_pubkey)))) == signer);
        }
    }

    function provable_randomDS_proofVerify__sessionKeyValidity(bytes memory _proof, uint _sig2offset) internal returns (bool _proofVerified) {
        bool sigok;
        // Random DS Proof Step 6: Verify the attestation signature, APPKEY1 must sign the sessionKey from the correct ledger app (CODEHASH)
        bytes memory sig2 = new bytes(uint(uint8(_proof[_sig2offset + 1])) + 2);
        copyBytes(_proof, _sig2offset, sig2.length, sig2, 0);
        bytes memory appkey1_pubkey = new bytes(64);
        copyBytes(_proof, 3 + 1, 64, appkey1_pubkey, 0);
        bytes memory tosign2 = new bytes(1 + 65 + 32);
        tosign2[0] = bytes1(uint8(1)); //role
        copyBytes(_proof, _sig2offset - 65, 65, tosign2, 1);
        bytes memory CODEHASH = hex"fd94fa71bc0ba10d39d464d0d8f465efeef0a2764e3887fcc9df41ded20f505c";
        copyBytes(CODEHASH, 0, 32, tosign2, 1 + 65);
        sigok = verifySig(sha256(tosign2), sig2, appkey1_pubkey);
        if (!sigok) {
            return false;
        }
        // Random DS Proof Step 7: Verify the APPKEY1 provenance (must be signed by Ledger)
        bytes memory LEDGERKEY = hex"7fb956469c5c9b89840d55b43537e66a98dd4811ea0a27224272c2e5622911e8537a2f8e86a46baec82864e98dd01e9ccc2f8bc5dfc9cbe5a91a290498dd96e4";
        bytes memory tosign3 = new bytes(1 + 65);
        tosign3[0] = 0xFE;
        copyBytes(_proof, 3, 65, tosign3, 1);
        bytes memory sig3 = new bytes(uint(uint8(_proof[3 + 65 + 1])) + 2);
        copyBytes(_proof, 3 + 65, sig3.length, sig3, 0);
        sigok = verifySig(sha256(tosign3), sig3, LEDGERKEY);
        return sigok;
    }

    function provable_randomDS_proofVerify__returnCode(bytes32 _queryId, string memory _result, bytes memory _proof) internal returns (uint8 _returnCode) {
        // Random DS Proof Step 1: The prefix has to match 'LP\x01' (Ledger Proof version 1)
        if ((_proof[0] != "L") || (_proof[1] != "P") || (uint8(_proof[2]) != uint8(1))) {
            return 1;
        }
        bool proofVerified = provable_randomDS_proofVerify__main(_proof, _queryId, bytes(_result), provable_getNetworkName());
        if (!proofVerified) {
            return 2;
        }
        return 0;
    }

    function matchBytes32Prefix(bytes32 _content, bytes memory _prefix, uint _nRandomBytes) internal pure returns (bool _matchesPrefix) {
        bool match_ = true;
        require(_prefix.length == _nRandomBytes);
        for (uint256 i = 0; i< _nRandomBytes; i++) {
            if (_content[i] != _prefix[i]) {
                match_ = false;
            }
        }
        return match_;
    }

    function provable_randomDS_proofVerify__main(bytes memory _proof, bytes32 _queryId, bytes memory _result, string memory _contextName) internal returns (bool _proofVerified) {
        // Random DS Proof Step 2: The unique keyhash has to match with the sha256 of (context name + _queryId)
        uint ledgerProofLength = 3 + 65 + (uint(uint8(_proof[3 + 65 + 1])) + 2) + 32;
        bytes memory keyhash = new bytes(32);
        copyBytes(_proof, ledgerProofLength, 32, keyhash, 0);
        if (!(keccak256(keyhash) == keccak256(abi.encodePacked(sha256(abi.encodePacked(_contextName, _queryId)))))) {
            return false;
        }
        bytes memory sig1 = new bytes(uint(uint8(_proof[ledgerProofLength + (32 + 8 + 1 + 32) + 1])) + 2);
        copyBytes(_proof, ledgerProofLength + (32 + 8 + 1 + 32), sig1.length, sig1, 0);
        // Random DS Proof Step 3: We assume sig1 is valid (it will be verified during step 5) and we verify if '_result' is the _prefix of sha256(sig1)
        if (!matchBytes32Prefix(sha256(sig1), _result, uint(uint8(_proof[ledgerProofLength + 32 + 8])))) {
            return false;
        }
        // Random DS Proof Step 4: Commitment match verification, keccak256(delay, nbytes, unonce, sessionKeyHash) == commitment in storage.
        // This is to verify that the computed args match with the ones specified in the query.
        bytes memory commitmentSlice1 = new bytes(8 + 1 + 32);
        copyBytes(_proof, ledgerProofLength + 32, 8 + 1 + 32, commitmentSlice1, 0);
        bytes memory sessionPubkey = new bytes(64);
        uint sig2offset = ledgerProofLength + 32 + (8 + 1 + 32) + sig1.length + 65;
        copyBytes(_proof, sig2offset - 64, 64, sessionPubkey, 0);
        bytes32 sessionPubkeyHash = sha256(sessionPubkey);
        if (provable_randomDS_args[_queryId] == keccak256(abi.encodePacked(commitmentSlice1, sessionPubkeyHash))) { //unonce, nbytes and sessionKeyHash match
            delete provable_randomDS_args[_queryId];
        } else return false;
        // Random DS Proof Step 5: Validity verification for sig1 (keyhash and args signed with the sessionKey)
        bytes memory tosign1 = new bytes(32 + 8 + 1 + 32);
        copyBytes(_proof, ledgerProofLength, 32 + 8 + 1 + 32, tosign1, 0);
        if (!verifySig(sha256(tosign1), sig1, sessionPubkey)) {
            return false;
        }
        // Verify if sessionPubkeyHash was verified already, if not.. let's do it!
        if (!provable_randomDS_sessionKeysHashVerified[sessionPubkeyHash]) {
            provable_randomDS_sessionKeysHashVerified[sessionPubkeyHash] = provable_randomDS_proofVerify__sessionKeyValidity(_proof, sig2offset);
        }
        return provable_randomDS_sessionKeysHashVerified[sessionPubkeyHash];
    }
    /*
     The following function has been written by Alex Beregszaszi (@axic), use it under the terms of the MIT license
    */
    function copyBytes(bytes memory _from, uint _fromOffset, uint _length, bytes memory _to, uint _toOffset) internal pure returns (bytes memory _copiedBytes) {
        uint minLength = _length + _toOffset;
        require(_to.length >= minLength); // Buffer too small. Should be a better way?
        uint i = 32 + _fromOffset; // NOTE: the offset 32 is added to skip the `size` field of both bytes variables
        uint j = 32 + _toOffset;
        while (i < (32 + _fromOffset + _length)) {
            assembly {
                let tmp := mload(add(_from, i))
                mstore(add(_to, j), tmp)
            }
            i += 32;
            j += 32;
        }
        return _to;
    }
    /*
     The following function has been written by Alex Beregszaszi (@axic), use it under the terms of the MIT license
     Duplicate Solidity's ecrecover, but catching the CALL return value
    */
    function safer_ecrecover(bytes32 _hash, uint8 _v, bytes32 _r, bytes32 _s) internal returns (bool _success, address _recoveredAddress) {
        /*
         We do our own memory management here. Solidity uses memory offset
         0x40 to store the current end of memory. We write past it (as
         writes are memory extensions), but don't update the offset so
         Solidity will reuse it. The memory used here is only needed for
         this context.
         FIXME: inline assembly can't access return values
        */
        bool ret;
        address addr;
        assembly {
            let size := mload(0x40)
            mstore(size, _hash)
            mstore(add(size, 32), _v)
            mstore(add(size, 64), _r)
            mstore(add(size, 96), _s)
            ret := call(3000, 1, 0, size, 128, size, 32) // NOTE: we can reuse the request memory because we deal with the return code.
            addr := mload(size)
        }
        return (ret, addr);
    }
    /*
     The following function has been written by Alex Beregszaszi (@axic), use it under the terms of the MIT license
    */
    function ecrecovery(bytes32 _hash, bytes memory _sig) internal returns (bool _success, address _recoveredAddress) {
        bytes32 r;
        bytes32 s;
        uint8 v;
        if (_sig.length != 65) {
            return (false, address(0));
        }
        /*
         The signature format is a compact form of:
           {bytes32 r}{bytes32 s}{uint8 v}
         Compact means, uint8 is not padded to 32 bytes.
        */
        assembly {
            r := mload(add(_sig, 32))
            s := mload(add(_sig, 64))
            /*
             Here we are loading the last 32 bytes. We exploit the fact that
             'mload' will pad with zeroes if we overread.
             There is no 'mload8' to do this, but that would be nicer.
            */
            v := byte(0, mload(add(_sig, 96)))
            /*
              Alternative solution:
              'byte' is not working due to the Solidity parser, so lets
              use the second best option, 'and'
              v := and(mload(add(_sig, 65)), 255)
            */
        }
        /*
         albeit non-transactional signatures are not specified by the YP, one would expect it
         to match the YP range of [27, 28]
         geth uses [0, 1] and some clients have followed. This might change, see:
         https://github.com/ethereum/go-ethereum/issues/2053
        */
        if (v < 27) {
            v += 27;
        }
        if (v != 27 && v != 28) {
            return (false, address(0));
        }
        return safer_ecrecover(_hash, v, r, s);
    }

    function safeMemoryCleaner() internal pure {
        assembly {
            let fmem := mload(0x40)
            codecopy(fmem, codesize(), sub(msize(), fmem))
        }
    }
}
// </provableAPI>

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"description","type":"string"}],"name":"LogNewProvableQuery","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"status","type":"string"}],"name":"LogNewRequestStatus","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"_value","type":"string"},{"indexed":true,"internalType":"uint256","name":"_id","type":"uint256"}],"name":"PermanentURI","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"bytes32","name":"myid","type":"bytes32"},{"internalType":"string","name":"_result","type":"string"}],"name":"__callback","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_myid","type":"bytes32"},{"internalType":"string","name":"_result","type":"string"},{"internalType":"bytes","name":"_proof","type":"bytes"}],"name":"__callback","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"_paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"giveAway","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"num","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"val","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"requestStatus","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenNum","type":"uint256"}],"name":"update","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"payable","type":"function"}]

6080604052603260115566470de4df8200006012556001601360006101000a81548160ff02191690831515021790555073a422bfff5daba6eeefaff84debf609edf0868c5f601760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073b5967de6328290103614f74da0c7fa5fcd9bf08a601860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550348015620000e657600080fd5b50604051620060753803806200607583398181016040528101906200010c919062000474565b6040518060400160405280600a81526020017f416e696d6f6e6b657973000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f414e4d4b0000000000000000000000000000000000000000000000000000000081525081600090805190602001906200019092919062000352565b508060019080519060200190620001a992919062000352565b5050506000620001be6200027560201b60201c565b905080600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3506200026e816200027d60201b60201c565b506200065f565b600033905090565b6200028d6200027560201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620002b36200032860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200030c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200030390620004fb565b60405180910390fd5b80601090805190602001906200032492919062000352565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b8280546200036090620005cb565b90600052602060002090601f016020900481019282620003845760008555620003d0565b82601f106200039f57805160ff1916838001178555620003d0565b82800160010185558215620003d0579182015b82811115620003cf578251825591602001919060010190620003b2565b5b509050620003df9190620003e3565b5090565b5b80821115620003fe576000816000905550600101620003e4565b5090565b600062000419620004138462000551565b6200051d565b9050828152602081018484840111156200043257600080fd5b6200043f84828562000595565b509392505050565b600082601f8301126200045957600080fd5b81516200046b84826020860162000402565b91505092915050565b6000602082840312156200048757600080fd5b600082015167ffffffffffffffff811115620004a257600080fd5b620004b08482850162000447565b91505092915050565b6000620004c860208362000584565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b600060208201905081810360008301526200051681620004b9565b9050919050565b6000604051905081810181811067ffffffffffffffff8211171562000547576200054662000630565b5b8060405250919050565b600067ffffffffffffffff8211156200056f576200056e62000630565b5b601f19601f8301169050602081019050919050565b600082825260208201905092915050565b60005b83811015620005b557808201518184015260208101905062000598565b83811115620005c5576000848401525b50505050565b60006002820490506001821680620005e457607f821691505b60208210811415620005fb57620005fa62000601565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b615a06806200066f6000396000f3fe6080604052600436106101e35760003560e01c806370a0823111610102578063a0712d6811610095578063c87b56dd11610064578063c87b56dd146106b3578063ca800144146106f0578063e985e9c514610719578063f2fde38b14610756576101e3565b8063a0712d681461061a578063a22cb46514610636578063b88d4fde1461065f578063c36dfdb314610688576101e3565b80638da5cb5b116100d15780638da5cb5b1461057057806391b7f5ed1461059b57806395d89b41146105c457806398d5fdca146105ef576101e3565b806370a08231146104f6578063715018a61461053357806382ab890a1461054a578063853828b614610566576101e3565b806327dc297e1161017a578063438b630011610149578063438b6300146104165780634f6ccce71461045357806355f804b3146104905780636352211e146104b9576101e3565b806327dc297e1461035e5780632f745c591461038757806338bbfa50146103c457806342842e0e146103ed576101e3565b8063095ea7b3116101b6578063095ea7b3146102b657806316c61ccc146102df57806318160ddd1461030a57806323b872dd14610335576101e3565b806301ffc9a7146101e857806302329a291461022557806306fdde031461024e578063081812fc14610279575b600080fd5b3480156101f457600080fd5b5061020f600480360381019061020a91906142ff565b61077f565b60405161021c9190614fda565b60405180910390f35b34801561023157600080fd5b5061024c600480360381019061024791906141da565b6107f9565b005b34801561025a57600080fd5b50610263610892565b604051610270919061504f565b60405180910390f35b34801561028557600080fd5b506102a0600480360381019061029b9190614392565b610924565b6040516102ad9190614f51565b60405180910390f35b3480156102c257600080fd5b506102dd60048036038101906102d8919061419e565b6109a9565b005b3480156102eb57600080fd5b506102f4610ac1565b6040516103019190614fda565b60405180910390f35b34801561031657600080fd5b5061031f610ad4565b60405161032c9190615391565b60405180910390f35b34801561034157600080fd5b5061035c60048036038101906103579190614098565b610ae1565b005b34801561036a57600080fd5b506103856004803603810190610380919061422c565b610b41565b005b34801561039357600080fd5b506103ae60048036038101906103a9919061419e565b610bec565b6040516103bb9190615391565b60405180910390f35b3480156103d057600080fd5b506103eb60048036038101906103e69190614280565b610c91565b005b3480156103f957600080fd5b50610414600480360381019061040f9190614098565b610cb4565b005b34801561042257600080fd5b5061043d6004803603810190610438919061400a565b610cd4565b60405161044a9190614fb8565b60405180910390f35b34801561045f57600080fd5b5061047a60048036038101906104759190614392565b610dce565b6040516104879190615391565b60405180910390f35b34801561049c57600080fd5b506104b760048036038101906104b29190614351565b610e65565b005b3480156104c557600080fd5b506104e060048036038101906104db9190614392565b610efb565b6040516104ed9190614f51565b60405180910390f35b34801561050257600080fd5b5061051d6004803603810190610518919061400a565b610fad565b60405161052a9190615391565b60405180910390f35b34801561053f57600080fd5b50610548611065565b005b610564600480360381019061055f9190614392565b6111a2565b005b61056e611279565b005b34801561057c57600080fd5b506105856113c9565b6040516105929190614f51565b60405180910390f35b3480156105a757600080fd5b506105c260048036038101906105bd9190614392565b6113f3565b005b3480156105d057600080fd5b506105d9611479565b6040516105e6919061504f565b60405180910390f35b3480156105fb57600080fd5b5061060461150b565b6040516106119190615391565b60405180910390f35b610634600480360381019061062f9190614392565b611515565b005b34801561064257600080fd5b5061065d60048036038101906106589190614162565b6116ac565b005b34801561066b57600080fd5b50610686600480360381019061068191906140e7565b61182d565b005b34801561069457600080fd5b5061069d61188f565b6040516106aa919061504f565b60405180910390f35b3480156106bf57600080fd5b506106da60048036038101906106d59190614392565b61191d565b6040516106e7919061504f565b60405180910390f35b3480156106fc57600080fd5b506107176004803603810190610712919061419e565b611a90565b005b34801561072557600080fd5b50610740600480360381019061073b919061405c565b611bc3565b60405161074d9190614fda565b60405180910390f35b34801561076257600080fd5b5061077d6004803603810190610778919061400a565b611c57565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107f257506107f182611e03565b5b9050919050565b610801611ee5565b73ffffffffffffffffffffffffffffffffffffffff1661081f6113c9565b73ffffffffffffffffffffffffffffffffffffffff1614610875576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161086c90615271565b60405180910390fd5b80601360006101000a81548160ff02191690831515021790555050565b6060600080546108a1906156e4565b80601f01602080910402602001604051908101604052809291908181526020018280546108cd906156e4565b801561091a5780601f106108ef5761010080835404028352916020019161091a565b820191906000526020600020905b8154815290600101906020018083116108fd57829003601f168201915b5050505050905090565b600061092f82611eed565b61096e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096590615231565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109b482610efb565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1c906152d1565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a44611ee5565b73ffffffffffffffffffffffffffffffffffffffff161480610a735750610a7281610a6d611ee5565b611bc3565b5b610ab2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa990615191565b60405180910390fd5b610abc8383611f59565b505050565b601360009054906101000a900460ff1681565b6000600880549050905090565b610af2610aec611ee5565b82612012565b610b31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2890615331565b60405180910390fd5b610b3c8383836120f0565b505050565b610b4961234c565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610b8057600080fd5b610b9d601460008481526020019081526020016000205482612665565b60146000838152602001908152602001600020547fa109ba539900bf1b633f956d63c96fc89b814c7287f7aa50a9216d0b5565720782604051610be0919061504f565b60405180910390a25050565b6000610bf783610fad565b8210610c38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2f906150b1565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b6000801b600e60008060001b815260200190815260200160002081905550505050565b610ccf8383836040518060200160405280600081525061182d565b505050565b60606000610ce183610fad565b905060008167ffffffffffffffff811115610d25577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015610d535781602001602082028036833780820191505090505b50905060005b82811015610dc357610d6b8582610bec565b828281518110610da4577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010181815250508080610dbb90615716565b915050610d59565b508092505050919050565b6000610dd8610ad4565b8210610e19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1090615371565b60405180910390fd5b60088281548110610e53577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b610e6d611ee5565b73ffffffffffffffffffffffffffffffffffffffff16610e8b6113c9565b73ffffffffffffffffffffffffffffffffffffffff1614610ee1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed890615271565b60405180910390fd5b8060109080519060200190610ef7929190613dda565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610fa4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9b906151d1565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561101e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611015906151b1565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61106d611ee5565b73ffffffffffffffffffffffffffffffffffffffff1661108b6113c9565b73ffffffffffffffffffffffffffffffffffffffff16146110e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d890615271565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b7fc4dc360d0a9c0677a3379ae0a3d81e887f761e65fdf3d7e00859d1bcd3c473896040516111cf90615311565b60405180910390a1600061125b6040518060400160405280600381526020017f55524c000000000000000000000000000000000000000000000000000000000081525061121b846126d9565b60405160200161122b9190614f24565b60405160208183030381529060405260405180610120016040528061010081526020016158d161010091396128ae565b90508160146000838152602001908152602001600020819055505050565b611281611ee5565b73ffffffffffffffffffffffffffffffffffffffff1661129f6113c9565b73ffffffffffffffffffffffffffffffffffffffff16146112f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ec90615271565b60405180910390fd5b60006002476113049190615546565b9050601760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f1935050505061136657600080fd5b601860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050506113c657600080fd5b50565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6113fb611ee5565b73ffffffffffffffffffffffffffffffffffffffff166114196113c9565b73ffffffffffffffffffffffffffffffffffffffff161461146f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146690615271565b60405180910390fd5b8060128190555050565b606060018054611488906156e4565b80601f01602080910402602001604051908101604052809291908181526020018280546114b4906156e4565b80156115015780601f106114d657610100808354040283529160200191611501565b820191906000526020600020905b8154815290600101906020018083116114e457829003601f168201915b5050505050905090565b6000601254905090565b600061151f610ad4565b9050601360009054906101000a900460ff1615611571576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156890615071565b60405180910390fd5b600282106115b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ab90615351565b60405180910390fd5b6011546109c56115c491906155d1565b82826115d091906154b9565b10611610576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160790615091565b60405180910390fd5b8160125461161e9190615577565b341015611660576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611657906152f1565b60405180910390fd5b60005b828110156116a75761168033828461167b91906154b9565b612cc6565b611694818361168f91906154b9565b6111a2565b808061169f90615716565b915050611663565b505050565b6116b4611ee5565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611722576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171990615151565b60405180910390fd5b806005600061172f611ee5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166117dc611ee5565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516118219190614fda565b60405180910390a35050565b61183e611838611ee5565b83612012565b61187d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187490615331565b60405180910390fd5b61188984848484612ce4565b50505050565b6015805461189c906156e4565b80601f01602080910402602001604051908101604052809291908181526020018280546118c8906156e4565b80156119155780601f106118ea57610100808354040283529160200191611915565b820191906000526020600020905b8154815290600101906020018083116118f857829003601f168201915b505050505081565b606061192882611eed565b611967576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195e906152b1565b60405180910390fd5b6000601660008481526020019081526020016000208054611987906156e4565b80601f01602080910402602001604051908101604052809291908181526020018280546119b3906156e4565b8015611a005780601f106119d557610100808354040283529160200191611a00565b820191906000526020600020905b8154815290600101906020018083116119e357829003601f168201915b505050505090506000611a11612d40565b9050600081511415611a27578192505050611a8b565b600082511115611a5c578082604051602001611a44929190614f00565b60405160208183030381529060405292505050611a8b565b80611a6685612dd2565b604051602001611a77929190614f00565b604051602081830303815290604052925050505b919050565b611a98611ee5565b73ffffffffffffffffffffffffffffffffffffffff16611ab66113c9565b73ffffffffffffffffffffffffffffffffffffffff1614611b0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0390615271565b60405180910390fd5b601154811115611b51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b48906151f1565b60405180910390fd5b6000611b5b610ad4565b905060005b82811015611ba457611b7d848284611b7891906154b9565b612cc6565b611b918183611b8c91906154b9565b6111a2565b8080611b9c90615716565b915050611b60565b508160116000828254611bb791906155d1565b92505081905550505050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611c5f611ee5565b73ffffffffffffffffffffffffffffffffffffffff16611c7d6113c9565b73ffffffffffffffffffffffffffffffffffffffff1614611cd3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cca90615271565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611d43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3a906150f1565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611ece57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611ede5750611edd82612f7f565b5b9050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611fcc83610efb565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061201d82611eed565b61205c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205390615171565b60405180910390fd5b600061206783610efb565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806120d657508373ffffffffffffffffffffffffffffffffffffffff166120be84610924565b73ffffffffffffffffffffffffffffffffffffffff16145b806120e757506120e68185611bc3565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661211082610efb565b73ffffffffffffffffffffffffffffffffffffffff1614612166576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161215d90615291565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156121d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121cd90615131565b60405180910390fd5b6121e1838383612fe9565b6121ec600082611f59565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461223c91906155d1565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461229391906154b9565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60008073ffffffffffffffffffffffffffffffffffffffff16600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614806123d4575060006123d2600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166130fd565b145b156123e5576123e36000613108565b505b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166338cc48316040518163ffffffff1660e01b8152600401602060405180830381600087803b15801561244f57600080fd5b505af1158015612463573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906124879190614033565b73ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146125be57600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166338cc48316040518163ffffffff1660e01b8152600401602060405180830381600087803b15801561254557600080fd5b505af1158015612559573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061257d9190614033565b600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c281d19e6040518163ffffffff1660e01b8152600401602060405180830381600087803b15801561262857600080fd5b505af115801561263c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906126609190614033565b905090565b61266e82611eed565b6126ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126a490615251565b60405180910390fd5b806016600084815260200190815260200160002090805190602001906126d4929190613dda565b505050565b60606000821415612721576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506128a9565b600082905060005b6000821461275357808061273c90615716565b915050600a8261274c9190615546565b9150612729565b60008167ffffffffffffffff811115612795577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156127c75781602001600182028036833780820191505090505b50905060008290505b600086146128a1576001816127e591906155d1565b90506000600a80886127f79190615546565b6128019190615577565b8761280c91906155d1565b6030612818919061550f565b905060008160f81b90508084848151811061285c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a886128989190615546565b975050506127d0565b819450505050505b919050565b60008073ffffffffffffffffffffffffffffffffffffffff16600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16148061293657506000612934600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166130fd565b145b15612947576129456000613108565b505b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166338cc48316040518163ffffffff1660e01b8152600401602060405180830381600087803b1580156129b157600080fd5b505af11580156129c5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906129e99190614033565b73ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612b2057600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166338cc48316040518163ffffffff1660e01b8152600401602060405180830381600087803b158015612aa757600080fd5b505af1158015612abb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612adf9190614033565b600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663524f3889866040518263ffffffff1660e01b8152600401612b7d919061504f565b602060405180830381600087803b158015612b9757600080fd5b505af1158015612bab573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612bcf91906143bb565b905062030d403a612be09190615577565b670de0b6b3a7640000612bf391906154b9565b811115612c06576000801b915050612cbf565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663772286598260008888886040518663ffffffff1660e01b8152600401612c699493929190614ff5565b6020604051808303818588803b158015612c8257600080fd5b505af1158015612c96573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190612cbb9190614203565b9150505b9392505050565b612ce0828260405180602001604052806000815250613119565b5050565b612cef8484846120f0565b612cfb84848484613174565b612d3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d31906150d1565b60405180910390fd5b50505050565b606060108054612d4f906156e4565b80601f0160208091040260200160405190810160405280929190818152602001828054612d7b906156e4565b8015612dc85780601f10612d9d57610100808354040283529160200191612dc8565b820191906000526020600020905b815481529060010190602001808311612dab57829003601f168201915b5050505050905090565b60606000821415612e1a576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612f7a565b600082905060005b60008214612e4c578080612e3590615716565b915050600a82612e459190615546565b9150612e22565b60008167ffffffffffffffff811115612e8e577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612ec05781602001600182028036833780820191505090505b5090505b60008514612f7357600182612ed991906155d1565b9150600a85612ee8919061575f565b6030612ef491906154b9565b60f81b818381518110612f30577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612f6c9190615546565b9450612ec4565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612ff483838361330b565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156130375761303281613310565b613076565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614613075576130748382613359565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156130b9576130b4816134c6565b6130f8565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146130f7576130f68282613609565b5b5b505050565b6000813b9050919050565b6000613112613688565b9050919050565b6131238383613bdf565b6131306000848484613174565b61316f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613166906150d1565b60405180910390fd5b505050565b60006131958473ffffffffffffffffffffffffffffffffffffffff16613dad565b156132fe578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026131be611ee5565b8786866040518563ffffffff1660e01b81526004016131e09493929190614f6c565b602060405180830381600087803b1580156131fa57600080fd5b505af192505050801561322b57506040513d601f19601f820116820180604052508101906132289190614328565b60015b6132ae573d806000811461325b576040519150601f19603f3d011682016040523d82523d6000602084013e613260565b606091505b506000815114156132a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161329d906150d1565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613303565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161336684610fad565b61337091906155d1565b9050600060076000848152602001908152602001600020549050818114613455576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506134da91906155d1565b9050600060096000848152602001908152602001600020549050600060088381548110613530577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060088381548110613578577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200181905550816009600083815260200190815260200160002081905550600960008581526020019081526020016000206000905560088054806135ed577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b600061361483610fad565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b6000806136a8731d3b2638a7cc9f2cb3d298a3da7a90b67e5506ed6130fd565b111561374a57731d3b2638a7cc9f2cb3d298a3da7a90b67e5506ed600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506137416040518060400160405280600b81526020017f6574685f6d61696e6e6574000000000000000000000000000000000000000000815250613dc0565b60019050613bdc565b600061376973c03a2615d5efaf5f49f60b7bb6583eaec212fdf16130fd565b111561380b5773c03a2615d5efaf5f49f60b7bb6583eaec212fdf1600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506138026040518060400160405280600c81526020017f6574685f726f707374656e330000000000000000000000000000000000000000815250613dc0565b60019050613bdc565b600061382a73b7a07bcf2ba2f2703b24c0691b5278999c59ac7e6130fd565b11156138cc5773b7a07bcf2ba2f2703b24c0691b5278999c59ac7e600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506138c36040518060400160405280600981526020017f6574685f6b6f76616e0000000000000000000000000000000000000000000000815250613dc0565b60019050613bdc565b60006138eb73146500cfd35b22e4a392fe0adc06de1a1368ed486130fd565b111561398d5773146500cfd35b22e4a392fe0adc06de1a1368ed48600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506139846040518060400160405280600b81526020017f6574685f72696e6b656279000000000000000000000000000000000000000000815250613dc0565b60019050613bdc565b60006139ac73a2998efd205fb9d4b4963afb70778d6354ad3a416130fd565b1115613a4e5773a2998efd205fb9d4b4963afb70778d6354ad3a41600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550613a456040518060400160405280600a81526020017f6574685f676f65726c6900000000000000000000000000000000000000000000815250613dc0565b60019050613bdc565b6000613a6d736f485c8bf6fc43ea212e93bbf8ce046c7f1cb4756130fd565b1115613ad157736f485c8bf6fc43ea212e93bbf8ce046c7f1cb475600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060019050613bdc565b6000613af07320e12a1f859b3feae5fb2a0a32c18f5a65555bbf6130fd565b1115613b54577320e12a1f859b3feae5fb2a0a32c18f5a65555bbf600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060019050613bdc565b6000613b737351efaf4c8b3c9afbd5ab9f4bbc82784ab6ef8faa6130fd565b1115613bd7577351efaf4c8b3c9afbd5ab9f4bbc82784ab6ef8faa600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060019050613bdc565b600090505b90565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613c4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613c4690615211565b60405180910390fd5b613c5881611eed565b15613c98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613c8f90615111565b60405180910390fd5b613ca460008383612fe9565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613cf491906154b9565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b80600d9080519060200190613dd6929190613dda565b5050565b828054613de6906156e4565b90600052602060002090601f016020900481019282613e085760008555613e4f565b82601f10613e2157805160ff1916838001178555613e4f565b82800160010185558215613e4f579182015b82811115613e4e578251825591602001919060010190613e33565b5b509050613e5c9190613e60565b5090565b5b80821115613e79576000816000905550600101613e61565b5090565b6000613e90613e8b846153dd565b6153ac565b905082815260208101848484011115613ea857600080fd5b613eb38482856156a2565b509392505050565b6000613ece613ec98461540d565b6153ac565b905082815260208101848484011115613ee657600080fd5b613ef18482856156a2565b509392505050565b600081359050613f088161585d565b92915050565b600081519050613f1d8161585d565b92915050565b600081359050613f3281615874565b92915050565b600081359050613f478161588b565b92915050565b600081519050613f5c8161588b565b92915050565b600081359050613f71816158a2565b92915050565b600081519050613f86816158a2565b92915050565b600082601f830112613f9d57600080fd5b8135613fad848260208601613e7d565b91505092915050565b600082601f830112613fc757600080fd5b8135613fd7848260208601613ebb565b91505092915050565b600081359050613fef816158b9565b92915050565b600081519050614004816158b9565b92915050565b60006020828403121561401c57600080fd5b600061402a84828501613ef9565b91505092915050565b60006020828403121561404557600080fd5b600061405384828501613f0e565b91505092915050565b6000806040838503121561406f57600080fd5b600061407d85828601613ef9565b925050602061408e85828601613ef9565b9150509250929050565b6000806000606084860312156140ad57600080fd5b60006140bb86828701613ef9565b93505060206140cc86828701613ef9565b92505060406140dd86828701613fe0565b9150509250925092565b600080600080608085870312156140fd57600080fd5b600061410b87828801613ef9565b945050602061411c87828801613ef9565b935050604061412d87828801613fe0565b925050606085013567ffffffffffffffff81111561414a57600080fd5b61415687828801613f8c565b91505092959194509250565b6000806040838503121561417557600080fd5b600061418385828601613ef9565b925050602061419485828601613f23565b9150509250929050565b600080604083850312156141b157600080fd5b60006141bf85828601613ef9565b92505060206141d085828601613fe0565b9150509250929050565b6000602082840312156141ec57600080fd5b60006141fa84828501613f23565b91505092915050565b60006020828403121561421557600080fd5b600061422384828501613f4d565b91505092915050565b6000806040838503121561423f57600080fd5b600061424d85828601613f38565b925050602083013567ffffffffffffffff81111561426a57600080fd5b61427685828601613fb6565b9150509250929050565b60008060006060848603121561429557600080fd5b60006142a386828701613f38565b935050602084013567ffffffffffffffff8111156142c057600080fd5b6142cc86828701613fb6565b925050604084013567ffffffffffffffff8111156142e957600080fd5b6142f586828701613f8c565b9150509250925092565b60006020828403121561431157600080fd5b600061431f84828501613f62565b91505092915050565b60006020828403121561433a57600080fd5b600061434884828501613f77565b91505092915050565b60006020828403121561436357600080fd5b600082013567ffffffffffffffff81111561437d57600080fd5b61438984828501613fb6565b91505092915050565b6000602082840312156143a457600080fd5b60006143b284828501613fe0565b91505092915050565b6000602082840312156143cd57600080fd5b60006143db84828501613ff5565b91505092915050565b60006143f08383614ee2565b60208301905092915050565b61440581615605565b82525050565b60006144168261544d565b614420818561547b565b935061442b8361543d565b8060005b8381101561445c57815161444388826143e4565b975061444e8361546e565b92505060018101905061442f565b5085935050505092915050565b61447281615617565b82525050565b600061448382615458565b61448d818561548c565b935061449d8185602086016156b1565b6144a68161584c565b840191505092915050565b6144ba81615690565b82525050565b60006144cb82615463565b6144d5818561549d565b93506144e58185602086016156b1565b6144ee8161584c565b840191505092915050565b600061450482615463565b61450e81856154ae565b935061451e8185602086016156b1565b80840191505092915050565b6000614537600b8361549d565b91507f53616c65207061757365640000000000000000000000000000000000000000006000830152602082019050919050565b60006145776035836154ae565b91507f6a736f6e2868747470733a2f2f7777772e616e696d657461732e696f2f61706960008301527f2f6d657461646174612f616e696d6f6e6b6579732f00000000000000000000006020830152603582019050919050565b60006145dd6008836154ae565b91507f292e726573756c740000000000000000000000000000000000000000000000006000830152600882019050919050565b600061461d60218361549d565b91507f45786365656473206d6178696d756d20416e696d6f6e6b65797320737570706c60008301527f79000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614683602b8361549d565b91507f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008301527f74206f6620626f756e64730000000000000000000000000000000000000000006020830152604082019050919050565b60006146e960328361549d565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b600061474f60268361549d565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006147b5601c8361549d565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b60006147f560248361549d565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061485b60198361549d565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b600061489b602c8361549d565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b600061490160388361549d565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b6000614967602a8361549d565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b60006149cd60298361549d565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000614a3360228361549d565b91507f4578636565647320726573657276656420416e696d6f6e6b657973207375707060008301527f6c790000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614a9960208361549d565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b6000614ad9602c8361549d565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000614b3f602c8361549d565b91507f4552433732314d657461646174613a2055524920736574206f66206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000614ba560208361549d565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000614be560298361549d565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000614c4b602f8361549d565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b6000614cb160218361549d565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614d1760198361549d565b91507f45746865722073656e74206973206e6f7420636f7272656374000000000000006000830152602082019050919050565b6000614d5760368361549d565b91507f50726f7661626c65207175657279207761732073656e742c207374616e64696e60008301527f6720627920666f722074686520616e737765722e2e2e000000000000000000006020830152604082019050919050565b6000614dbd60318361549d565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b6000614e2360258361549d565b91507f596f752063616e206d696e742061206d6178696d756d206f66203120416e696d60008301527f6f6e6b65790000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614e89602c8361549d565b91507f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008301527f7574206f6620626f756e647300000000000000000000000000000000000000006020830152604082019050919050565b614eeb81615679565b82525050565b614efa81615679565b82525050565b6000614f0c82856144f9565b9150614f1882846144f9565b91508190509392505050565b6000614f2f8261456a565b9150614f3b82846144f9565b9150614f46826145d0565b915081905092915050565b6000602082019050614f6660008301846143fc565b92915050565b6000608082019050614f8160008301876143fc565b614f8e60208301866143fc565b614f9b6040830185614ef1565b8181036060830152614fad8184614478565b905095945050505050565b60006020820190508181036000830152614fd2818461440b565b905092915050565b6000602082019050614fef6000830184614469565b92915050565b600060808201905061500a60008301876144b1565b818103602083015261501c81866144c0565b9050818103604083015261503081856144c0565b9050818103606083015261504481846144c0565b905095945050505050565b6000602082019050818103600083015261506981846144c0565b905092915050565b6000602082019050818103600083015261508a8161452a565b9050919050565b600060208201905081810360008301526150aa81614610565b9050919050565b600060208201905081810360008301526150ca81614676565b9050919050565b600060208201905081810360008301526150ea816146dc565b9050919050565b6000602082019050818103600083015261510a81614742565b9050919050565b6000602082019050818103600083015261512a816147a8565b9050919050565b6000602082019050818103600083015261514a816147e8565b9050919050565b6000602082019050818103600083015261516a8161484e565b9050919050565b6000602082019050818103600083015261518a8161488e565b9050919050565b600060208201905081810360008301526151aa816148f4565b9050919050565b600060208201905081810360008301526151ca8161495a565b9050919050565b600060208201905081810360008301526151ea816149c0565b9050919050565b6000602082019050818103600083015261520a81614a26565b9050919050565b6000602082019050818103600083015261522a81614a8c565b9050919050565b6000602082019050818103600083015261524a81614acc565b9050919050565b6000602082019050818103600083015261526a81614b32565b9050919050565b6000602082019050818103600083015261528a81614b98565b9050919050565b600060208201905081810360008301526152aa81614bd8565b9050919050565b600060208201905081810360008301526152ca81614c3e565b9050919050565b600060208201905081810360008301526152ea81614ca4565b9050919050565b6000602082019050818103600083015261530a81614d0a565b9050919050565b6000602082019050818103600083015261532a81614d4a565b9050919050565b6000602082019050818103600083015261534a81614db0565b9050919050565b6000602082019050818103600083015261536a81614e16565b9050919050565b6000602082019050818103600083015261538a81614e7c565b9050919050565b60006020820190506153a66000830184614ef1565b92915050565b6000604051905081810181811067ffffffffffffffff821117156153d3576153d261581d565b5b8060405250919050565b600067ffffffffffffffff8211156153f8576153f761581d565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff8211156154285761542761581d565b5b601f19601f8301169050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006154c482615679565b91506154cf83615679565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561550457615503615790565b5b828201905092915050565b600061551a82615683565b915061552583615683565b92508260ff0382111561553b5761553a615790565b5b828201905092915050565b600061555182615679565b915061555c83615679565b92508261556c5761556b6157bf565b5b828204905092915050565b600061558282615679565b915061558d83615679565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156155c6576155c5615790565b5b828202905092915050565b60006155dc82615679565b91506155e783615679565b9250828210156155fa576155f9615790565b5b828203905092915050565b600061561082615659565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b600061569b82615679565b9050919050565b82818337600083830152505050565b60005b838110156156cf5780820151818401526020810190506156b4565b838111156156de576000848401525b50505050565b600060028204905060018216806156fc57607f821691505b602082108114156157105761570f6157ee565b5b50919050565b600061572182615679565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561575457615753615790565b5b600182019050919050565b600061576a82615679565b915061577583615679565b925082615785576157846157bf565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b61586681615605565b811461587157600080fd5b50565b61587d81615617565b811461588857600080fd5b50565b61589481615623565b811461589f57600080fd5b50565b6158ab8161562d565b81146158b657600080fd5b50565b6158c281615679565b81146158cd57600080fd5b5056fe4248656b565271722b69582f3632583146567a41546f485947543833767858666f334b58686f57394141686a6f4d4c4e4f7848574c755a4a6e4762713238467069474b4b54706366756a6b647a505248394b4f4363676467714e6461654d6d4470506556737471383449687a7a734d724d624e5036373376435539617245546a386b737a4e474c52414c6d637479336a56535067674a7146684a397146396e6f6949423865504f7761377332453979543946557935742f6a7578645847633535504939337448574c55646f7061494b6a4f41674c723254737567334f69477979483256424233513876544936587962507070483665772b46327641675673733da26469706673582212202f7f7d1cd343664cc9921277c72a3523ac3f64561f5bb604f82c15469ae9168364736f6c6343000800003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101e35760003560e01c806370a0823111610102578063a0712d6811610095578063c87b56dd11610064578063c87b56dd146106b3578063ca800144146106f0578063e985e9c514610719578063f2fde38b14610756576101e3565b8063a0712d681461061a578063a22cb46514610636578063b88d4fde1461065f578063c36dfdb314610688576101e3565b80638da5cb5b116100d15780638da5cb5b1461057057806391b7f5ed1461059b57806395d89b41146105c457806398d5fdca146105ef576101e3565b806370a08231146104f6578063715018a61461053357806382ab890a1461054a578063853828b614610566576101e3565b806327dc297e1161017a578063438b630011610149578063438b6300146104165780634f6ccce71461045357806355f804b3146104905780636352211e146104b9576101e3565b806327dc297e1461035e5780632f745c591461038757806338bbfa50146103c457806342842e0e146103ed576101e3565b8063095ea7b3116101b6578063095ea7b3146102b657806316c61ccc146102df57806318160ddd1461030a57806323b872dd14610335576101e3565b806301ffc9a7146101e857806302329a291461022557806306fdde031461024e578063081812fc14610279575b600080fd5b3480156101f457600080fd5b5061020f600480360381019061020a91906142ff565b61077f565b60405161021c9190614fda565b60405180910390f35b34801561023157600080fd5b5061024c600480360381019061024791906141da565b6107f9565b005b34801561025a57600080fd5b50610263610892565b604051610270919061504f565b60405180910390f35b34801561028557600080fd5b506102a0600480360381019061029b9190614392565b610924565b6040516102ad9190614f51565b60405180910390f35b3480156102c257600080fd5b506102dd60048036038101906102d8919061419e565b6109a9565b005b3480156102eb57600080fd5b506102f4610ac1565b6040516103019190614fda565b60405180910390f35b34801561031657600080fd5b5061031f610ad4565b60405161032c9190615391565b60405180910390f35b34801561034157600080fd5b5061035c60048036038101906103579190614098565b610ae1565b005b34801561036a57600080fd5b506103856004803603810190610380919061422c565b610b41565b005b34801561039357600080fd5b506103ae60048036038101906103a9919061419e565b610bec565b6040516103bb9190615391565b60405180910390f35b3480156103d057600080fd5b506103eb60048036038101906103e69190614280565b610c91565b005b3480156103f957600080fd5b50610414600480360381019061040f9190614098565b610cb4565b005b34801561042257600080fd5b5061043d6004803603810190610438919061400a565b610cd4565b60405161044a9190614fb8565b60405180910390f35b34801561045f57600080fd5b5061047a60048036038101906104759190614392565b610dce565b6040516104879190615391565b60405180910390f35b34801561049c57600080fd5b506104b760048036038101906104b29190614351565b610e65565b005b3480156104c557600080fd5b506104e060048036038101906104db9190614392565b610efb565b6040516104ed9190614f51565b60405180910390f35b34801561050257600080fd5b5061051d6004803603810190610518919061400a565b610fad565b60405161052a9190615391565b60405180910390f35b34801561053f57600080fd5b50610548611065565b005b610564600480360381019061055f9190614392565b6111a2565b005b61056e611279565b005b34801561057c57600080fd5b506105856113c9565b6040516105929190614f51565b60405180910390f35b3480156105a757600080fd5b506105c260048036038101906105bd9190614392565b6113f3565b005b3480156105d057600080fd5b506105d9611479565b6040516105e6919061504f565b60405180910390f35b3480156105fb57600080fd5b5061060461150b565b6040516106119190615391565b60405180910390f35b610634600480360381019061062f9190614392565b611515565b005b34801561064257600080fd5b5061065d60048036038101906106589190614162565b6116ac565b005b34801561066b57600080fd5b50610686600480360381019061068191906140e7565b61182d565b005b34801561069457600080fd5b5061069d61188f565b6040516106aa919061504f565b60405180910390f35b3480156106bf57600080fd5b506106da60048036038101906106d59190614392565b61191d565b6040516106e7919061504f565b60405180910390f35b3480156106fc57600080fd5b506107176004803603810190610712919061419e565b611a90565b005b34801561072557600080fd5b50610740600480360381019061073b919061405c565b611bc3565b60405161074d9190614fda565b60405180910390f35b34801561076257600080fd5b5061077d6004803603810190610778919061400a565b611c57565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107f257506107f182611e03565b5b9050919050565b610801611ee5565b73ffffffffffffffffffffffffffffffffffffffff1661081f6113c9565b73ffffffffffffffffffffffffffffffffffffffff1614610875576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161086c90615271565b60405180910390fd5b80601360006101000a81548160ff02191690831515021790555050565b6060600080546108a1906156e4565b80601f01602080910402602001604051908101604052809291908181526020018280546108cd906156e4565b801561091a5780601f106108ef5761010080835404028352916020019161091a565b820191906000526020600020905b8154815290600101906020018083116108fd57829003601f168201915b5050505050905090565b600061092f82611eed565b61096e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096590615231565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109b482610efb565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1c906152d1565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a44611ee5565b73ffffffffffffffffffffffffffffffffffffffff161480610a735750610a7281610a6d611ee5565b611bc3565b5b610ab2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa990615191565b60405180910390fd5b610abc8383611f59565b505050565b601360009054906101000a900460ff1681565b6000600880549050905090565b610af2610aec611ee5565b82612012565b610b31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2890615331565b60405180910390fd5b610b3c8383836120f0565b505050565b610b4961234c565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610b8057600080fd5b610b9d601460008481526020019081526020016000205482612665565b60146000838152602001908152602001600020547fa109ba539900bf1b633f956d63c96fc89b814c7287f7aa50a9216d0b5565720782604051610be0919061504f565b60405180910390a25050565b6000610bf783610fad565b8210610c38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2f906150b1565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b6000801b600e60008060001b815260200190815260200160002081905550505050565b610ccf8383836040518060200160405280600081525061182d565b505050565b60606000610ce183610fad565b905060008167ffffffffffffffff811115610d25577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015610d535781602001602082028036833780820191505090505b50905060005b82811015610dc357610d6b8582610bec565b828281518110610da4577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010181815250508080610dbb90615716565b915050610d59565b508092505050919050565b6000610dd8610ad4565b8210610e19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1090615371565b60405180910390fd5b60088281548110610e53577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b610e6d611ee5565b73ffffffffffffffffffffffffffffffffffffffff16610e8b6113c9565b73ffffffffffffffffffffffffffffffffffffffff1614610ee1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed890615271565b60405180910390fd5b8060109080519060200190610ef7929190613dda565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610fa4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9b906151d1565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561101e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611015906151b1565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61106d611ee5565b73ffffffffffffffffffffffffffffffffffffffff1661108b6113c9565b73ffffffffffffffffffffffffffffffffffffffff16146110e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d890615271565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b7fc4dc360d0a9c0677a3379ae0a3d81e887f761e65fdf3d7e00859d1bcd3c473896040516111cf90615311565b60405180910390a1600061125b6040518060400160405280600381526020017f55524c000000000000000000000000000000000000000000000000000000000081525061121b846126d9565b60405160200161122b9190614f24565b60405160208183030381529060405260405180610120016040528061010081526020016158d161010091396128ae565b90508160146000838152602001908152602001600020819055505050565b611281611ee5565b73ffffffffffffffffffffffffffffffffffffffff1661129f6113c9565b73ffffffffffffffffffffffffffffffffffffffff16146112f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ec90615271565b60405180910390fd5b60006002476113049190615546565b9050601760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f1935050505061136657600080fd5b601860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050506113c657600080fd5b50565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6113fb611ee5565b73ffffffffffffffffffffffffffffffffffffffff166114196113c9565b73ffffffffffffffffffffffffffffffffffffffff161461146f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146690615271565b60405180910390fd5b8060128190555050565b606060018054611488906156e4565b80601f01602080910402602001604051908101604052809291908181526020018280546114b4906156e4565b80156115015780601f106114d657610100808354040283529160200191611501565b820191906000526020600020905b8154815290600101906020018083116114e457829003601f168201915b5050505050905090565b6000601254905090565b600061151f610ad4565b9050601360009054906101000a900460ff1615611571576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156890615071565b60405180910390fd5b600282106115b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ab90615351565b60405180910390fd5b6011546109c56115c491906155d1565b82826115d091906154b9565b10611610576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160790615091565b60405180910390fd5b8160125461161e9190615577565b341015611660576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611657906152f1565b60405180910390fd5b60005b828110156116a75761168033828461167b91906154b9565b612cc6565b611694818361168f91906154b9565b6111a2565b808061169f90615716565b915050611663565b505050565b6116b4611ee5565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611722576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171990615151565b60405180910390fd5b806005600061172f611ee5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166117dc611ee5565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516118219190614fda565b60405180910390a35050565b61183e611838611ee5565b83612012565b61187d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187490615331565b60405180910390fd5b61188984848484612ce4565b50505050565b6015805461189c906156e4565b80601f01602080910402602001604051908101604052809291908181526020018280546118c8906156e4565b80156119155780601f106118ea57610100808354040283529160200191611915565b820191906000526020600020905b8154815290600101906020018083116118f857829003601f168201915b505050505081565b606061192882611eed565b611967576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195e906152b1565b60405180910390fd5b6000601660008481526020019081526020016000208054611987906156e4565b80601f01602080910402602001604051908101604052809291908181526020018280546119b3906156e4565b8015611a005780601f106119d557610100808354040283529160200191611a00565b820191906000526020600020905b8154815290600101906020018083116119e357829003601f168201915b505050505090506000611a11612d40565b9050600081511415611a27578192505050611a8b565b600082511115611a5c578082604051602001611a44929190614f00565b60405160208183030381529060405292505050611a8b565b80611a6685612dd2565b604051602001611a77929190614f00565b604051602081830303815290604052925050505b919050565b611a98611ee5565b73ffffffffffffffffffffffffffffffffffffffff16611ab66113c9565b73ffffffffffffffffffffffffffffffffffffffff1614611b0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0390615271565b60405180910390fd5b601154811115611b51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b48906151f1565b60405180910390fd5b6000611b5b610ad4565b905060005b82811015611ba457611b7d848284611b7891906154b9565b612cc6565b611b918183611b8c91906154b9565b6111a2565b8080611b9c90615716565b915050611b60565b508160116000828254611bb791906155d1565b92505081905550505050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611c5f611ee5565b73ffffffffffffffffffffffffffffffffffffffff16611c7d6113c9565b73ffffffffffffffffffffffffffffffffffffffff1614611cd3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cca90615271565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611d43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3a906150f1565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611ece57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611ede5750611edd82612f7f565b5b9050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611fcc83610efb565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061201d82611eed565b61205c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205390615171565b60405180910390fd5b600061206783610efb565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806120d657508373ffffffffffffffffffffffffffffffffffffffff166120be84610924565b73ffffffffffffffffffffffffffffffffffffffff16145b806120e757506120e68185611bc3565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661211082610efb565b73ffffffffffffffffffffffffffffffffffffffff1614612166576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161215d90615291565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156121d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121cd90615131565b60405180910390fd5b6121e1838383612fe9565b6121ec600082611f59565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461223c91906155d1565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461229391906154b9565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60008073ffffffffffffffffffffffffffffffffffffffff16600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614806123d4575060006123d2600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166130fd565b145b156123e5576123e36000613108565b505b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166338cc48316040518163ffffffff1660e01b8152600401602060405180830381600087803b15801561244f57600080fd5b505af1158015612463573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906124879190614033565b73ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146125be57600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166338cc48316040518163ffffffff1660e01b8152600401602060405180830381600087803b15801561254557600080fd5b505af1158015612559573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061257d9190614033565b600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c281d19e6040518163ffffffff1660e01b8152600401602060405180830381600087803b15801561262857600080fd5b505af115801561263c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906126609190614033565b905090565b61266e82611eed565b6126ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126a490615251565b60405180910390fd5b806016600084815260200190815260200160002090805190602001906126d4929190613dda565b505050565b60606000821415612721576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506128a9565b600082905060005b6000821461275357808061273c90615716565b915050600a8261274c9190615546565b9150612729565b60008167ffffffffffffffff811115612795577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156127c75781602001600182028036833780820191505090505b50905060008290505b600086146128a1576001816127e591906155d1565b90506000600a80886127f79190615546565b6128019190615577565b8761280c91906155d1565b6030612818919061550f565b905060008160f81b90508084848151811061285c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a886128989190615546565b975050506127d0565b819450505050505b919050565b60008073ffffffffffffffffffffffffffffffffffffffff16600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16148061293657506000612934600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166130fd565b145b15612947576129456000613108565b505b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166338cc48316040518163ffffffff1660e01b8152600401602060405180830381600087803b1580156129b157600080fd5b505af11580156129c5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906129e99190614033565b73ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612b2057600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166338cc48316040518163ffffffff1660e01b8152600401602060405180830381600087803b158015612aa757600080fd5b505af1158015612abb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612adf9190614033565b600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663524f3889866040518263ffffffff1660e01b8152600401612b7d919061504f565b602060405180830381600087803b158015612b9757600080fd5b505af1158015612bab573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612bcf91906143bb565b905062030d403a612be09190615577565b670de0b6b3a7640000612bf391906154b9565b811115612c06576000801b915050612cbf565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663772286598260008888886040518663ffffffff1660e01b8152600401612c699493929190614ff5565b6020604051808303818588803b158015612c8257600080fd5b505af1158015612c96573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190612cbb9190614203565b9150505b9392505050565b612ce0828260405180602001604052806000815250613119565b5050565b612cef8484846120f0565b612cfb84848484613174565b612d3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d31906150d1565b60405180910390fd5b50505050565b606060108054612d4f906156e4565b80601f0160208091040260200160405190810160405280929190818152602001828054612d7b906156e4565b8015612dc85780601f10612d9d57610100808354040283529160200191612dc8565b820191906000526020600020905b815481529060010190602001808311612dab57829003601f168201915b5050505050905090565b60606000821415612e1a576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612f7a565b600082905060005b60008214612e4c578080612e3590615716565b915050600a82612e459190615546565b9150612e22565b60008167ffffffffffffffff811115612e8e577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612ec05781602001600182028036833780820191505090505b5090505b60008514612f7357600182612ed991906155d1565b9150600a85612ee8919061575f565b6030612ef491906154b9565b60f81b818381518110612f30577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612f6c9190615546565b9450612ec4565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612ff483838361330b565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156130375761303281613310565b613076565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614613075576130748382613359565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156130b9576130b4816134c6565b6130f8565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146130f7576130f68282613609565b5b5b505050565b6000813b9050919050565b6000613112613688565b9050919050565b6131238383613bdf565b6131306000848484613174565b61316f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613166906150d1565b60405180910390fd5b505050565b60006131958473ffffffffffffffffffffffffffffffffffffffff16613dad565b156132fe578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026131be611ee5565b8786866040518563ffffffff1660e01b81526004016131e09493929190614f6c565b602060405180830381600087803b1580156131fa57600080fd5b505af192505050801561322b57506040513d601f19601f820116820180604052508101906132289190614328565b60015b6132ae573d806000811461325b576040519150601f19603f3d011682016040523d82523d6000602084013e613260565b606091505b506000815114156132a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161329d906150d1565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613303565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161336684610fad565b61337091906155d1565b9050600060076000848152602001908152602001600020549050818114613455576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506134da91906155d1565b9050600060096000848152602001908152602001600020549050600060088381548110613530577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060088381548110613578577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200181905550816009600083815260200190815260200160002081905550600960008581526020019081526020016000206000905560088054806135ed577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b600061361483610fad565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b6000806136a8731d3b2638a7cc9f2cb3d298a3da7a90b67e5506ed6130fd565b111561374a57731d3b2638a7cc9f2cb3d298a3da7a90b67e5506ed600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506137416040518060400160405280600b81526020017f6574685f6d61696e6e6574000000000000000000000000000000000000000000815250613dc0565b60019050613bdc565b600061376973c03a2615d5efaf5f49f60b7bb6583eaec212fdf16130fd565b111561380b5773c03a2615d5efaf5f49f60b7bb6583eaec212fdf1600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506138026040518060400160405280600c81526020017f6574685f726f707374656e330000000000000000000000000000000000000000815250613dc0565b60019050613bdc565b600061382a73b7a07bcf2ba2f2703b24c0691b5278999c59ac7e6130fd565b11156138cc5773b7a07bcf2ba2f2703b24c0691b5278999c59ac7e600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506138c36040518060400160405280600981526020017f6574685f6b6f76616e0000000000000000000000000000000000000000000000815250613dc0565b60019050613bdc565b60006138eb73146500cfd35b22e4a392fe0adc06de1a1368ed486130fd565b111561398d5773146500cfd35b22e4a392fe0adc06de1a1368ed48600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506139846040518060400160405280600b81526020017f6574685f72696e6b656279000000000000000000000000000000000000000000815250613dc0565b60019050613bdc565b60006139ac73a2998efd205fb9d4b4963afb70778d6354ad3a416130fd565b1115613a4e5773a2998efd205fb9d4b4963afb70778d6354ad3a41600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550613a456040518060400160405280600a81526020017f6574685f676f65726c6900000000000000000000000000000000000000000000815250613dc0565b60019050613bdc565b6000613a6d736f485c8bf6fc43ea212e93bbf8ce046c7f1cb4756130fd565b1115613ad157736f485c8bf6fc43ea212e93bbf8ce046c7f1cb475600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060019050613bdc565b6000613af07320e12a1f859b3feae5fb2a0a32c18f5a65555bbf6130fd565b1115613b54577320e12a1f859b3feae5fb2a0a32c18f5a65555bbf600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060019050613bdc565b6000613b737351efaf4c8b3c9afbd5ab9f4bbc82784ab6ef8faa6130fd565b1115613bd7577351efaf4c8b3c9afbd5ab9f4bbc82784ab6ef8faa600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060019050613bdc565b600090505b90565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613c4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613c4690615211565b60405180910390fd5b613c5881611eed565b15613c98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613c8f90615111565b60405180910390fd5b613ca460008383612fe9565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613cf491906154b9565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b80600d9080519060200190613dd6929190613dda565b5050565b828054613de6906156e4565b90600052602060002090601f016020900481019282613e085760008555613e4f565b82601f10613e2157805160ff1916838001178555613e4f565b82800160010185558215613e4f579182015b82811115613e4e578251825591602001919060010190613e33565b5b509050613e5c9190613e60565b5090565b5b80821115613e79576000816000905550600101613e61565b5090565b6000613e90613e8b846153dd565b6153ac565b905082815260208101848484011115613ea857600080fd5b613eb38482856156a2565b509392505050565b6000613ece613ec98461540d565b6153ac565b905082815260208101848484011115613ee657600080fd5b613ef18482856156a2565b509392505050565b600081359050613f088161585d565b92915050565b600081519050613f1d8161585d565b92915050565b600081359050613f3281615874565b92915050565b600081359050613f478161588b565b92915050565b600081519050613f5c8161588b565b92915050565b600081359050613f71816158a2565b92915050565b600081519050613f86816158a2565b92915050565b600082601f830112613f9d57600080fd5b8135613fad848260208601613e7d565b91505092915050565b600082601f830112613fc757600080fd5b8135613fd7848260208601613ebb565b91505092915050565b600081359050613fef816158b9565b92915050565b600081519050614004816158b9565b92915050565b60006020828403121561401c57600080fd5b600061402a84828501613ef9565b91505092915050565b60006020828403121561404557600080fd5b600061405384828501613f0e565b91505092915050565b6000806040838503121561406f57600080fd5b600061407d85828601613ef9565b925050602061408e85828601613ef9565b9150509250929050565b6000806000606084860312156140ad57600080fd5b60006140bb86828701613ef9565b93505060206140cc86828701613ef9565b92505060406140dd86828701613fe0565b9150509250925092565b600080600080608085870312156140fd57600080fd5b600061410b87828801613ef9565b945050602061411c87828801613ef9565b935050604061412d87828801613fe0565b925050606085013567ffffffffffffffff81111561414a57600080fd5b61415687828801613f8c565b91505092959194509250565b6000806040838503121561417557600080fd5b600061418385828601613ef9565b925050602061419485828601613f23565b9150509250929050565b600080604083850312156141b157600080fd5b60006141bf85828601613ef9565b92505060206141d085828601613fe0565b9150509250929050565b6000602082840312156141ec57600080fd5b60006141fa84828501613f23565b91505092915050565b60006020828403121561421557600080fd5b600061422384828501613f4d565b91505092915050565b6000806040838503121561423f57600080fd5b600061424d85828601613f38565b925050602083013567ffffffffffffffff81111561426a57600080fd5b61427685828601613fb6565b9150509250929050565b60008060006060848603121561429557600080fd5b60006142a386828701613f38565b935050602084013567ffffffffffffffff8111156142c057600080fd5b6142cc86828701613fb6565b925050604084013567ffffffffffffffff8111156142e957600080fd5b6142f586828701613f8c565b9150509250925092565b60006020828403121561431157600080fd5b600061431f84828501613f62565b91505092915050565b60006020828403121561433a57600080fd5b600061434884828501613f77565b91505092915050565b60006020828403121561436357600080fd5b600082013567ffffffffffffffff81111561437d57600080fd5b61438984828501613fb6565b91505092915050565b6000602082840312156143a457600080fd5b60006143b284828501613fe0565b91505092915050565b6000602082840312156143cd57600080fd5b60006143db84828501613ff5565b91505092915050565b60006143f08383614ee2565b60208301905092915050565b61440581615605565b82525050565b60006144168261544d565b614420818561547b565b935061442b8361543d565b8060005b8381101561445c57815161444388826143e4565b975061444e8361546e565b92505060018101905061442f565b5085935050505092915050565b61447281615617565b82525050565b600061448382615458565b61448d818561548c565b935061449d8185602086016156b1565b6144a68161584c565b840191505092915050565b6144ba81615690565b82525050565b60006144cb82615463565b6144d5818561549d565b93506144e58185602086016156b1565b6144ee8161584c565b840191505092915050565b600061450482615463565b61450e81856154ae565b935061451e8185602086016156b1565b80840191505092915050565b6000614537600b8361549d565b91507f53616c65207061757365640000000000000000000000000000000000000000006000830152602082019050919050565b60006145776035836154ae565b91507f6a736f6e2868747470733a2f2f7777772e616e696d657461732e696f2f61706960008301527f2f6d657461646174612f616e696d6f6e6b6579732f00000000000000000000006020830152603582019050919050565b60006145dd6008836154ae565b91507f292e726573756c740000000000000000000000000000000000000000000000006000830152600882019050919050565b600061461d60218361549d565b91507f45786365656473206d6178696d756d20416e696d6f6e6b65797320737570706c60008301527f79000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614683602b8361549d565b91507f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008301527f74206f6620626f756e64730000000000000000000000000000000000000000006020830152604082019050919050565b60006146e960328361549d565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b600061474f60268361549d565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006147b5601c8361549d565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b60006147f560248361549d565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061485b60198361549d565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b600061489b602c8361549d565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b600061490160388361549d565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b6000614967602a8361549d565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b60006149cd60298361549d565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000614a3360228361549d565b91507f4578636565647320726573657276656420416e696d6f6e6b657973207375707060008301527f6c790000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614a9960208361549d565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b6000614ad9602c8361549d565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000614b3f602c8361549d565b91507f4552433732314d657461646174613a2055524920736574206f66206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000614ba560208361549d565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000614be560298361549d565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000614c4b602f8361549d565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b6000614cb160218361549d565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614d1760198361549d565b91507f45746865722073656e74206973206e6f7420636f7272656374000000000000006000830152602082019050919050565b6000614d5760368361549d565b91507f50726f7661626c65207175657279207761732073656e742c207374616e64696e60008301527f6720627920666f722074686520616e737765722e2e2e000000000000000000006020830152604082019050919050565b6000614dbd60318361549d565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b6000614e2360258361549d565b91507f596f752063616e206d696e742061206d6178696d756d206f66203120416e696d60008301527f6f6e6b65790000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614e89602c8361549d565b91507f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008301527f7574206f6620626f756e647300000000000000000000000000000000000000006020830152604082019050919050565b614eeb81615679565b82525050565b614efa81615679565b82525050565b6000614f0c82856144f9565b9150614f1882846144f9565b91508190509392505050565b6000614f2f8261456a565b9150614f3b82846144f9565b9150614f46826145d0565b915081905092915050565b6000602082019050614f6660008301846143fc565b92915050565b6000608082019050614f8160008301876143fc565b614f8e60208301866143fc565b614f9b6040830185614ef1565b8181036060830152614fad8184614478565b905095945050505050565b60006020820190508181036000830152614fd2818461440b565b905092915050565b6000602082019050614fef6000830184614469565b92915050565b600060808201905061500a60008301876144b1565b818103602083015261501c81866144c0565b9050818103604083015261503081856144c0565b9050818103606083015261504481846144c0565b905095945050505050565b6000602082019050818103600083015261506981846144c0565b905092915050565b6000602082019050818103600083015261508a8161452a565b9050919050565b600060208201905081810360008301526150aa81614610565b9050919050565b600060208201905081810360008301526150ca81614676565b9050919050565b600060208201905081810360008301526150ea816146dc565b9050919050565b6000602082019050818103600083015261510a81614742565b9050919050565b6000602082019050818103600083015261512a816147a8565b9050919050565b6000602082019050818103600083015261514a816147e8565b9050919050565b6000602082019050818103600083015261516a8161484e565b9050919050565b6000602082019050818103600083015261518a8161488e565b9050919050565b600060208201905081810360008301526151aa816148f4565b9050919050565b600060208201905081810360008301526151ca8161495a565b9050919050565b600060208201905081810360008301526151ea816149c0565b9050919050565b6000602082019050818103600083015261520a81614a26565b9050919050565b6000602082019050818103600083015261522a81614a8c565b9050919050565b6000602082019050818103600083015261524a81614acc565b9050919050565b6000602082019050818103600083015261526a81614b32565b9050919050565b6000602082019050818103600083015261528a81614b98565b9050919050565b600060208201905081810360008301526152aa81614bd8565b9050919050565b600060208201905081810360008301526152ca81614c3e565b9050919050565b600060208201905081810360008301526152ea81614ca4565b9050919050565b6000602082019050818103600083015261530a81614d0a565b9050919050565b6000602082019050818103600083015261532a81614d4a565b9050919050565b6000602082019050818103600083015261534a81614db0565b9050919050565b6000602082019050818103600083015261536a81614e16565b9050919050565b6000602082019050818103600083015261538a81614e7c565b9050919050565b60006020820190506153a66000830184614ef1565b92915050565b6000604051905081810181811067ffffffffffffffff821117156153d3576153d261581d565b5b8060405250919050565b600067ffffffffffffffff8211156153f8576153f761581d565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff8211156154285761542761581d565b5b601f19601f8301169050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006154c482615679565b91506154cf83615679565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561550457615503615790565b5b828201905092915050565b600061551a82615683565b915061552583615683565b92508260ff0382111561553b5761553a615790565b5b828201905092915050565b600061555182615679565b915061555c83615679565b92508261556c5761556b6157bf565b5b828204905092915050565b600061558282615679565b915061558d83615679565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156155c6576155c5615790565b5b828202905092915050565b60006155dc82615679565b91506155e783615679565b9250828210156155fa576155f9615790565b5b828203905092915050565b600061561082615659565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b600061569b82615679565b9050919050565b82818337600083830152505050565b60005b838110156156cf5780820151818401526020810190506156b4565b838111156156de576000848401525b50505050565b600060028204905060018216806156fc57607f821691505b602082108114156157105761570f6157ee565b5b50919050565b600061572182615679565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561575457615753615790565b5b600182019050919050565b600061576a82615679565b915061577583615679565b925082615785576157846157bf565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b61586681615605565b811461587157600080fd5b50565b61587d81615617565b811461588857600080fd5b50565b61589481615623565b811461589f57600080fd5b50565b6158ab8161562d565b81146158b657600080fd5b50565b6158c281615679565b81146158cd57600080fd5b5056fe4248656b565271722b69582f3632583146567a41546f485947543833767858666f334b58686f57394141686a6f4d4c4e4f7848574c755a4a6e4762713238467069474b4b54706366756a6b647a505248394b4f4363676467714e6461654d6d4470506556737471383449687a7a734d724d624e5036373376435539617245546a386b737a4e474c52414c6d637479336a56535067674a7146684a397146396e6f6949423865504f7761377332453979543946557935742f6a7578645847633535504939337448574c55646f7061494b6a4f41674c723254737567334f69477979483256424233513876544936587962507070483665772b46327641675673733da26469706673582212202f7f7d1cd343664cc9921277c72a3523ac3f64561f5bb604f82c15469ae9168364736f6c63430008000033

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

00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : baseURI (string):

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

42075:5402:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35891:237;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46018:74;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21924:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23384:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22921:397;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42288:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36544:113;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24274:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46312:341;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36212:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15924:189:1;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24650:151:0;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43716:342;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36734:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44336:102;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21618:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21348:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34496:148;;;;;;;;;;;;;:::i;:::-;;46665:809;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46100:194;;;:::i;:::-;;33845:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44113:93;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22093:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44450:81;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43127:581;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23677:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24886:285;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42377:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44778:857;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45647:363;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24043:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34799:244;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35891:237;35993:4;36032:35;36017:50;;;:11;:50;;;;:103;;;;36084:36;36108:11;36084:23;:36::i;:::-;36017:103;36010:110;;35891:237;;;:::o;46018:74::-;34076:12;:10;:12::i;:::-;34065:23;;:7;:5;:7::i;:::-;:23;;;34057:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46081:3:::1;46071:7;;:13;;;;;;;;;;;;;;;;;;46018:74:::0;:::o;21924:100::-;21978:13;22011:5;22004:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21924:100;:::o;23384:221::-;23460:7;23488:16;23496:7;23488;:16::i;:::-;23480:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;23573:15;:24;23589:7;23573:24;;;;;;;;;;;;;;;;;;;;;23566:31;;23384:221;;;:::o;22921:397::-;23002:13;23018:23;23033:7;23018:14;:23::i;:::-;23002:39;;23066:5;23060:11;;:2;:11;;;;23052:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;23146:5;23130:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;23155:37;23172:5;23179:12;:10;:12::i;:::-;23155:16;:37::i;:::-;23130:62;23122:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;23289:21;23298:2;23302:7;23289:8;:21::i;:::-;22921:397;;;:::o;42288:26::-;;;;;;;;;;;;;:::o;36544:113::-;36605:7;36632:10;:17;;;;36625:24;;36544:113;:::o;24274:305::-;24435:41;24454:12;:10;:12::i;:::-;24468:7;24435:18;:41::i;:::-;24427:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;24543:28;24553:4;24559:2;24563:7;24543:9;:28::i;:::-;24274:305;;;:::o;46312:341::-;46448:20;:18;:20::i;:::-;46434:34;;:10;:34;;;46426:43;;;;;;46490:37;46503:8;:14;46512:4;46503:14;;;;;;;;;;;;46519:7;46490:12;:37::i;:::-;46575:8;:14;46584:4;46575:14;;;;;;;;;;;;46553:37;46566:7;46553:37;;;;;;:::i;:::-;;;;;;;;46312:341;;:::o;36212:256::-;36309:7;36345:23;36362:5;36345:16;:23::i;:::-;36337:5;:31;36329:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;36434:12;:19;36447:5;36434:19;;;;;;;;;;;;;;;:26;36454:5;36434:26;;;;;;;;;;;;36427:33;;36212:256;;;;:::o;15924:189:1:-;16103:1;16095:10;;16058:22;:34;16089:1;16081:10;;16058:34;;;;;;;;;;;:47;;;;15924:189;;;:::o;24650:151:0:-;24754:39;24771:4;24777:2;24781:7;24754:39;;;;;;;;;;;;:16;:39::i;:::-;24650:151;;;:::o;43716:342::-;43775:16;43804:18;43825:17;43835:6;43825:9;:17::i;:::-;43804:38;;43855:25;43897:10;43883:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43855:53;;43923:9;43919:106;43938:10;43934:1;:14;43919:106;;;43983:30;44003:6;44011:1;43983:19;:30::i;:::-;43969:8;43978:1;43969:11;;;;;;;;;;;;;;;;;;;;;:44;;;;;43950:3;;;;;:::i;:::-;;;;43919:106;;;;44042:8;44035:15;;;;43716:342;;;:::o;36734:233::-;36809:7;36845:30;:28;:30::i;:::-;36837:5;:38;36829:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;36942:10;36953:5;36942:17;;;;;;;;;;;;;;;;;;;;;;;;36935:24;;36734:233;;;:::o;44336:102::-;34076:12;:10;:12::i;:::-;34065:23;;:7;:5;:7::i;:::-;:23;;;34057:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44423:7:::1;44407:13;:23;;;;;;;;;;;;:::i;:::-;;44336:102:::0;:::o;21618:239::-;21690:7;21710:13;21726:7;:16;21734:7;21726:16;;;;;;;;;;;;;;;;;;;;;21710:32;;21778:1;21761:19;;:5;:19;;;;21753:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;21844:5;21837:12;;;21618:239;;;:::o;21348:208::-;21420:7;21465:1;21448:19;;:5;:19;;;;21440:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;21532:9;:16;21542:5;21532:16;;;;;;;;;;;;;;;;21525:23;;21348:208;;;:::o;34496:148::-;34076:12;:10;:12::i;:::-;34065:23;;:7;:5;:7::i;:::-;:23;;;34057:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;34603:1:::1;34566:40;;34587:6;;;;;;;;;;;34566:40;;;;;;;;;;;;34634:1;34617:6;;:19;;;;;;;;;;;;;;;;;;34496:148::o:0;46665:809::-;46763:77;;;;;;:::i;:::-;;;;;;;;47011:15;47029:398;;;;;;;;;;;;;;;;;;47132:18;47141:8;47132;:18::i;:::-;47058:105;;;;;;;;:::i;:::-;;;;;;;;;;;;;47029:398;;;;;;;;;;;;;;;;;:14;:398::i;:::-;47011:416;;47458:8;47438;:17;47447:7;47438:17;;;;;;;;;;;:28;;;;46665:809;;:::o;46100:194::-;34076:12;:10;:12::i;:::-;34065:23;;:7;:5;:7::i;:::-;:23;;;34057:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46159:13:::1;46199:1;46175:21;:25;;;;:::i;:::-;46159:41;;46227:2;;;;;;;;;;;46219:16;;:23;46236:5;46219:23;;;;;;;;;;;;;;;;;;;;;;;46211:32;;;::::0;::::1;;46270:2;;;;;;;;;;;46262:16;;:23;46279:5;46262:23;;;;;;;;;;;;;;;;;;;;;;;46254:32;;;::::0;::::1;;34136:1;46100:194::o:0;33845:87::-;33891:7;33918:6;;;;;;;;;;;33911:13;;33845:87;:::o;44113:93::-;34076:12;:10;:12::i;:::-;34065:23;;:7;:5;:7::i;:::-;:23;;;34057:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44189:9:::1;44180:6;:18;;;;44113:93:::0;:::o;22093:104::-;22149:13;22182:7;22175:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22093:104;:::o;44450:81::-;44491:7;44517:6;;44510:13;;44450:81;:::o;43127:581::-;43180:14;43197:13;:11;:13::i;:::-;43180:30;;43231:7;;;;;;;;;;;43230:8;43221:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;43310:1;43304:3;:7;43295:88;;;;;;;;;;;;:::i;:::-;;;;;;;;;43425:9;;43418:4;:16;;;;:::i;:::-;43412:3;43403:6;:12;;;;:::i;:::-;:31;43394:84;;;;;;;;;;;;:::i;:::-;;;;;;;;;43520:3;43511:6;;:12;;;;:::i;:::-;43498:9;:25;;43489:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;43583:9;43579:122;43598:3;43594:1;:7;43579:122;;;43622:34;43633:10;43654:1;43645:6;:10;;;;:::i;:::-;43622:9;:34::i;:::-;43671:18;43687:1;43678:6;:10;;;;:::i;:::-;43671:6;:18::i;:::-;43603:3;;;;;:::i;:::-;;;;43579:122;;;;43127:581;;:::o;23677:295::-;23792:12;:10;:12::i;:::-;23780:24;;:8;:24;;;;23772:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;23892:8;23847:18;:32;23866:12;:10;:12::i;:::-;23847:32;;;;;;;;;;;;;;;:42;23880:8;23847:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;23945:8;23916:48;;23931:12;:10;:12::i;:::-;23916:48;;;23955:8;23916:48;;;;;;:::i;:::-;;;;;;;;23677:295;;:::o;24886:285::-;25018:41;25037:12;:10;:12::i;:::-;25051:7;25018:18;:41::i;:::-;25010:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;25124:39;25138:4;25144:2;25148:7;25157:5;25124:13;:39::i;:::-;24886:285;;;;:::o;42377:27::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;44778:857::-;44851:13;44889:16;44897:7;44889;:16::i;:::-;44881:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;44974:23;45000:10;:19;45011:7;45000:19;;;;;;;;;;;44974:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45034:18;45055:10;:8;:10::i;:::-;45034:31;;45183:1;45167:4;45161:18;:23;45157:80;;;45212:9;45205:16;;;;;;45157:80;45375:1;45355:9;45349:23;:27;45345:116;;;45428:4;45434:9;45411:33;;;;;;;;;:::i;:::-;;;;;;;;;;;;;45397:48;;;;;;45345:116;45601:4;45607:18;:7;:16;:18::i;:::-;45584:42;;;;;;;;;:::i;:::-;;;;;;;;;;;;;45570:57;;;;44778:857;;;;:::o;45647:363::-;34076:12;:10;:12::i;:::-;34065:23;;:7;:5;:7::i;:::-;:23;;;34057:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45747:9:::1;;45736:7;:20;;45727:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;45809:14;45826:13;:11;:13::i;:::-;45809:30;;45854:9;45850:120;45869:7;45865:1;:11;45850:120;;;45897:28;45908:3;45922:1;45913:6;:10;;;;:::i;:::-;45897:9;:28::i;:::-;45940:18;45956:1;45947:6;:10;;;;:::i;:::-;45940:6;:18::i;:::-;45878:3;;;;;:::i;:::-;;;;45850:120;;;;45995:7;45982:9;;:20;;;;;;;:::i;:::-;;;;;;;;34136:1;45647:363:::0;;:::o;24043:164::-;24140:4;24164:18;:25;24183:5;24164:25;;;;;;;;;;;;;;;:35;24190:8;24164:35;;;;;;;;;;;;;;;;;;;;;;;;;24157:42;;24043:164;;;;:::o;34799:244::-;34076:12;:10;:12::i;:::-;34065:23;;:7;:5;:7::i;:::-;:23;;;34057:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;34908:1:::1;34888:22;;:8;:22;;;;34880:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;34998:8;34969:38;;34990:6;;;;;;;;;;;34969:38;;;;;;;;;;;;35027:8;35018:6;;:17;;;;;;;;;;;;;;;;;;34799:244:::0;:::o;20992:292::-;21094:4;21133:25;21118:40;;;:11;:40;;;;:105;;;;21190:33;21175:48;;;:11;:48;;;;21118:105;:158;;;;21240:36;21264:11;21240:23;:36::i;:::-;21118:158;21111:165;;20992:292;;;:::o;9009:98::-;9062:7;9089:10;9082:17;;9009:98;:::o;26638:127::-;26703:4;26755:1;26727:30;;:7;:16;26735:7;26727:16;;;;;;;;;;;;;;;;;;;;;:30;;;;26720:37;;26638:127;;;:::o;30515:174::-;30617:2;30590:15;:24;30606:7;30590:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;30673:7;30669:2;30635:46;;30644:23;30659:7;30644:14;:23::i;:::-;30635:46;;;;;;;;;;;;30515:174;;:::o;26932:348::-;27025:4;27050:16;27058:7;27050;:16::i;:::-;27042:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;27126:13;27142:23;27157:7;27142:14;:23::i;:::-;27126:39;;27195:5;27184:16;;:7;:16;;;:51;;;;27228:7;27204:31;;:20;27216:7;27204:11;:20::i;:::-;:31;;;27184:51;:87;;;;27239:32;27256:5;27263:7;27239:16;:32::i;:::-;27184:87;27176:96;;;26932:348;;;;:::o;29853:544::-;29978:4;29951:31;;:23;29966:7;29951:14;:23::i;:::-;:31;;;29943:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;30061:1;30047:16;;:2;:16;;;;30039:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;30117:39;30138:4;30144:2;30148:7;30117:20;:39::i;:::-;30221:29;30238:1;30242:7;30221:8;:29::i;:::-;30282:1;30263:9;:15;30273:4;30263:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;30311:1;30294:9;:13;30304:2;30294:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;30342:2;30323:7;:16;30331:7;30323:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;30381:7;30377:2;30362:27;;30371:4;30362:27;;;;;;;;;;;;29853:544;;;:::o;38156:132:1:-;38216:24;12253:1;12229:26;;12237:3;;;;;;;;;;;12229:26;;;12228:64;;;;12290:1;12261:25;12281:3;;;;;;;;;;;12261:11;:25::i;:::-;:30;12228:64;12224:132;;;12309:35;11875:1;12309:19;:35::i;:::-;;12224:132;12391:3;;;;;;;;;;;:14;;;:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;12370:37;;12378:8;;;;;;;;;;;12370:37;;;12366:108;;12445:3;;;;;;;;;;;:14;;;:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;12424:8;;:38;;;;;;;;;;;;;;;;;;12366:108;38260:8:::1;;;;;;;;;;;:18;;;:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;38253:27;;38156:132:::0;:::o;44543:223:0:-;44647:16;44655:7;44647;:16::i;:::-;44639:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;44749:9;44727:10;:19;44738:7;44727:19;;;;;;;;;;;:31;;;;;;;;;;;;:::i;:::-;;44543:223;;:::o;44969:573:1:-;45019:27;45069:1;45063:2;:7;45059:50;;;45087:10;;;;;;;;;;;;;;;;;;;;;45059:50;45119:6;45128:2;45119:11;;45141:8;45160:69;45172:1;45167;:6;45160:69;;45190:5;;;;;:::i;:::-;;;;45215:2;45210:7;;;;;:::i;:::-;;;45160:69;;;45239:17;45269:3;45259:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45239:34;;45284:6;45293:3;45284:12;;45307:198;45320:1;45314:2;:7;45307:198;;45344:1;45342;:3;;;;:::i;:::-;45338:7;;45360:10;45400:2;45395;45390;:7;;;;:::i;:::-;:12;;;;:::i;:::-;45385:2;:17;;;;:::i;:::-;45374:2;:29;;;;:::i;:::-;45360:44;;45419:9;45438:4;45431:12;;45419:24;;45468:2;45458:4;45463:1;45458:7;;;;;;;;;;;;;;;;;;;:12;;;;;;;;;;;45491:2;45485:8;;;;;:::i;:::-;;;45307:198;;;;;45529:4;45515:19;;;;;;44969:573;;;;:::o;18110:391::-;18233:11;12253:1;12229:26;;12237:3;;;;;;;;;;;12229:26;;;12228:64;;;;12290:1;12261:25;12281:3;;;;;;;;;;;12261:11;:25::i;:::-;:30;12228:64;12224:132;;;12309:35;11875:1;12309:19;:35::i;:::-;;12224:132;12391:3;;;;;;;;;;;:14;;;:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;12370:37;;12378:8;;;;;;;;;;;12370:37;;;12366:108;;12445:3;;;;;;;;;;;:14;;;:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;12424:8;;:38;;;;;;;;;;;;;;;;;;12366:108;18257:10:::1;18270:8;;;;;;;;;;;:17;;;18288:11;18270:30;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;18257:43;;18347:6;18333:11;:20;;;;:::i;:::-;18323:7;:30;;;;:::i;:::-;18315:5;:38;18311:106;;;18377:1;18370:8:::0;::::1;;;;;;18311:106;18434:8;;;;;;;;;;;:15;;;18457:5;18464:1;18467:11;18480:5;18487;18434:59;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;18427:66;;;12484:1;18110:391:::0;;;;;:::o;27622:110:0:-;27698:26;27708:2;27712:7;27698:26;;;;;;;;;;;;:9;:26::i;:::-;27622:110;;:::o;26053:272::-;26167:28;26177:4;26183:2;26187:7;26167:9;:28::i;:::-;26214:48;26237:4;26243:2;26247:7;26256:5;26214:22;:48::i;:::-;26206:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;26053:272;;;;:::o;44214:114::-;44274:13;44307;44300:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44214:114;:::o;6686:723::-;6742:13;6972:1;6963:5;:10;6959:53;;;6990:10;;;;;;;;;;;;;;;;;;;;;6959:53;7022:12;7037:5;7022:20;;7053:14;7078:78;7093:1;7085:4;:9;7078:78;;7111:8;;;;;:::i;:::-;;;;7142:2;7134:10;;;;;:::i;:::-;;;7078:78;;;7166:19;7198:6;7188:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7166:39;;7216:154;7232:1;7223:5;:10;7216:154;;7260:1;7250:11;;;;;:::i;:::-;;;7327:2;7319:5;:10;;;;:::i;:::-;7306:2;:24;;;;:::i;:::-;7293:39;;7276:6;7283;7276:14;;;;;;;;;;;;;;;;;;;:56;;;;;;;;;;;7356:2;7347:11;;;;;:::i;:::-;;;7216:154;;;7394:6;7380:21;;;;;6686:723;;;;:::o;1537:157::-;1622:4;1661:25;1646:40;;;:11;:40;;;;1639:47;;1537:157;;;:::o;37580:555::-;37690:45;37717:4;37723:2;37727:7;37690:26;:45::i;:::-;37768:1;37752:18;;:4;:18;;;37748:187;;;37787:40;37819:7;37787:31;:40::i;:::-;37748:187;;;37857:2;37849:10;;:4;:10;;;37845:90;;37876:47;37909:4;37915:7;37876:32;:47::i;:::-;37845:90;37748:187;37963:1;37949:16;;:2;:16;;;37945:183;;;37982:45;38019:7;37982:36;:45::i;:::-;37945:183;;;38055:4;38049:10;;:2;:10;;;38045:83;;38076:40;38104:2;38108:7;38076:27;:40::i;:::-;38045:83;37945:183;37580:555;;;:::o;38296:151:1:-;38355:10;38423:5;38411:18;38402:27;;38387:53;;;:::o;12978:208::-;13043:16;13157:21;:19;:21::i;:::-;13150:28;;12978:208;;;:::o;27959:250:0:-;28055:18;28061:2;28065:7;28055:5;:18::i;:::-;28092:54;28123:1;28127:2;28131:7;28140:5;28092:22;:54::i;:::-;28084:117;;;;;;;;;;;;:::i;:::-;;;;;;;;;27959:250;;;:::o;31254:843::-;31375:4;31401:15;:2;:13;;;:15::i;:::-;31397:693;;;31453:2;31437:36;;;31474:12;:10;:12::i;:::-;31488:4;31494:7;31503:5;31437:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;31433:602;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31700:1;31683:6;:13;:18;31679:341;;;31726:60;;;;;;;;;;:::i;:::-;;;;;;;;31679:341;31970:6;31964:13;31955:6;31951:2;31947:15;31940:38;31433:602;31570:45;;;31560:55;;;:6;:55;;;;31553:62;;;;;31397:693;32074:4;32067:11;;31254:843;;;;;;;:::o;32710:93::-;;;;:::o;38858:164::-;38962:10;:17;;;;38935:15;:24;38951:7;38935:24;;;;;;;;;;;:44;;;;38990:10;39006:7;38990:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38858:164;:::o;39649:988::-;39915:22;39965:1;39940:22;39957:4;39940:16;:22::i;:::-;:26;;;;:::i;:::-;39915:51;;39977:18;39998:17;:26;40016:7;39998:26;;;;;;;;;;;;39977:47;;40145:14;40131:10;:28;40127:328;;40176:19;40198:12;:18;40211:4;40198:18;;;;;;;;;;;;;;;:34;40217:14;40198:34;;;;;;;;;;;;40176:56;;40282:11;40249:12;:18;40262:4;40249:18;;;;;;;;;;;;;;;:30;40268:10;40249:30;;;;;;;;;;;:44;;;;40399:10;40366:17;:30;40384:11;40366:30;;;;;;;;;;;:43;;;;40127:328;;40551:17;:26;40569:7;40551:26;;;;;;;;;;;40544:33;;;40595:12;:18;40608:4;40595:18;;;;;;;;;;;;;;;:34;40614:14;40595:34;;;;;;;;;;;40588:41;;;39649:988;;;;:::o;40932:1079::-;41185:22;41230:1;41210:10;:17;;;;:21;;;;:::i;:::-;41185:46;;41242:18;41263:15;:24;41279:7;41263:24;;;;;;;;;;;;41242:45;;41614:19;41636:10;41647:14;41636:26;;;;;;;;;;;;;;;;;;;;;;;;41614:48;;41700:11;41675:10;41686;41675:22;;;;;;;;;;;;;;;;;;;;;;;:36;;;;41811:10;41780:15;:28;41796:11;41780:28;;;;;;;;;;;:41;;;;41952:15;:24;41968:7;41952:24;;;;;;;;;;;41945:31;;;41987:10;:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40932:1079;;;;:::o;38436:221::-;38521:14;38538:20;38555:2;38538:16;:20::i;:::-;38521:37;;38596:7;38569:12;:16;38582:2;38569:16;;;;;;;;;;;;;;;:24;38586:6;38569:24;;;;;;;;;;;:34;;;;38643:6;38614:17;:26;38632:7;38614:26;;;;;;;;;;;:35;;;;38436:221;;;:::o;13470:2070:1:-;13519:16;13610:1;13552:55;13564:42;13552:11;:55::i;:::-;:59;13548:250;;;13664:42;13638:3;;:69;;;;;;;;;;;;;;;;;;13722:38;;;;;;;;;;;;;;;;;;:23;:38::i;:::-;13782:4;13775:11;;;;13548:250;13870:1;13812:55;13824:42;13812:11;:55::i;:::-;:59;13808:259;;;13932:42;13906:3;;:69;;;;;;;;;;;;;;;;;;13990:39;;;;;;;;;;;;;;;;;;:23;:39::i;:::-;14051:4;14044:11;;;;13808:259;14139:1;14081:55;14093:42;14081:11;:55::i;:::-;:59;14077:254;;;14199:42;14173:3;;:69;;;;;;;;;;;;;;;;;;14257:36;;;;;;;;;;;;;;;;;;:23;:36::i;:::-;14315:4;14308:11;;;;14077:254;14403:1;14345:55;14357:42;14345:11;:55::i;:::-;:59;14341:258;;;14465:42;14439:3;;:69;;;;;;;;;;;;;;;;;;14523:38;;;;;;;;;;;;;;;;;;:23;:38::i;:::-;14583:4;14576:11;;;;14341:258;14671:1;14613:55;14625:42;14613:11;:55::i;:::-;:59;14609:256;;;14732:42;14706:3;;:69;;;;;;;;;;;;;;;;;;14790:37;;;;;;;;;;;;;;;;;;:23;:37::i;:::-;14849:4;14842:11;;;;14609:256;14937:1;14879:55;14891:42;14879:11;:55::i;:::-;:59;14875:205;;;14999:42;14973:3;;:69;;;;;;;;;;;;;;;;;;15064:4;15057:11;;;;14875:205;15152:1;15094:55;15106:42;15094:11;:55::i;:::-;:59;15090:204;;;15213:42;15187:3;;:69;;;;;;;;;;;;;;;;;;15278:4;15271:11;;;;15090:204;15366:1;15308:55;15320:42;15308:11;:55::i;:::-;:59;15304:206;;;15429:42;15403:3;;:69;;;;;;;;;;;;;;;;;;15494:4;15487:11;;;;15304:206;15527:5;15520:12;;13470:2070;;:::o;28545:382:0:-;28639:1;28625:16;;:2;:16;;;;28617:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;28698:16;28706:7;28698;:16::i;:::-;28697:17;28689:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;28760:45;28789:1;28793:2;28797:7;28760:20;:45::i;:::-;28835:1;28818:9;:13;28828:2;28818:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;28866:2;28847:7;:16;28855:7;28847:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;28911:7;28907:2;28886:33;;28903:1;28886:33;;;;;;;;;;;;28545:382;;:::o;10065:422::-;10125:4;10333:12;10444:7;10432:20;10424:28;;10478:1;10471:4;:8;10464:15;;;10065:422;;;:::o;13194:127:1:-;13300:13;13276:21;:37;;;;;;;;;;;;:::i;:::-;;13194:127;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:342:2:-;;109:64;124:48;165:6;124:48;:::i;:::-;109:64;:::i;:::-;100:73;;196:6;189:5;182:21;234:4;227:5;223:16;272:3;263:6;258:3;254:16;251:25;248:2;;;289:1;286;279:12;248:2;302:41;336:6;331:3;326;302:41;:::i;:::-;90:259;;;;;;:::o;355:344::-;;458:65;473:49;515:6;473:49;:::i;:::-;458:65;:::i;:::-;449:74;;546:6;539:5;532:21;584:4;577:5;573:16;622:3;613:6;608:3;604:16;601:25;598:2;;;639:1;636;629:12;598:2;652:41;686:6;681:3;676;652:41;:::i;:::-;439:260;;;;;;:::o;705:139::-;;789:6;776:20;767:29;;805:33;832:5;805:33;:::i;:::-;757:87;;;;:::o;850:143::-;;938:6;932:13;923:22;;954:33;981:5;954:33;:::i;:::-;913:80;;;;:::o;999:133::-;;1080:6;1067:20;1058:29;;1096:30;1120:5;1096:30;:::i;:::-;1048:84;;;;:::o;1138:139::-;;1222:6;1209:20;1200:29;;1238:33;1265:5;1238:33;:::i;:::-;1190:87;;;;:::o;1283:143::-;;1371:6;1365:13;1356:22;;1387:33;1414:5;1387:33;:::i;:::-;1346:80;;;;:::o;1432:137::-;;1515:6;1502:20;1493:29;;1531:32;1557:5;1531:32;:::i;:::-;1483:86;;;;:::o;1575:141::-;;1662:6;1656:13;1647:22;;1678:32;1704:5;1678:32;:::i;:::-;1637:79;;;;:::o;1735:271::-;;1839:3;1832:4;1824:6;1820:17;1816:27;1806:2;;1857:1;1854;1847:12;1806:2;1897:6;1884:20;1922:78;1996:3;1988:6;1981:4;1973:6;1969:17;1922:78;:::i;:::-;1913:87;;1796:210;;;;;:::o;2026:273::-;;2131:3;2124:4;2116:6;2112:17;2108:27;2098:2;;2149:1;2146;2139:12;2098:2;2189:6;2176:20;2214:79;2289:3;2281:6;2274:4;2266:6;2262:17;2214:79;:::i;:::-;2205:88;;2088:211;;;;;:::o;2305:139::-;;2389:6;2376:20;2367:29;;2405:33;2432:5;2405:33;:::i;:::-;2357:87;;;;:::o;2450:143::-;;2538:6;2532:13;2523:22;;2554:33;2581:5;2554:33;:::i;:::-;2513:80;;;;:::o;2599:262::-;;2707:2;2695:9;2686:7;2682:23;2678:32;2675:2;;;2723:1;2720;2713:12;2675:2;2766:1;2791:53;2836:7;2827:6;2816:9;2812:22;2791:53;:::i;:::-;2781:63;;2737:117;2665:196;;;;:::o;2867:284::-;;2986:2;2974:9;2965:7;2961:23;2957:32;2954:2;;;3002:1;2999;2992:12;2954:2;3045:1;3070:64;3126:7;3117:6;3106:9;3102:22;3070:64;:::i;:::-;3060:74;;3016:128;2944:207;;;;:::o;3157:407::-;;;3282:2;3270:9;3261:7;3257:23;3253:32;3250:2;;;3298:1;3295;3288:12;3250:2;3341:1;3366:53;3411:7;3402:6;3391:9;3387:22;3366:53;:::i;:::-;3356:63;;3312:117;3468:2;3494:53;3539:7;3530:6;3519:9;3515:22;3494:53;:::i;:::-;3484:63;;3439:118;3240:324;;;;;:::o;3570:552::-;;;;3712:2;3700:9;3691:7;3687:23;3683:32;3680:2;;;3728:1;3725;3718:12;3680:2;3771:1;3796:53;3841:7;3832:6;3821:9;3817:22;3796:53;:::i;:::-;3786:63;;3742:117;3898:2;3924:53;3969:7;3960:6;3949:9;3945:22;3924:53;:::i;:::-;3914:63;;3869:118;4026:2;4052:53;4097:7;4088:6;4077:9;4073:22;4052:53;:::i;:::-;4042:63;;3997:118;3670:452;;;;;:::o;4128:809::-;;;;;4296:3;4284:9;4275:7;4271:23;4267:33;4264:2;;;4313:1;4310;4303:12;4264:2;4356:1;4381:53;4426:7;4417:6;4406:9;4402:22;4381:53;:::i;:::-;4371:63;;4327:117;4483:2;4509:53;4554:7;4545:6;4534:9;4530:22;4509:53;:::i;:::-;4499:63;;4454:118;4611:2;4637:53;4682:7;4673:6;4662:9;4658:22;4637:53;:::i;:::-;4627:63;;4582:118;4767:2;4756:9;4752:18;4739:32;4798:18;4790:6;4787:30;4784:2;;;4830:1;4827;4820:12;4784:2;4858:62;4912:7;4903:6;4892:9;4888:22;4858:62;:::i;:::-;4848:72;;4710:220;4254:683;;;;;;;:::o;4943:401::-;;;5065:2;5053:9;5044:7;5040:23;5036:32;5033:2;;;5081:1;5078;5071:12;5033:2;5124:1;5149:53;5194:7;5185:6;5174:9;5170:22;5149:53;:::i;:::-;5139:63;;5095:117;5251:2;5277:50;5319:7;5310:6;5299:9;5295:22;5277:50;:::i;:::-;5267:60;;5222:115;5023:321;;;;;:::o;5350:407::-;;;5475:2;5463:9;5454:7;5450:23;5446:32;5443:2;;;5491:1;5488;5481:12;5443:2;5534:1;5559:53;5604:7;5595:6;5584:9;5580:22;5559:53;:::i;:::-;5549:63;;5505:117;5661:2;5687:53;5732:7;5723:6;5712:9;5708:22;5687:53;:::i;:::-;5677:63;;5632:118;5433:324;;;;;:::o;5763:256::-;;5868:2;5856:9;5847:7;5843:23;5839:32;5836:2;;;5884:1;5881;5874:12;5836:2;5927:1;5952:50;5994:7;5985:6;5974:9;5970:22;5952:50;:::i;:::-;5942:60;;5898:114;5826:193;;;;:::o;6025:284::-;;6144:2;6132:9;6123:7;6119:23;6115:32;6112:2;;;6160:1;6157;6150:12;6112:2;6203:1;6228:64;6284:7;6275:6;6264:9;6260:22;6228:64;:::i;:::-;6218:74;;6174:128;6102:207;;;;:::o;6315:520::-;;;6450:2;6438:9;6429:7;6425:23;6421:32;6418:2;;;6466:1;6463;6456:12;6418:2;6509:1;6534:53;6579:7;6570:6;6559:9;6555:22;6534:53;:::i;:::-;6524:63;;6480:117;6664:2;6653:9;6649:18;6636:32;6695:18;6687:6;6684:30;6681:2;;;6727:1;6724;6717:12;6681:2;6755:63;6810:7;6801:6;6790:9;6786:22;6755:63;:::i;:::-;6745:73;;6607:221;6408:427;;;;;:::o;6841:776::-;;;;7002:2;6990:9;6981:7;6977:23;6973:32;6970:2;;;7018:1;7015;7008:12;6970:2;7061:1;7086:53;7131:7;7122:6;7111:9;7107:22;7086:53;:::i;:::-;7076:63;;7032:117;7216:2;7205:9;7201:18;7188:32;7247:18;7239:6;7236:30;7233:2;;;7279:1;7276;7269:12;7233:2;7307:63;7362:7;7353:6;7342:9;7338:22;7307:63;:::i;:::-;7297:73;;7159:221;7447:2;7436:9;7432:18;7419:32;7478:18;7470:6;7467:30;7464:2;;;7510:1;7507;7500:12;7464:2;7538:62;7592:7;7583:6;7572:9;7568:22;7538:62;:::i;:::-;7528:72;;7390:220;6960:657;;;;;:::o;7623:260::-;;7730:2;7718:9;7709:7;7705:23;7701:32;7698:2;;;7746:1;7743;7736:12;7698:2;7789:1;7814:52;7858:7;7849:6;7838:9;7834:22;7814:52;:::i;:::-;7804:62;;7760:116;7688:195;;;;:::o;7889:282::-;;8007:2;7995:9;7986:7;7982:23;7978:32;7975:2;;;8023:1;8020;8013:12;7975:2;8066:1;8091:63;8146:7;8137:6;8126:9;8122:22;8091:63;:::i;:::-;8081:73;;8037:127;7965:206;;;;:::o;8177:375::-;;8295:2;8283:9;8274:7;8270:23;8266:32;8263:2;;;8311:1;8308;8301:12;8263:2;8382:1;8371:9;8367:17;8354:31;8412:18;8404:6;8401:30;8398:2;;;8444:1;8441;8434:12;8398:2;8472:63;8527:7;8518:6;8507:9;8503:22;8472:63;:::i;:::-;8462:73;;8325:220;8253:299;;;;:::o;8558:262::-;;8666:2;8654:9;8645:7;8641:23;8637:32;8634:2;;;8682:1;8679;8672:12;8634:2;8725:1;8750:53;8795:7;8786:6;8775:9;8771:22;8750:53;:::i;:::-;8740:63;;8696:117;8624:196;;;;:::o;8826:284::-;;8945:2;8933:9;8924:7;8920:23;8916:32;8913:2;;;8961:1;8958;8951:12;8913:2;9004:1;9029:64;9085:7;9076:6;9065:9;9061:22;9029:64;:::i;:::-;9019:74;;8975:128;8903:207;;;;:::o;9116:179::-;;9206:46;9248:3;9240:6;9206:46;:::i;:::-;9284:4;9279:3;9275:14;9261:28;;9196:99;;;;:::o;9301:118::-;9388:24;9406:5;9388:24;:::i;:::-;9383:3;9376:37;9366:53;;:::o;9455:732::-;;9603:54;9651:5;9603:54;:::i;:::-;9673:86;9752:6;9747:3;9673:86;:::i;:::-;9666:93;;9783:56;9833:5;9783:56;:::i;:::-;9862:7;9893:1;9878:284;9903:6;9900:1;9897:13;9878:284;;;9979:6;9973:13;10006:63;10065:3;10050:13;10006:63;:::i;:::-;9999:70;;10092:60;10145:6;10092:60;:::i;:::-;10082:70;;9938:224;9925:1;9922;9918:9;9913:14;;9878:284;;;9882:14;10178:3;10171:10;;9579:608;;;;;;;:::o;10193:109::-;10274:21;10289:5;10274:21;:::i;:::-;10269:3;10262:34;10252:50;;:::o;10308:360::-;;10422:38;10454:5;10422:38;:::i;:::-;10476:70;10539:6;10534:3;10476:70;:::i;:::-;10469:77;;10555:52;10600:6;10595:3;10588:4;10581:5;10577:16;10555:52;:::i;:::-;10632:29;10654:6;10632:29;:::i;:::-;10627:3;10623:39;10616:46;;10398:270;;;;;:::o;10674:147::-;10769:45;10808:5;10769:45;:::i;:::-;10764:3;10757:58;10747:74;;:::o;10827:364::-;;10943:39;10976:5;10943:39;:::i;:::-;10998:71;11062:6;11057:3;10998:71;:::i;:::-;10991:78;;11078:52;11123:6;11118:3;11111:4;11104:5;11100:16;11078:52;:::i;:::-;11155:29;11177:6;11155:29;:::i;:::-;11150:3;11146:39;11139:46;;10919:272;;;;;:::o;11197:377::-;;11331:39;11364:5;11331:39;:::i;:::-;11386:89;11468:6;11463:3;11386:89;:::i;:::-;11379:96;;11484:52;11529:6;11524:3;11517:4;11510:5;11506:16;11484:52;:::i;:::-;11561:6;11556:3;11552:16;11545:23;;11307:267;;;;;:::o;11580:309::-;;11743:67;11807:2;11802:3;11743:67;:::i;:::-;11736:74;;11840:13;11836:1;11831:3;11827:11;11820:34;11880:2;11875:3;11871:12;11864:19;;11726:163;;;:::o;11895:445::-;;12076:85;12158:2;12153:3;12076:85;:::i;:::-;12069:92;;12191:34;12187:1;12182:3;12178:11;12171:55;12265:23;12260:2;12255:3;12251:12;12244:45;12323:2;12318:3;12314:12;12307:19;;12059:281;;;:::o;12354:360::-;;12543:84;12625:1;12620:3;12543:84;:::i;:::-;12536:91;;12661:10;12657:1;12652:3;12648:11;12641:31;12702:1;12697:3;12693:11;12686:18;;12518:196;;;:::o;12724:385::-;;12891:67;12955:2;12950:3;12891:67;:::i;:::-;12884:74;;12992:34;12988:1;12983:3;12979:11;12972:55;13062:3;13057:2;13052:3;13048:12;13041:25;13096:2;13091:3;13087:12;13080:19;;12870:239;;;:::o;13119:395::-;;13286:67;13350:2;13345:3;13286:67;:::i;:::-;13279:74;;13387:34;13383:1;13378:3;13374:11;13367:55;13457:13;13452:2;13447:3;13443:12;13436:35;13501:2;13496:3;13492:12;13485:19;;13265:249;;;:::o;13524:402::-;;13691:67;13755:2;13750:3;13691:67;:::i;:::-;13684:74;;13792:34;13788:1;13783:3;13779:11;13772:55;13862:20;13857:2;13852:3;13848:12;13841:42;13913:2;13908:3;13904:12;13897:19;;13670:256;;;:::o;13936:390::-;;14103:67;14167:2;14162:3;14103:67;:::i;:::-;14096:74;;14204:34;14200:1;14195:3;14191:11;14184:55;14274:8;14269:2;14264:3;14260:12;14253:30;14313:2;14308:3;14304:12;14297:19;;14082:244;;;:::o;14336:342::-;;14503:67;14567:2;14562:3;14503:67;:::i;:::-;14496:74;;14604:30;14600:1;14595:3;14591:11;14584:51;14665:2;14660:3;14656:12;14649:19;;14482:196;;;:::o;14688:388::-;;14855:67;14919:2;14914:3;14855:67;:::i;:::-;14848:74;;14956:34;14952:1;14947:3;14943:11;14936:55;15026:6;15021:2;15016:3;15012:12;15005:28;15063:2;15058:3;15054:12;15047:19;;14834:242;;;:::o;15086:339::-;;15253:67;15317:2;15312:3;15253:67;:::i;:::-;15246:74;;15354:27;15350:1;15345:3;15341:11;15334:48;15412:2;15407:3;15403:12;15396:19;;15232:193;;;:::o;15435:396::-;;15602:67;15666:2;15661:3;15602:67;:::i;:::-;15595:74;;15703:34;15699:1;15694:3;15690:11;15683:55;15773:14;15768:2;15763:3;15759:12;15752:36;15818:2;15813:3;15809:12;15802:19;;15581:250;;;:::o;15841:408::-;;16008:67;16072:2;16067:3;16008:67;:::i;:::-;16001:74;;16109:34;16105:1;16100:3;16096:11;16089:55;16179:26;16174:2;16169:3;16165:12;16158:48;16236:2;16231:3;16227:12;16220:19;;15987:262;;;:::o;16259:394::-;;16426:67;16490:2;16485:3;16426:67;:::i;:::-;16419:74;;16527:34;16523:1;16518:3;16514:11;16507:55;16597:12;16592:2;16587:3;16583:12;16576:34;16640:2;16635:3;16631:12;16624:19;;16405:248;;;:::o;16663:393::-;;16830:67;16894:2;16889:3;16830:67;:::i;:::-;16823:74;;16931:34;16927:1;16922:3;16918:11;16911:55;17001:11;16996:2;16991:3;16987:12;16980:33;17043:2;17038:3;17034:12;17027:19;;16809:247;;;:::o;17066:386::-;;17233:67;17297:2;17292:3;17233:67;:::i;:::-;17226:74;;17334:34;17330:1;17325:3;17321:11;17314:55;17404:4;17399:2;17394:3;17390:12;17383:26;17439:2;17434:3;17430:12;17423:19;;17212:240;;;:::o;17462:346::-;;17629:67;17693:2;17688:3;17629:67;:::i;:::-;17622:74;;17730:34;17726:1;17721:3;17717:11;17710:55;17795:2;17790:3;17786:12;17779:19;;17608:200;;;:::o;17818:396::-;;17985:67;18049:2;18044:3;17985:67;:::i;:::-;17978:74;;18086:34;18082:1;18077:3;18073:11;18066:55;18156:14;18151:2;18146:3;18142:12;18135:36;18201:2;18196:3;18192:12;18185:19;;17964:250;;;:::o;18224:396::-;;18391:67;18455:2;18450:3;18391:67;:::i;:::-;18384:74;;18492:34;18488:1;18483:3;18479:11;18472:55;18562:14;18557:2;18552:3;18548:12;18541:36;18607:2;18602:3;18598:12;18591:19;;18370:250;;;:::o;18630:346::-;;18797:67;18861:2;18856:3;18797:67;:::i;:::-;18790:74;;18898:34;18894:1;18889:3;18885:11;18878:55;18963:2;18958:3;18954:12;18947:19;;18776:200;;;:::o;18986:393::-;;19153:67;19217:2;19212:3;19153:67;:::i;:::-;19146:74;;19254:34;19250:1;19245:3;19241:11;19234:55;19324:11;19319:2;19314:3;19310:12;19303:33;19366:2;19361:3;19357:12;19350:19;;19132:247;;;:::o;19389:399::-;;19556:67;19620:2;19615:3;19556:67;:::i;:::-;19549:74;;19657:34;19653:1;19648:3;19644:11;19637:55;19727:17;19722:2;19717:3;19713:12;19706:39;19775:2;19770:3;19766:12;19759:19;;19535:253;;;:::o;19798:385::-;;19965:67;20029:2;20024:3;19965:67;:::i;:::-;19958:74;;20066:34;20062:1;20057:3;20053:11;20046:55;20136:3;20131:2;20126:3;20122:12;20115:25;20170:2;20165:3;20161:12;20154:19;;19944:239;;;:::o;20193:339::-;;20360:67;20424:2;20419:3;20360:67;:::i;:::-;20353:74;;20461:27;20457:1;20452:3;20448:11;20441:48;20519:2;20514:3;20510:12;20503:19;;20339:193;;;:::o;20542:406::-;;20709:67;20773:2;20768:3;20709:67;:::i;:::-;20702:74;;20810:34;20806:1;20801:3;20797:11;20790:55;20880:24;20875:2;20870:3;20866:12;20859:46;20935:2;20930:3;20926:12;20919:19;;20688:260;;;:::o;20958:401::-;;21125:67;21189:2;21184:3;21125:67;:::i;:::-;21118:74;;21226:34;21222:1;21217:3;21213:11;21206:55;21296:19;21291:2;21286:3;21282:12;21275:41;21346:2;21341:3;21337:12;21330:19;;21104:255;;;:::o;21369:389::-;;21536:67;21600:2;21595:3;21536:67;:::i;:::-;21529:74;;21637:34;21633:1;21628:3;21624:11;21617:55;21707:7;21702:2;21697:3;21693:12;21686:29;21745:2;21740:3;21736:12;21729:19;;21515:243;;;:::o;21768:396::-;;21935:67;21999:2;21994:3;21935:67;:::i;:::-;21928:74;;22036:34;22032:1;22027:3;22023:11;22016:55;22106:14;22101:2;22096:3;22092:12;22085:36;22151:2;22146:3;22142:12;22135:19;;21914:250;;;:::o;22174:116::-;22255:24;22273:5;22255:24;:::i;:::-;22250:3;22243:37;22229:61;;:::o;22300:126::-;22391:24;22409:5;22391:24;:::i;:::-;22386:3;22379:37;22365:61;;:::o;22436:451::-;;22642:95;22733:3;22724:6;22642:95;:::i;:::-;22635:102;;22758:95;22849:3;22840:6;22758:95;:::i;:::-;22751:102;;22874:3;22867:10;;22620:267;;;;;:::o;22897:827::-;;23257:148;23401:3;23257:148;:::i;:::-;23250:155;;23426:95;23517:3;23508:6;23426:95;:::i;:::-;23419:102;;23542:148;23686:3;23542:148;:::i;:::-;23535:155;;23711:3;23704:10;;23235:489;;;;:::o;23734:234::-;;23869:2;23858:9;23854:18;23846:26;;23886:71;23954:1;23943:9;23939:17;23930:6;23886:71;:::i;:::-;23832:136;;;;:::o;23978:668::-;;24215:3;24204:9;24200:19;24192:27;;24233:71;24301:1;24290:9;24286:17;24277:6;24233:71;:::i;:::-;24318:72;24386:2;24375:9;24371:18;24362:6;24318:72;:::i;:::-;24404;24472:2;24461:9;24457:18;24448:6;24404:72;:::i;:::-;24527:9;24521:4;24517:20;24512:2;24501:9;24497:18;24490:48;24559:76;24630:4;24621:6;24559:76;:::i;:::-;24551:84;;24178:468;;;;;;;:::o;24656:389::-;;24841:2;24830:9;24826:18;24818:26;;24894:9;24888:4;24884:20;24880:1;24869:9;24865:17;24858:47;24926:108;25029:4;25020:6;24926:108;:::i;:::-;24918:116;;24804:241;;;;:::o;25055:222::-;;25184:2;25173:9;25169:18;25161:26;;25201:65;25263:1;25252:9;25248:17;25239:6;25201:65;:::i;:::-;25147:130;;;;:::o;25287:878::-;;25574:3;25563:9;25559:19;25551:27;;25592:79;25668:1;25657:9;25653:17;25644:6;25592:79;:::i;:::-;25722:9;25716:4;25712:20;25707:2;25696:9;25692:18;25685:48;25754:78;25827:4;25818:6;25754:78;:::i;:::-;25746:86;;25883:9;25877:4;25873:20;25868:2;25857:9;25853:18;25846:48;25915:78;25988:4;25979:6;25915:78;:::i;:::-;25907:86;;26044:9;26038:4;26034:20;26029:2;26018:9;26014:18;26007:48;26076:78;26149:4;26140:6;26076:78;:::i;:::-;26068:86;;25537:628;;;;;;;:::o;26175:329::-;;26330:2;26319:9;26315:18;26307:26;;26383:9;26377:4;26373:20;26369:1;26358:9;26354:17;26347:47;26415:78;26488:4;26479:6;26415:78;:::i;:::-;26407:86;;26293:211;;;;:::o;26514:435::-;;26722:2;26711:9;26707:18;26699:26;;26775:9;26769:4;26765:20;26761:1;26750:9;26746:17;26739:47;26807:131;26933:4;26807:131;:::i;:::-;26799:139;;26685:264;;;:::o;26959:435::-;;27167:2;27156:9;27152:18;27144:26;;27220:9;27214:4;27210:20;27206:1;27195:9;27191:17;27184:47;27252:131;27378:4;27252:131;:::i;:::-;27244:139;;27130:264;;;:::o;27404:435::-;;27612:2;27601:9;27597:18;27589:26;;27665:9;27659:4;27655:20;27651:1;27640:9;27636:17;27629:47;27697:131;27823:4;27697:131;:::i;:::-;27689:139;;27575:264;;;:::o;27849:435::-;;28057:2;28046:9;28042:18;28034:26;;28110:9;28104:4;28100:20;28096:1;28085:9;28081:17;28074:47;28142:131;28268:4;28142:131;:::i;:::-;28134:139;;28020:264;;;:::o;28294:435::-;;28502:2;28491:9;28487:18;28479:26;;28555:9;28549:4;28545:20;28541:1;28530:9;28526:17;28519:47;28587:131;28713:4;28587:131;:::i;:::-;28579:139;;28465:264;;;:::o;28739:435::-;;28947:2;28936:9;28932:18;28924:26;;29000:9;28994:4;28990:20;28986:1;28975:9;28971:17;28964:47;29032:131;29158:4;29032:131;:::i;:::-;29024:139;;28910:264;;;:::o;29184:435::-;;29392:2;29381:9;29377:18;29369:26;;29445:9;29439:4;29435:20;29431:1;29420:9;29416:17;29409:47;29477:131;29603:4;29477:131;:::i;:::-;29469:139;;29355:264;;;:::o;29629:435::-;;29837:2;29826:9;29822:18;29814:26;;29890:9;29884:4;29880:20;29876:1;29865:9;29861:17;29854:47;29922:131;30048:4;29922:131;:::i;:::-;29914:139;;29800:264;;;:::o;30074:435::-;;30282:2;30271:9;30267:18;30259:26;;30335:9;30329:4;30325:20;30321:1;30310:9;30306:17;30299:47;30367:131;30493:4;30367:131;:::i;:::-;30359:139;;30245:264;;;:::o;30519:435::-;;30727:2;30716:9;30712:18;30704:26;;30780:9;30774:4;30770:20;30766:1;30755:9;30751:17;30744:47;30812:131;30938:4;30812:131;:::i;:::-;30804:139;;30690:264;;;:::o;30964:435::-;;31172:2;31161:9;31157:18;31149:26;;31225:9;31219:4;31215:20;31211:1;31200:9;31196:17;31189:47;31257:131;31383:4;31257:131;:::i;:::-;31249:139;;31135:264;;;:::o;31409:435::-;;31617:2;31606:9;31602:18;31594:26;;31670:9;31664:4;31660:20;31656:1;31645:9;31641:17;31634:47;31702:131;31828:4;31702:131;:::i;:::-;31694:139;;31580:264;;;:::o;31854:435::-;;32062:2;32051:9;32047:18;32039:26;;32115:9;32109:4;32105:20;32101:1;32090:9;32086:17;32079:47;32147:131;32273:4;32147:131;:::i;:::-;32139:139;;32025:264;;;:::o;32299:435::-;;32507:2;32496:9;32492:18;32484:26;;32560:9;32554:4;32550:20;32546:1;32535:9;32531:17;32524:47;32592:131;32718:4;32592:131;:::i;:::-;32584:139;;32470:264;;;:::o;32744:435::-;;32952:2;32941:9;32937:18;32929:26;;33005:9;32999:4;32995:20;32991:1;32980:9;32976:17;32969:47;33037:131;33163:4;33037:131;:::i;:::-;33029:139;;32915:264;;;:::o;33189:435::-;;33397:2;33386:9;33382:18;33374:26;;33450:9;33444:4;33440:20;33436:1;33425:9;33421:17;33414:47;33482:131;33608:4;33482:131;:::i;:::-;33474:139;;33360:264;;;:::o;33634:435::-;;33842:2;33831:9;33827:18;33819:26;;33895:9;33889:4;33885:20;33881:1;33870:9;33866:17;33859:47;33927:131;34053:4;33927:131;:::i;:::-;33919:139;;33805:264;;;:::o;34079:435::-;;34287:2;34276:9;34272:18;34264:26;;34340:9;34334:4;34330:20;34326:1;34315:9;34311:17;34304:47;34372:131;34498:4;34372:131;:::i;:::-;34364:139;;34250:264;;;:::o;34524:435::-;;34732:2;34721:9;34717:18;34709:26;;34785:9;34779:4;34775:20;34771:1;34760:9;34756:17;34749:47;34817:131;34943:4;34817:131;:::i;:::-;34809:139;;34695:264;;;:::o;34969:435::-;;35177:2;35166:9;35162:18;35154:26;;35230:9;35224:4;35220:20;35216:1;35205:9;35201:17;35194:47;35262:131;35388:4;35262:131;:::i;:::-;35254:139;;35140:264;;;:::o;35414:435::-;;35622:2;35611:9;35607:18;35599:26;;35675:9;35669:4;35665:20;35661:1;35650:9;35646:17;35639:47;35707:131;35833:4;35707:131;:::i;:::-;35699:139;;35585:264;;;:::o;35859:435::-;;36067:2;36056:9;36052:18;36044:26;;36120:9;36114:4;36110:20;36106:1;36095:9;36091:17;36084:47;36152:131;36278:4;36152:131;:::i;:::-;36144:139;;36030:264;;;:::o;36304:435::-;;36512:2;36501:9;36497:18;36489:26;;36565:9;36559:4;36555:20;36551:1;36540:9;36536:17;36529:47;36597:131;36723:4;36597:131;:::i;:::-;36589:139;;36475:264;;;:::o;36749:435::-;;36957:2;36946:9;36942:18;36934:26;;37010:9;37004:4;37000:20;36996:1;36985:9;36981:17;36974:47;37042:131;37168:4;37042:131;:::i;:::-;37034:139;;36920:264;;;:::o;37194:435::-;;37402:2;37391:9;37387:18;37379:26;;37455:9;37449:4;37445:20;37441:1;37430:9;37426:17;37419:47;37487:131;37613:4;37487:131;:::i;:::-;37479:139;;37365:264;;;:::o;37639:234::-;;37774:2;37763:9;37759:18;37751:26;;37791:71;37859:1;37848:9;37844:17;37835:6;37791:71;:::i;:::-;37737:136;;;;:::o;37883:307::-;;37953:2;37947:9;37937:19;;37999:4;37991:6;37987:17;38114:6;38102:10;38099:22;38078:18;38066:10;38063:34;38060:62;38057:2;;;38125:18;;:::i;:::-;38057:2;38169:10;38165:2;38158:22;37923:267;;;;:::o;38200:359::-;;38359:18;38351:6;38348:30;38345:2;;;38381:18;;:::i;:::-;38345:2;38474:4;38470:9;38463:4;38455:6;38451:17;38447:33;38439:41;;38543:4;38537;38533:15;38525:23;;38266:293;;;:::o;38569:360::-;;38729:18;38721:6;38718:30;38715:2;;;38751:18;;:::i;:::-;38715:2;38844:4;38840:9;38833:4;38825:6;38821:17;38817:33;38809:41;;38913:4;38907;38903:15;38895:23;;38636:293;;;:::o;38939:144::-;;39033:3;39025:11;;39067:4;39062:3;39058:14;39050:22;;39011:72;;;:::o;39093:122::-;;39198:5;39192:12;39182:22;;39167:48;;;:::o;39225:106::-;;39314:5;39308:12;39298:22;;39283:48;;;:::o;39341:107::-;;39431:5;39425:12;39415:22;;39400:48;;;:::o;39458:121::-;;39564:4;39559:3;39555:14;39547:22;;39533:46;;;:::o;39589:196::-;;39726:6;39721:3;39714:19;39770:4;39765:3;39761:14;39746:29;;39700:85;;;;:::o;39795:180::-;;39916:6;39911:3;39904:19;39960:4;39955:3;39951:14;39936:29;;39890:85;;;;:::o;39985:181::-;;40107:6;40102:3;40095:19;40151:4;40146:3;40142:14;40127:29;;40081:85;;;;:::o;40176:156::-;;40319:3;40304:18;;40290:42;;;;:::o;40342:329::-;;40405:20;40423:1;40405:20;:::i;:::-;40400:25;;40443:20;40461:1;40443:20;:::i;:::-;40438:25;;40605:1;40537:66;40533:74;40530:1;40527:81;40524:2;;;40611:18;;:::i;:::-;40524:2;40659:1;40656;40652:9;40645:16;;40386:285;;;;:::o;40681:261::-;;40742:18;40758:1;40742:18;:::i;:::-;40737:23;;40778:18;40794:1;40778:18;:::i;:::-;40773:23;;40876:1;40870:4;40866:12;40863:1;40860:19;40857:2;;;40882:18;;:::i;:::-;40857:2;40930:1;40927;40923:9;40916:16;;40723:219;;;;:::o;40952:205::-;;41013:20;41031:1;41013:20;:::i;:::-;41008:25;;41051:20;41069:1;41051:20;:::i;:::-;41046:25;;41094:1;41084:2;;41099:18;;:::i;:::-;41084:2;41145:1;41142;41138:9;41133:14;;40994:163;;;;:::o;41167:372::-;;41234:20;41252:1;41234:20;:::i;:::-;41229:25;;41272:20;41290:1;41272:20;:::i;:::-;41267:25;;41468:1;41400:66;41396:74;41393:1;41390:81;41385:1;41378:9;41371:17;41367:105;41364:2;;;41475:18;;:::i;:::-;41364:2;41527:1;41524;41520:9;41509:20;;41215:324;;;;:::o;41549:211::-;;41613:20;41631:1;41613:20;:::i;:::-;41608:25;;41651:20;41669:1;41651:20;:::i;:::-;41646:25;;41694:1;41691;41688:8;41685:2;;;41699:18;;:::i;:::-;41685:2;41748:1;41745;41741:9;41733:17;;41594:166;;;;:::o;41770:104::-;;41840:24;41858:5;41840:24;:::i;:::-;41829:35;;41815:59;;;:::o;41884:98::-;;41965:5;41958:13;41951:21;41940:32;;41926:56;;;:::o;41992:85::-;;42062:5;42051:16;;42037:40;;;:::o;42087:157::-;;42167:66;42160:5;42156:78;42145:89;;42131:113;;;:::o;42254:134::-;;42335:42;42328:5;42324:54;42313:65;;42299:89;;;:::o;42398:85::-;;42468:5;42457:16;;42443:40;;;:::o;42493:94::-;;42572:4;42565:5;42561:16;42550:27;;42536:51;;;:::o;42597:129::-;;42692:24;42710:5;42692:24;:::i;:::-;42679:37;;42665:61;;;:::o;42736:170::-;42824:6;42819:3;42814;42801:30;42894:1;42885:6;42880:3;42876:16;42869:27;42787:119;;;:::o;42916:351::-;42988:1;43002:125;43016:6;43013:1;43010:13;43002:125;;;43109:1;43104:3;43100:11;43094:18;43090:1;43085:3;43081:11;43074:39;43038:2;43035:1;43031:10;43026:15;;43002:125;;;43149:6;43146:1;43143:13;43140:2;;;43241:1;43232:6;43227:3;43223:16;43216:27;43140:2;42965:302;;;;:::o;43277:356::-;;43362:1;43356:4;43352:12;43342:22;;43413:1;43407:4;43403:12;43438:18;43428:2;;43498:4;43490:6;43486:17;43476:27;;43428:2;43568;43560:6;43557:14;43537:18;43534:38;43531:2;;;43591:18;;:::i;:::-;43531:2;43328:305;;;;:::o;43643:249::-;;43709:24;43727:5;43709:24;:::i;:::-;43700:33;;43759:66;43752:5;43749:77;43746:2;;;43829:18;;:::i;:::-;43746:2;43880:1;43873:5;43869:13;43862:20;;43686:206;;;:::o;43902:196::-;;43955:20;43973:1;43955:20;:::i;:::-;43950:25;;43993:20;44011:1;43993:20;:::i;:::-;43988:25;;44036:1;44026:2;;44041:18;;:::i;:::-;44026:2;44086:1;44083;44079:9;44074:14;;43936:162;;;;:::o;44108:196::-;44160:77;44157:1;44150:88;44261:4;44258:1;44251:15;44289:4;44286:1;44279:15;44314:196;44366:77;44363:1;44356:88;44467:4;44464:1;44457:15;44495:4;44492:1;44485:15;44520:196;44572:77;44569:1;44562:88;44673:4;44670:1;44663:15;44701:4;44698:1;44691:15;44726:196;44778:77;44775:1;44768:88;44879:4;44876:1;44869:15;44907:4;44904:1;44897:15;44932:110;;45028:2;45024:7;45019:2;45012:5;45008:14;45004:28;44994:38;;44980:62;;;:::o;45052:130::-;45129:24;45147:5;45129:24;:::i;:::-;45122:5;45119:35;45109:2;;45168:1;45165;45158:12;45109:2;45095:87;:::o;45192:124::-;45266:21;45281:5;45266:21;:::i;:::-;45259:5;45256:32;45246:2;;45302:1;45299;45292:12;45246:2;45232:84;:::o;45326:130::-;45403:24;45421:5;45403:24;:::i;:::-;45396:5;45393:35;45383:2;;45442:1;45439;45432:12;45383:2;45369:87;:::o;45466:128::-;45542:23;45559:5;45542:23;:::i;:::-;45535:5;45532:34;45522:2;;45580:1;45577;45570:12;45522:2;45508:86;:::o;45604:130::-;45681:24;45699:5;45681:24;:::i;:::-;45674:5;45671:35;45661:2;;45720:1;45717;45710:12;45661:2;45647:87;:::o

Swarm Source

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