ETH Price: $3,302.53 (-3.19%)
Gas: 20 Gwei

Token

Funny Looking Strangers (FLS)
 

Overview

Max Total Supply

911 FLS

Holders

351

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 FLS
0xe179f8cf4283c1c8f66fe5ae9a70b75d3e0ebf5f
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

FLS is a collection of 10,555 programmatically and randomly generated NFTs on the Ethereum blockchain. FLS have a huge variety of traits that could generate more than 200k unique combinations! The Strangers are funny-looking creatures made of Ethereum, which are formed as a re...

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
FunnyLookingStrangers

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-10-03
*/

pragma solidity ^0.8.0;

interface IERC165 {
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

pragma solidity ^0.8.0;

interface IERC721 is IERC165 {
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);

    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);

    function balanceOf(address owner) external view returns (uint256 balance);

    function ownerOf(uint256 tokenId) external view returns (address owner);

    function safeTransferFrom(address from, address to, uint256 tokenId) external;

    function transferFrom(address from, address to, uint256 tokenId) external;

    function approve(address to, uint256 tokenId) external;

    function getApproved(uint256 tokenId) external view returns (address operator);

    function setApprovalForAll(address operator, bool _approved) external;

    function isApprovedForAll(address owner, address operator) external view returns (bool);

    function safeTransferFrom(address from, address to, uint256 tokenId, bytes calldata data) external;
}

pragma solidity ^0.8.0;

interface IERC721Receiver {
    function onERC721Received(address operator, address from, uint256 tokenId, bytes calldata data) external returns (bytes4);
}

pragma solidity ^0.8.0;


interface IERC721Metadata is IERC721 {

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

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

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

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



pragma solidity ^0.8.0;

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

        uint256 size;
        // 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);
            }
        }
    }
}

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



pragma solidity ^0.8.0;

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

    function _msgData() internal view virtual returns (bytes calldata) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

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



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

}

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



pragma solidity ^0.8.0;


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

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



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

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol



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

// File: @openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol



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

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



pragma solidity ^0.8.0;

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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor () {
        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;


abstract contract CATS {
  function ownerOf(uint256 tokenId) public virtual view returns (address);
  function tokenOfOwnerByIndex(address owner, uint256 index) public virtual view returns (uint256);
  function balanceOf(address owner) external virtual view returns (uint256 balance);
}

abstract contract APES {
  function ownerOf(uint256 tokenId) public virtual view returns (address);
  function tokenOfOwnerByIndex(address owner, uint256 index) public virtual view returns (uint256);
  function balanceOf(address owner) external virtual view returns (uint256 balance);
}

abstract contract ALIEN {
  function ownerOf(uint256 tokenId) public virtual view returns (address);
  function tokenOfOwnerByIndex(address owner, uint256 index) public virtual view returns (uint256);
  function balanceOf(address owner) external virtual view returns (uint256 balance);
}

contract FunnyLookingStrangers is ERC721Enumerable, Ownable {
  CATS private cats;
  APES private apes;
  ALIEN private alien;

  uint256 public saleIsActive;
  uint256 public preSaleIsActive;
  uint256 public prePreSaleIsActive;
  uint256 public maxStrangers;
  uint256 public maxPrePreSaleStrangers;
  uint256 public maxPreSaleStrangers;
  string private baseURI;
  address public catsAdress;
  address public apesAdress;
  address public alienAdress;
  uint256 public reservedCounter;
  uint256 public maxReserved;
  uint256 public strangerPrice;
  uint256 public preSaleCounter;
  uint256 public prePreSaleCounter;
  address[] public whitelist;
  mapping(address => bool) senderAllowed;

  constructor() ERC721("Funny Looking Strangers", "FLS") { 
    catsAdress = 0x568a1f8554Edcea5CB5F94E463ac69A9C49c0A2d;
    apesAdress = 0xBC4CA0EdA7647A8aB7C2061c2E118A18a936f13D;
    alienAdress = 0x4581649aF66BCCAeE81eebaE3DDc0511FE4C5312;
    maxStrangers = 10555;
    cats = CATS(catsAdress);
    apes = APES(apesAdress);
    alien = ALIEN(alienAdress);
    saleIsActive = 0;
    preSaleIsActive = 0;
    prePreSaleIsActive = 0;
    reservedCounter = 1;
    maxReserved = 255;
    strangerPrice = 55500000000000000;
    preSaleCounter = 0;
    prePreSaleCounter = 0;
    baseURI = "https://funnylookingstrangers.com/json/stranger";
  }

  function isMinted(uint256 tokenId) external view returns (bool) {
    require(tokenId < maxStrangers, "tokenId outside collection bounds");

    return _exists(tokenId);
  }

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

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

  function mintReservedStranger(uint256 numberOfTokens) public onlyOwner {
    require(numberOfTokens <= maxReserved, "Can only mint 255 strangers at a time");
    require((reservedCounter + numberOfTokens) <= maxReserved, "Purchase would exceed max supply of Strangers");

    for(uint i = 0; i < numberOfTokens; i++) {
      _safeMint(msg.sender, reservedCounter);
      
      reservedCounter = reservedCounter + 1;
    }
  }

  function mintStranger(uint256 numberOfTokens) public payable {
    require(numberOfTokens <= maxStrangers, "Can only mint 15 strangers at a time");
    require(saleIsActive == 1, "Sale must be active to mint a stranger");
    require((totalSupply() + numberOfTokens) <= maxStrangers, "Purchase would exceed max supply of Strangers");
    require((strangerPrice * numberOfTokens) <= msg.value, "Too little ETH send");

    for(uint i = 0; i < numberOfTokens; i++) {
            uint mintIndex = uint(keccak256(abi.encodePacked(block.timestamp, block.difficulty, msg.sender))) % 10299;
            mintIndex = mintIndex + 256;
            if (totalSupply() < maxStrangers) {
                while(_exists(mintIndex)) {
                    if(mintIndex > 10555){
                        mintIndex = 255;
                    }
                    mintIndex = mintIndex + 1;
                }
                _safeMint(msg.sender, mintIndex);
                
            }
        }
  }

    function mintStrangerPrePreSale(uint256 numberOfTokens) public payable {
    require(numberOfTokens <= maxStrangers, "Can only mint 15 strangers at a time");
    require(prePreSaleIsActive == 1, "Sale must be active to mint a stranger");
    require((totalSupply() + numberOfTokens) <= maxStrangers, "Purchase would exceed max supply of Strangers");
    require((strangerPrice * numberOfTokens) <= msg.value, "Too little ETH send");
    require(senderAllowed[msg.sender], "sender is not on the whitelist");
    require((prePreSaleCounter + numberOfTokens) <= 1300, "Pre pre sale ended!");

    for(uint i = 0; i < numberOfTokens; i++) {
            uint mintIndex = uint(keccak256(abi.encodePacked(block.timestamp, block.difficulty, msg.sender))) % 10299;
            mintIndex = mintIndex + 256;
            if (totalSupply() < maxStrangers) {
                while(_exists(mintIndex)) {
                    if(mintIndex > 10555){
                        mintIndex = 255;
                    }
                    mintIndex = mintIndex + 1;
                }
                _safeMint(msg.sender, mintIndex);
                
                prePreSaleCounter = prePreSaleCounter + 1;
            }
        }
  }

  function mintStrangerPreSale(uint256 numberOfTokens) public payable {
    require(numberOfTokens <= maxStrangers, "Can only mint 15 strangers at a time");
    require(preSaleIsActive == 1, "Sale must be active to mint a stranger");
    require((totalSupply() + numberOfTokens) <= maxStrangers, "Purchase would exceed max supply of Strangers");
    require((strangerPrice * numberOfTokens) <= msg.value, "Too little ETH send");
    require(senderAllowed[msg.sender], "sender is not on the whitelist");
    require((preSaleCounter + numberOfTokens) <= 5500, "Pre sale ended!");

    for(uint i = 0; i < numberOfTokens; i++) {
            uint mintIndex = uint(keccak256(abi.encodePacked(block.timestamp, block.difficulty, msg.sender))) % 10299;
            mintIndex = mintIndex + 256;
            if (totalSupply() < maxStrangers) {
                while(_exists(mintIndex)) {
                    if(mintIndex > 10555){
                        mintIndex = 255;
                    }
                    mintIndex = mintIndex + 1;
                }
                _safeMint(msg.sender, mintIndex);
                
                preSaleCounter = preSaleCounter + 1;
            }
        }
  }

  function mintStrangerPreSaleCats(uint256 numberOfTokens, uint256 id) public payable {
    require(numberOfTokens <= maxStrangers, "Can only mint 15 strangers at a time");
    require(preSaleIsActive == 1, "Sale must be active to mint a stranger");
    require((totalSupply() + numberOfTokens) <= maxStrangers, "Purchase would exceed max supply of Strangers");
    require((strangerPrice * numberOfTokens) <= msg.value, "Too little ETH send");
    require(cats.ownerOf(id) == msg.sender, "Must own a Cat to mint a stranger");
    require((preSaleCounter + numberOfTokens) <= 5500, "Pre sale ended!");

    for(uint i = 0; i < numberOfTokens; i++) {
            uint mintIndex = uint(keccak256(abi.encodePacked(block.timestamp, block.difficulty, msg.sender))) % 10299;
            mintIndex = mintIndex + 256;
            if (totalSupply() < maxStrangers) {
                while(_exists(mintIndex)) {
                    if(mintIndex > 10555){
                        mintIndex = 255;
                    }
                    mintIndex = mintIndex + 1;
                }
                _safeMint(msg.sender, mintIndex);
                
                preSaleCounter = preSaleCounter + 1;
            }
        }
  }
  function mintStrangerPreSaleApes(uint256 numberOfTokens, uint256 id) public payable {
    require(numberOfTokens <= maxStrangers, "Can only mint 15 strangers at a time");
    require(preSaleIsActive == 1, "Sale must be active to mint a stranger");
    require((totalSupply() + numberOfTokens) <= maxStrangers, "Purchase would exceed max supply of Strangers");
    require((strangerPrice * numberOfTokens) <= msg.value, "Too little ETH send");
    require(apes.ownerOf(id) == msg.sender, "Must own an ape to mint a stranger");
    require((preSaleCounter + numberOfTokens) <= 5500, "Pre sale ended!");

    for(uint i = 0; i < numberOfTokens; i++) {
            uint mintIndex = uint(keccak256(abi.encodePacked(block.timestamp, block.difficulty, msg.sender))) % 10299;
            mintIndex = mintIndex + 256;
            if (totalSupply() < maxStrangers) {
                while(_exists(mintIndex)) {
                    if(mintIndex > 10555){
                        mintIndex = 255;
                    }
                    mintIndex = mintIndex + 1;
                }
                _safeMint(msg.sender, mintIndex);
                
                preSaleCounter = preSaleCounter + 1;
            }
        }
  }
  function mintStrangerPreSaleAlien(uint256 numberOfTokens, uint256 id) public payable {
    require(numberOfTokens <= maxStrangers, "Can only mint 15 strangers at a time");
    require(preSaleIsActive == 1, "Sale must be active to mint a stranger");
    require((totalSupply() + numberOfTokens) <= maxStrangers, "Purchase would exceed max supply of Strangers");
    require((strangerPrice * numberOfTokens) <= msg.value, "Too little ETH send");
    require(alien.ownerOf(id) == msg.sender, "Must own an alienboy to mint a stranger");
    require((preSaleCounter + numberOfTokens) <= 5500, "Pre sale ended!");

    for(uint i = 0; i < numberOfTokens; i++) {
            uint mintIndex = uint(keccak256(abi.encodePacked(block.timestamp, block.difficulty, msg.sender))) % 10299;
            mintIndex = mintIndex + 256;
            if (totalSupply() < maxStrangers) {
                while(_exists(mintIndex)) {
                    if(mintIndex > 10555){
                        mintIndex = 255;
                    }
                    mintIndex = mintIndex + 1;
                }
                _safeMint(msg.sender, mintIndex);
                preSaleCounter = preSaleCounter + 1;
            }
        }
  }

    function flipSale(uint256 _saleState) public onlyOwner {
      saleIsActive = _saleState;
  }
    function flipPreSale(uint256 _saleState) public onlyOwner {
      preSaleIsActive = _saleState;
  }
    function flipPrePreSale(uint256 _saleState) public onlyOwner {
      prePreSaleIsActive = _saleState;
  }

    function withdraw() public payable onlyOwner{
        uint balance = address(this).balance;
        payable(msg.sender).transfer(balance);
    }
    function setPrice(uint256 _newprice) public onlyOwner{
        require(_newprice >= 10000000000000000, "The price cannot be lower then 0.01 eth");
        strangerPrice = _newprice;
    }
    function addWhitelist(address whitelistAddress) public onlyOwner {
      whitelist.push(whitelistAddress);
      senderAllowed[whitelistAddress] = true;
    }

  function burnStranger(uint256 id) public onlyOwner {
      _safeMint(0x0000000000000000000000000000000000000000, id);
      
  }    
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"whitelistAddress","type":"address"}],"name":"addWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"alienAdress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"apesAdress","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"id","type":"uint256"}],"name":"burnStranger","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"catsAdress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_saleState","type":"uint256"}],"name":"flipPrePreSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_saleState","type":"uint256"}],"name":"flipPreSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_saleState","type":"uint256"}],"name":"flipSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"isMinted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPrePreSaleStrangers","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPreSaleStrangers","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxReserved","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxStrangers","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mintReservedStranger","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mintStranger","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mintStrangerPrePreSale","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mintStrangerPreSale","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"mintStrangerPreSaleAlien","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"mintStrangerPreSaleApes","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"mintStrangerPreSaleCats","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":[],"name":"prePreSaleCounter","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"prePreSaleIsActive","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"preSaleCounter","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"preSaleIsActive","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reservedCounter","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":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleIsActive","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newprice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"strangerPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"whitelist","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60806040523480156200001157600080fd5b506040518060400160405280601781526020017f46756e6e79204c6f6f6b696e6720537472616e676572730000000000000000008152506040518060400160405280600381526020017f464c5300000000000000000000000000000000000000000000000000000000008152508160009080519060200190620000969291906200041a565b508060019080519060200190620000af9291906200041a565b5050506000620000c46200041260201b60201c565b905080600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35073568a1f8554edcea5cb5f94e463ac69a9c49c0a2d601560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073bc4ca0eda7647a8ab7c2061c2e118a18a936f13d601660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550734581649af66bccaee81eebae3ddc0511fe4c5312601760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555061293b601181905550601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550601760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600e819055506000600f819055506000601081905550600160188190555060ff60198190555066c52cf4b908c000601a819055506000601b819055506000601c819055506040518060600160405280602f815260200162006454602f9139601490805190602001906200040b9291906200041a565b506200052f565b600033905090565b8280546200042890620004f9565b90600052602060002090601f0160209004810192826200044c576000855562000498565b82601f106200046757805160ff191683800117855562000498565b8280016001018555821562000498579182015b82811115620004975782518255916020019190600101906200047a565b5b509050620004a79190620004ab565b5090565b5b80821115620004c6576000816000905550600101620004ac565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200051257607f821691505b60208210811415620005295762000528620004ca565b5b50919050565b615f15806200053f6000396000f3fe6080604052600436106102c95760003560e01c80636c902f171161017557806396596532116100dc578063e985e9c511610095578063f2fde38b1161006f578063f2fde38b14610a95578063f3a5293414610abe578063f6a31c6614610ae9578063f80f5dd514610b14576102c9565b8063e985e9c514610a04578063eb8d244414610a41578063f21918c514610a6c576102c9565b806396596532146108f6578063a22cb4651461091f578063a9898fd914610948578063b88d4fde14610973578063c87b56dd1461099c578063d21c0af1146109d9576102c9565b80638da5cb5b1161012e5780638da5cb5b14610805578063904527121461083057806391b7f5ed1461085b578063932b4ce91461088457806395b4ee65146108a057806395d89b41146108cb576102c9565b80636c902f171461071157806370a082311461073c578063715018a6146107795780637ebd1b301461079057806381aac075146107cd57806386422546146107e9576102c9565b8063323f0ae61161023457806342842e0e116101ed57806352d2be82116101c757806352d2be821461066657806355f804b3146106825780635c56b9ad146106ab5780636352211e146106d4576102c9565b806342842e0e146105d5578063461e54cf146105fe5780634f6ccce714610629576102c9565b8063323f0ae6146104f357806333c41a901461051e5780633612f2901461055b578063369e31d9146105775780633ccfd60b146105a25780633f0ff6aa146105ac576102c9565b8063095ea7b311610286578063095ea7b3146103f257806318160ddd1461041b5780631f0234d81461044657806323b872dd1461047157806329e745db1461049a5780632f745c59146104b6576102c9565b806301ffc9a7146102ce57806304285a0c1461030b578063049f21e3146103365780630596ee511461035f57806306fdde031461038a578063081812fc146103b5575b600080fd5b3480156102da57600080fd5b506102f560048036038101906102f09190614309565b610b3d565b6040516103029190614351565b60405180910390f35b34801561031757600080fd5b50610320610bb7565b60405161032d9190614385565b60405180910390f35b34801561034257600080fd5b5061035d600480360381019061035891906143cc565b610bbd565b005b34801561036b57600080fd5b50610374610c43565b6040516103819190614385565b60405180910390f35b34801561039657600080fd5b5061039f610c49565b6040516103ac9190614492565b60405180910390f35b3480156103c157600080fd5b506103dc60048036038101906103d791906143cc565b610cdb565b6040516103e991906144f5565b60405180910390f35b3480156103fe57600080fd5b506104196004803603810190610414919061453c565b610d60565b005b34801561042757600080fd5b50610430610e78565b60405161043d9190614385565b60405180910390f35b34801561045257600080fd5b5061045b610e85565b6040516104689190614385565b60405180910390f35b34801561047d57600080fd5b506104986004803603810190610493919061457c565b610e8b565b005b6104b460048036038101906104af91906145cf565b610eeb565b005b3480156104c257600080fd5b506104dd60048036038101906104d8919061453c565b61125c565b6040516104ea9190614385565b60405180910390f35b3480156104ff57600080fd5b50610508611301565b60405161051591906144f5565b60405180910390f35b34801561052a57600080fd5b50610545600480360381019061054091906143cc565b611327565b6040516105529190614351565b60405180910390f35b610575600480360381019061057091906145cf565b61137d565b005b34801561058357600080fd5b5061058c6116ee565b6040516105999190614385565b60405180910390f35b6105aa6116f4565b005b3480156105b857600080fd5b506105d360048036038101906105ce91906143cc565b6117bf565b005b3480156105e157600080fd5b506105fc60048036038101906105f7919061457c565b611845565b005b34801561060a57600080fd5b50610613611865565b60405161062091906144f5565b60405180910390f35b34801561063557600080fd5b50610650600480360381019061064b91906143cc565b61188b565b60405161065d9190614385565b60405180910390f35b610680600480360381019061067b91906143cc565b6118fc565b005b34801561068e57600080fd5b506106a960048036038101906106a49190614744565b611be0565b005b3480156106b757600080fd5b506106d260048036038101906106cd91906143cc565b611c76565b005b3480156106e057600080fd5b506106fb60048036038101906106f691906143cc565b611d00565b60405161070891906144f5565b60405180910390f35b34801561071d57600080fd5b50610726611db2565b6040516107339190614385565b60405180910390f35b34801561074857600080fd5b50610763600480360381019061075e919061478d565b611db8565b6040516107709190614385565b60405180910390f35b34801561078557600080fd5b5061078e611e70565b005b34801561079c57600080fd5b506107b760048036038101906107b291906143cc565b611fad565b6040516107c491906144f5565b60405180910390f35b6107e760048036038101906107e291906145cf565b611fec565b005b61080360048036038101906107fe91906143cc565b61235d565b005b34801561081157600080fd5b5061081a61254e565b60405161082791906144f5565b60405180910390f35b34801561083c57600080fd5b50610845612578565b6040516108529190614385565b60405180910390f35b34801561086757600080fd5b50610882600480360381019061087d91906143cc565b61257e565b005b61089e600480360381019061089991906143cc565b61264e565b005b3480156108ac57600080fd5b506108b5612932565b6040516108c29190614385565b60405180910390f35b3480156108d757600080fd5b506108e0612938565b6040516108ed9190614492565b60405180910390f35b34801561090257600080fd5b5061091d600480360381019061091891906143cc565b6129ca565b005b34801561092b57600080fd5b50610946600480360381019061094191906147e6565b612a50565b005b34801561095457600080fd5b5061095d612bd1565b60405161096a9190614385565b60405180910390f35b34801561097f57600080fd5b5061099a600480360381019061099591906148c7565b612bd7565b005b3480156109a857600080fd5b506109c360048036038101906109be91906143cc565b612c39565b6040516109d09190614492565b60405180910390f35b3480156109e557600080fd5b506109ee612ce0565b6040516109fb9190614385565b60405180910390f35b348015610a1057600080fd5b50610a2b6004803603810190610a26919061494a565b612ce6565b604051610a389190614351565b60405180910390f35b348015610a4d57600080fd5b50610a56612d7a565b604051610a639190614385565b60405180910390f35b348015610a7857600080fd5b50610a936004803603810190610a8e91906143cc565b612d80565b005b348015610aa157600080fd5b50610abc6004803603810190610ab7919061478d565b612ed6565b005b348015610aca57600080fd5b50610ad3613082565b604051610ae091906144f5565b60405180910390f35b348015610af557600080fd5b50610afe6130a8565b604051610b0b9190614385565b60405180910390f35b348015610b2057600080fd5b50610b3b6004803603810190610b36919061478d565b6130ae565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610bb05750610baf826131e8565b5b9050919050565b60185481565b610bc56132ca565b73ffffffffffffffffffffffffffffffffffffffff16610be361254e565b73ffffffffffffffffffffffffffffffffffffffff1614610c39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c30906149d6565b60405180910390fd5b80600f8190555050565b60105481565b606060008054610c5890614a25565b80601f0160208091040260200160405190810160405280929190818152602001828054610c8490614a25565b8015610cd15780601f10610ca657610100808354040283529160200191610cd1565b820191906000526020600020905b815481529060010190602001808311610cb457829003601f168201915b5050505050905090565b6000610ce6826132d2565b610d25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1c90614ac9565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610d6b82611d00565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ddc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd390614b5b565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610dfb6132ca565b73ffffffffffffffffffffffffffffffffffffffff161480610e2a5750610e2981610e246132ca565b612ce6565b5b610e69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6090614bed565b60405180910390fd5b610e73838361333e565b505050565b6000600880549050905090565b600f5481565b610e9c610e966132ca565b826133f7565b610edb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed290614c7f565b60405180910390fd5b610ee68383836134d5565b505050565b601154821115610f30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2790614d11565b60405180910390fd5b6001600f5414610f75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6c90614da3565b60405180910390fd5b60115482610f81610e78565b610f8b9190614df2565b1115610fcc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc390614eba565b60405180910390fd5b3482601a54610fdb9190614eda565b111561101c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101390614f80565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e836040518263ffffffff1660e01b815260040161108e9190614385565b60206040518083038186803b1580156110a657600080fd5b505afa1580156110ba573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110de9190614fb5565b73ffffffffffffffffffffffffffffffffffffffff1614611134576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112b90615054565b60405180910390fd5b61157c82601b546111459190614df2565b1115611186576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117d906150c0565b60405180910390fd5b60005b8281101561125757600061283b4244336040516020016111ab93929190615149565b6040516020818303038152906040528051906020012060001c6111ce91906151b5565b9050610100816111de9190614df2565b90506011546111eb610e78565b1015611243575b6111fb816132d2565b156112235761293b81111561120f5760ff90505b60018161121c9190614df2565b90506111f2565b61122d3382613731565b6001601b5461123c9190614df2565b601b819055505b50808061124f906151e6565b915050611189565b505050565b600061126783611db8565b82106112a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129f906152a1565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000601154821061136d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136490615333565b60405180910390fd5b611376826132d2565b9050919050565b6011548211156113c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b990614d11565b60405180910390fd5b6001600f5414611407576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113fe90614da3565b60405180910390fd5b60115482611413610e78565b61141d9190614df2565b111561145e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145590614eba565b60405180910390fd5b3482601a5461146d9190614eda565b11156114ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a590614f80565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff16600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e836040518263ffffffff1660e01b81526004016115209190614385565b60206040518083038186803b15801561153857600080fd5b505afa15801561154c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115709190614fb5565b73ffffffffffffffffffffffffffffffffffffffff16146115c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115bd906153c5565b60405180910390fd5b61157c82601b546115d79190614df2565b1115611618576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160f906150c0565b60405180910390fd5b60005b828110156116e957600061283b42443360405160200161163d93929190615149565b6040516020818303038152906040528051906020012060001c61166091906151b5565b9050610100816116709190614df2565b905060115461167d610e78565b10156116d5575b61168d816132d2565b156116b55761293b8111156116a15760ff90505b6001816116ae9190614df2565b9050611684565b6116bf3382613731565b6001601b546116ce9190614df2565b601b819055505b5080806116e1906151e6565b91505061161b565b505050565b60135481565b6116fc6132ca565b73ffffffffffffffffffffffffffffffffffffffff1661171a61254e565b73ffffffffffffffffffffffffffffffffffffffff1614611770576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611767906149d6565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050501580156117bb573d6000803e3d6000fd5b5050565b6117c76132ca565b73ffffffffffffffffffffffffffffffffffffffff166117e561254e565b73ffffffffffffffffffffffffffffffffffffffff161461183b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611832906149d6565b60405180910390fd5b8060108190555050565b61186083838360405180602001604052806000815250612bd7565b505050565b601760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000611895610e78565b82106118d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118cd90615457565b60405180910390fd5b600882815481106118ea576118e9615477565b5b90600052602060002001549050919050565b601154811115611941576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193890614d11565b60405180910390fd5b600160105414611986576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197d90614da3565b60405180910390fd5b60115481611992610e78565b61199c9190614df2565b11156119dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d490614eba565b60405180910390fd5b3481601a546119ec9190614eda565b1115611a2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2490614f80565b60405180910390fd5b601e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611ab9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ab0906154f2565b60405180910390fd5b61051481601c54611aca9190614df2565b1115611b0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b029061555e565b60405180910390fd5b60005b81811015611bdc57600061283b424433604051602001611b3093929190615149565b6040516020818303038152906040528051906020012060001c611b5391906151b5565b905061010081611b639190614df2565b9050601154611b70610e78565b1015611bc8575b611b80816132d2565b15611ba85761293b811115611b945760ff90505b600181611ba19190614df2565b9050611b77565b611bb23382613731565b6001601c54611bc19190614df2565b601c819055505b508080611bd4906151e6565b915050611b0e565b5050565b611be86132ca565b73ffffffffffffffffffffffffffffffffffffffff16611c0661254e565b73ffffffffffffffffffffffffffffffffffffffff1614611c5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c53906149d6565b60405180910390fd5b8060149080519060200190611c729291906141fa565b5050565b611c7e6132ca565b73ffffffffffffffffffffffffffffffffffffffff16611c9c61254e565b73ffffffffffffffffffffffffffffffffffffffff1614611cf2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ce9906149d6565b60405180910390fd5b611cfd600082613731565b50565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611da9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611da0906155f0565b60405180910390fd5b80915050919050565b601b5481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611e29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e2090615682565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611e786132ca565b73ffffffffffffffffffffffffffffffffffffffff16611e9661254e565b73ffffffffffffffffffffffffffffffffffffffff1614611eec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ee3906149d6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b601d8181548110611fbd57600080fd5b906000526020600020016000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b601154821115612031576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161202890614d11565b60405180910390fd5b6001600f5414612076576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161206d90614da3565b60405180910390fd5b60115482612082610e78565b61208c9190614df2565b11156120cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120c490614eba565b60405180910390fd5b3482601a546120dc9190614eda565b111561211d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161211490614f80565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff16600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e836040518263ffffffff1660e01b815260040161218f9190614385565b60206040518083038186803b1580156121a757600080fd5b505afa1580156121bb573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906121df9190614fb5565b73ffffffffffffffffffffffffffffffffffffffff1614612235576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161222c90615714565b60405180910390fd5b61157c82601b546122469190614df2565b1115612287576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161227e906150c0565b60405180910390fd5b60005b8281101561235857600061283b4244336040516020016122ac93929190615149565b6040516020818303038152906040528051906020012060001c6122cf91906151b5565b9050610100816122df9190614df2565b90506011546122ec610e78565b1015612344575b6122fc816132d2565b156123245761293b8111156123105760ff90505b60018161231d9190614df2565b90506122f3565b61232e3382613731565b6001601b5461233d9190614df2565b601b819055505b508080612350906151e6565b91505061228a565b505050565b6011548111156123a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161239990614d11565b60405180910390fd5b6001600e54146123e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123de90614da3565b60405180910390fd5b601154816123f3610e78565b6123fd9190614df2565b111561243e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161243590614eba565b60405180910390fd5b3481601a5461244d9190614eda565b111561248e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161248590614f80565b60405180910390fd5b60005b8181101561254a57600061283b4244336040516020016124b393929190615149565b6040516020818303038152906040528051906020012060001c6124d691906151b5565b9050610100816124e69190614df2565b90506011546124f3610e78565b1015612536575b612503816132d2565b1561252b5761293b8111156125175760ff90505b6001816125249190614df2565b90506124fa565b6125353382613731565b5b508080612542906151e6565b915050612491565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b601a5481565b6125866132ca565b73ffffffffffffffffffffffffffffffffffffffff166125a461254e565b73ffffffffffffffffffffffffffffffffffffffff16146125fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125f1906149d6565b60405180910390fd5b662386f26fc10000811015612644576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161263b906157a6565b60405180910390fd5b80601a8190555050565b601154811115612693576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161268a90614d11565b60405180910390fd5b6001600f54146126d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126cf90614da3565b60405180910390fd5b601154816126e4610e78565b6126ee9190614df2565b111561272f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161272690614eba565b60405180910390fd5b3481601a5461273e9190614eda565b111561277f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161277690614f80565b60405180910390fd5b601e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661280b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612802906154f2565b60405180910390fd5b61157c81601b5461281c9190614df2565b111561285d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612854906150c0565b60405180910390fd5b60005b8181101561292e57600061283b42443360405160200161288293929190615149565b6040516020818303038152906040528051906020012060001c6128a591906151b5565b9050610100816128b59190614df2565b90506011546128c2610e78565b101561291a575b6128d2816132d2565b156128fa5761293b8111156128e65760ff90505b6001816128f39190614df2565b90506128c9565b6129043382613731565b6001601b546129139190614df2565b601b819055505b508080612926906151e6565b915050612860565b5050565b60115481565b60606001805461294790614a25565b80601f016020809104026020016040519081016040528092919081815260200182805461297390614a25565b80156129c05780601f10612995576101008083540402835291602001916129c0565b820191906000526020600020905b8154815290600101906020018083116129a357829003601f168201915b5050505050905090565b6129d26132ca565b73ffffffffffffffffffffffffffffffffffffffff166129f061254e565b73ffffffffffffffffffffffffffffffffffffffff1614612a46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a3d906149d6565b60405180910390fd5b80600e8190555050565b612a586132ca565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612ac6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612abd90615812565b60405180910390fd5b8060056000612ad36132ca565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16612b806132ca565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612bc59190614351565b60405180910390a35050565b60195481565b612be8612be26132ca565b836133f7565b612c27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c1e90614c7f565b60405180910390fd5b612c338484848461374f565b50505050565b6060612c44826132d2565b612c83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c7a906158a4565b60405180910390fd5b6000612c8d6137ab565b90506000815111612cad5760405180602001604052806000815250612cd8565b80612cb78461383d565b604051602001612cc8929190615900565b6040516020818303038152906040525b915050919050565b60125481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600e5481565b612d886132ca565b73ffffffffffffffffffffffffffffffffffffffff16612da661254e565b73ffffffffffffffffffffffffffffffffffffffff1614612dfc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612df3906149d6565b60405180910390fd5b601954811115612e41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e3890615996565b60405180910390fd5b60195481601854612e529190614df2565b1115612e93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e8a90614eba565b60405180910390fd5b60005b81811015612ed257612eaa33601854613731565b6001601854612eb99190614df2565b6018819055508080612eca906151e6565b915050612e96565b5050565b612ede6132ca565b73ffffffffffffffffffffffffffffffffffffffff16612efc61254e565b73ffffffffffffffffffffffffffffffffffffffff1614612f52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f49906149d6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612fc2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fb990615a28565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b601c5481565b6130b66132ca565b73ffffffffffffffffffffffffffffffffffffffff166130d461254e565b73ffffffffffffffffffffffffffffffffffffffff161461312a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613121906149d6565b60405180910390fd5b601d819080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001601e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806132b357507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806132c357506132c28261399e565b5b9050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166133b183611d00565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000613402826132d2565b613441576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161343890615aba565b60405180910390fd5b600061344c83611d00565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806134bb57508373ffffffffffffffffffffffffffffffffffffffff166134a384610cdb565b73ffffffffffffffffffffffffffffffffffffffff16145b806134cc57506134cb8185612ce6565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166134f582611d00565b73ffffffffffffffffffffffffffffffffffffffff161461354b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161354290615b4c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156135bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016135b290615bde565b60405180910390fd5b6135c6838383613a08565b6135d160008261333e565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546136219190615bfe565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546136789190614df2565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b61374b828260405180602001604052806000815250613b1c565b5050565b61375a8484846134d5565b61376684848484613b77565b6137a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161379c90615ca4565b60405180910390fd5b50505050565b6060601480546137ba90614a25565b80601f01602080910402602001604051908101604052809291908181526020018280546137e690614a25565b80156138335780601f1061380857610100808354040283529160200191613833565b820191906000526020600020905b81548152906001019060200180831161381657829003601f168201915b5050505050905090565b60606000821415613885576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613999565b600082905060005b600082146138b75780806138a0906151e6565b915050600a826138b09190615cc4565b915061388d565b60008167ffffffffffffffff8111156138d3576138d2614619565b5b6040519080825280601f01601f1916602001820160405280156139055781602001600182028036833780820191505090505b5090505b600085146139925760018261391e9190615bfe565b9150600a8561392d91906151b5565b60306139399190614df2565b60f81b81838151811061394f5761394e615477565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561398b9190615cc4565b9450613909565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b613a13838383613d0e565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613a5657613a5181613d13565b613a95565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614613a9457613a938382613d5c565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613ad857613ad381613ec9565b613b17565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614613b1657613b158282613f9a565b5b5b505050565b613b268383614019565b613b336000848484613b77565b613b72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613b6990615ca4565b60405180910390fd5b505050565b6000613b988473ffffffffffffffffffffffffffffffffffffffff166141e7565b15613d01578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613bc16132ca565b8786866040518563ffffffff1660e01b8152600401613be39493929190615d4a565b602060405180830381600087803b158015613bfd57600080fd5b505af1925050508015613c2e57506040513d601f19601f82011682018060405250810190613c2b9190615dab565b60015b613cb1573d8060008114613c5e576040519150601f19603f3d011682016040523d82523d6000602084013e613c63565b606091505b50600081511415613ca9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613ca090615ca4565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613d06565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001613d6984611db8565b613d739190615bfe565b9050600060076000848152602001908152602001600020549050818114613e58576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050613edd9190615bfe565b9050600060096000848152602001908152602001600020549050600060088381548110613f0d57613f0c615477565b5b906000526020600020015490508060088381548110613f2f57613f2e615477565b5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480613f7e57613f7d615dd8565b5b6001900381819060005260206000200160009055905550505050565b6000613fa583611db8565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415614089576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161408090615e53565b60405180910390fd5b614092816132d2565b156140d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016140c990615ebf565b60405180910390fd5b6140de60008383613a08565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461412e9190614df2565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b82805461420690614a25565b90600052602060002090601f016020900481019282614228576000855561426f565b82601f1061424157805160ff191683800117855561426f565b8280016001018555821561426f579182015b8281111561426e578251825591602001919060010190614253565b5b50905061427c9190614280565b5090565b5b80821115614299576000816000905550600101614281565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6142e6816142b1565b81146142f157600080fd5b50565b600081359050614303816142dd565b92915050565b60006020828403121561431f5761431e6142a7565b5b600061432d848285016142f4565b91505092915050565b60008115159050919050565b61434b81614336565b82525050565b60006020820190506143666000830184614342565b92915050565b6000819050919050565b61437f8161436c565b82525050565b600060208201905061439a6000830184614376565b92915050565b6143a98161436c565b81146143b457600080fd5b50565b6000813590506143c6816143a0565b92915050565b6000602082840312156143e2576143e16142a7565b5b60006143f0848285016143b7565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015614433578082015181840152602081019050614418565b83811115614442576000848401525b50505050565b6000601f19601f8301169050919050565b6000614464826143f9565b61446e8185614404565b935061447e818560208601614415565b61448781614448565b840191505092915050565b600060208201905081810360008301526144ac8184614459565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006144df826144b4565b9050919050565b6144ef816144d4565b82525050565b600060208201905061450a60008301846144e6565b92915050565b614519816144d4565b811461452457600080fd5b50565b60008135905061453681614510565b92915050565b60008060408385031215614553576145526142a7565b5b600061456185828601614527565b9250506020614572858286016143b7565b9150509250929050565b600080600060608486031215614595576145946142a7565b5b60006145a386828701614527565b93505060206145b486828701614527565b92505060406145c5868287016143b7565b9150509250925092565b600080604083850312156145e6576145e56142a7565b5b60006145f4858286016143b7565b9250506020614605858286016143b7565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61465182614448565b810181811067ffffffffffffffff821117156146705761466f614619565b5b80604052505050565b600061468361429d565b905061468f8282614648565b919050565b600067ffffffffffffffff8211156146af576146ae614619565b5b6146b882614448565b9050602081019050919050565b82818337600083830152505050565b60006146e76146e284614694565b614679565b90508281526020810184848401111561470357614702614614565b5b61470e8482856146c5565b509392505050565b600082601f83011261472b5761472a61460f565b5b813561473b8482602086016146d4565b91505092915050565b60006020828403121561475a576147596142a7565b5b600082013567ffffffffffffffff811115614778576147776142ac565b5b61478484828501614716565b91505092915050565b6000602082840312156147a3576147a26142a7565b5b60006147b184828501614527565b91505092915050565b6147c381614336565b81146147ce57600080fd5b50565b6000813590506147e0816147ba565b92915050565b600080604083850312156147fd576147fc6142a7565b5b600061480b85828601614527565b925050602061481c858286016147d1565b9150509250929050565b600067ffffffffffffffff82111561484157614840614619565b5b61484a82614448565b9050602081019050919050565b600061486a61486584614826565b614679565b90508281526020810184848401111561488657614885614614565b5b6148918482856146c5565b509392505050565b600082601f8301126148ae576148ad61460f565b5b81356148be848260208601614857565b91505092915050565b600080600080608085870312156148e1576148e06142a7565b5b60006148ef87828801614527565b945050602061490087828801614527565b9350506040614911878288016143b7565b925050606085013567ffffffffffffffff811115614932576149316142ac565b5b61493e87828801614899565b91505092959194509250565b60008060408385031215614961576149606142a7565b5b600061496f85828601614527565b925050602061498085828601614527565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006149c0602083614404565b91506149cb8261498a565b602082019050919050565b600060208201905081810360008301526149ef816149b3565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680614a3d57607f821691505b60208210811415614a5157614a506149f6565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000614ab3602c83614404565b9150614abe82614a57565b604082019050919050565b60006020820190508181036000830152614ae281614aa6565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000614b45602183614404565b9150614b5082614ae9565b604082019050919050565b60006020820190508181036000830152614b7481614b38565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b6000614bd7603883614404565b9150614be282614b7b565b604082019050919050565b60006020820190508181036000830152614c0681614bca565b9050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b6000614c69603183614404565b9150614c7482614c0d565b604082019050919050565b60006020820190508181036000830152614c9881614c5c565b9050919050565b7f43616e206f6e6c79206d696e7420313520737472616e6765727320617420612060008201527f74696d6500000000000000000000000000000000000000000000000000000000602082015250565b6000614cfb602483614404565b9150614d0682614c9f565b604082019050919050565b60006020820190508181036000830152614d2a81614cee565b9050919050565b7f53616c65206d7573742062652061637469766520746f206d696e74206120737460008201527f72616e6765720000000000000000000000000000000000000000000000000000602082015250565b6000614d8d602683614404565b9150614d9882614d31565b604082019050919050565b60006020820190508181036000830152614dbc81614d80565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000614dfd8261436c565b9150614e088361436c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614e3d57614e3c614dc3565b5b828201905092915050565b7f507572636861736520776f756c6420657863656564206d617820737570706c7960008201527f206f6620537472616e6765727300000000000000000000000000000000000000602082015250565b6000614ea4602d83614404565b9150614eaf82614e48565b604082019050919050565b60006020820190508181036000830152614ed381614e97565b9050919050565b6000614ee58261436c565b9150614ef08361436c565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614f2957614f28614dc3565b5b828202905092915050565b7f546f6f206c6974746c65204554482073656e6400000000000000000000000000600082015250565b6000614f6a601383614404565b9150614f7582614f34565b602082019050919050565b60006020820190508181036000830152614f9981614f5d565b9050919050565b600081519050614faf81614510565b92915050565b600060208284031215614fcb57614fca6142a7565b5b6000614fd984828501614fa0565b91505092915050565b7f4d757374206f776e20612043617420746f206d696e74206120737472616e676560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b600061503e602183614404565b915061504982614fe2565b604082019050919050565b6000602082019050818103600083015261506d81615031565b9050919050565b7f5072652073616c6520656e646564210000000000000000000000000000000000600082015250565b60006150aa600f83614404565b91506150b582615074565b602082019050919050565b600060208201905081810360008301526150d98161509d565b9050919050565b6000819050919050565b6150fb6150f68261436c565b6150e0565b82525050565b60008160601b9050919050565b600061511982615101565b9050919050565b600061512b8261510e565b9050919050565b61514361513e826144d4565b615120565b82525050565b600061515582866150ea565b60208201915061516582856150ea565b6020820191506151758284615132565b601482019150819050949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006151c08261436c565b91506151cb8361436c565b9250826151db576151da615186565b5b828206905092915050565b60006151f18261436c565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561522457615223614dc3565b5b600182019050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b600061528b602b83614404565b91506152968261522f565b604082019050919050565b600060208201905081810360008301526152ba8161527e565b9050919050565b7f746f6b656e4964206f75747369646520636f6c6c656374696f6e20626f756e6460008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600061531d602183614404565b9150615328826152c1565b604082019050919050565b6000602082019050818103600083015261534c81615310565b9050919050565b7f4d757374206f776e20616e2061706520746f206d696e74206120737472616e6760008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b60006153af602283614404565b91506153ba82615353565b604082019050919050565b600060208201905081810360008301526153de816153a2565b9050919050565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b6000615441602c83614404565b915061544c826153e5565b604082019050919050565b6000602082019050818103600083015261547081615434565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f73656e646572206973206e6f74206f6e207468652077686974656c6973740000600082015250565b60006154dc601e83614404565b91506154e7826154a6565b602082019050919050565b6000602082019050818103600083015261550b816154cf565b9050919050565b7f507265207072652073616c6520656e6465642100000000000000000000000000600082015250565b6000615548601383614404565b915061555382615512565b602082019050919050565b600060208201905081810360008301526155778161553b565b9050919050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b60006155da602983614404565b91506155e58261557e565b604082019050919050565b60006020820190508181036000830152615609816155cd565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b600061566c602a83614404565b915061567782615610565b604082019050919050565b6000602082019050818103600083015261569b8161565f565b9050919050565b7f4d757374206f776e20616e20616c69656e626f7920746f206d696e742061207360008201527f7472616e67657200000000000000000000000000000000000000000000000000602082015250565b60006156fe602783614404565b9150615709826156a2565b604082019050919050565b6000602082019050818103600083015261572d816156f1565b9050919050565b7f5468652070726963652063616e6e6f74206265206c6f776572207468656e203060008201527f2e30312065746800000000000000000000000000000000000000000000000000602082015250565b6000615790602783614404565b915061579b82615734565b604082019050919050565b600060208201905081810360008301526157bf81615783565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b60006157fc601983614404565b9150615807826157c6565b602082019050919050565b6000602082019050818103600083015261582b816157ef565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b600061588e602f83614404565b915061589982615832565b604082019050919050565b600060208201905081810360008301526158bd81615881565b9050919050565b600081905092915050565b60006158da826143f9565b6158e481856158c4565b93506158f4818560208601614415565b80840191505092915050565b600061590c82856158cf565b915061591882846158cf565b91508190509392505050565b7f43616e206f6e6c79206d696e742032353520737472616e67657273206174206160008201527f2074696d65000000000000000000000000000000000000000000000000000000602082015250565b6000615980602583614404565b915061598b82615924565b604082019050919050565b600060208201905081810360008301526159af81615973565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000615a12602683614404565b9150615a1d826159b6565b604082019050919050565b60006020820190508181036000830152615a4181615a05565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000615aa4602c83614404565b9150615aaf82615a48565b604082019050919050565b60006020820190508181036000830152615ad381615a97565b9050919050565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b6000615b36602983614404565b9150615b4182615ada565b604082019050919050565b60006020820190508181036000830152615b6581615b29565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000615bc8602483614404565b9150615bd382615b6c565b604082019050919050565b60006020820190508181036000830152615bf781615bbb565b9050919050565b6000615c098261436c565b9150615c148361436c565b925082821015615c2757615c26614dc3565b5b828203905092915050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000615c8e603283614404565b9150615c9982615c32565b604082019050919050565b60006020820190508181036000830152615cbd81615c81565b9050919050565b6000615ccf8261436c565b9150615cda8361436c565b925082615cea57615ce9615186565b5b828204905092915050565b600081519050919050565b600082825260208201905092915050565b6000615d1c82615cf5565b615d268185615d00565b9350615d36818560208601614415565b615d3f81614448565b840191505092915050565b6000608082019050615d5f60008301876144e6565b615d6c60208301866144e6565b615d796040830185614376565b8181036060830152615d8b8184615d11565b905095945050505050565b600081519050615da5816142dd565b92915050565b600060208284031215615dc157615dc06142a7565b5b6000615dcf84828501615d96565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000615e3d602083614404565b9150615e4882615e07565b602082019050919050565b60006020820190508181036000830152615e6c81615e30565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000615ea9601c83614404565b9150615eb482615e73565b602082019050919050565b60006020820190508181036000830152615ed881615e9c565b905091905056fea2646970667358221220fd26f2ffdf3ff94e1f923f611802b338dd650bd7c3c9665b0f42fc38cf32a48964736f6c6343000809003368747470733a2f2f66756e6e796c6f6f6b696e67737472616e676572732e636f6d2f6a736f6e2f737472616e676572

Deployed Bytecode

0x6080604052600436106102c95760003560e01c80636c902f171161017557806396596532116100dc578063e985e9c511610095578063f2fde38b1161006f578063f2fde38b14610a95578063f3a5293414610abe578063f6a31c6614610ae9578063f80f5dd514610b14576102c9565b8063e985e9c514610a04578063eb8d244414610a41578063f21918c514610a6c576102c9565b806396596532146108f6578063a22cb4651461091f578063a9898fd914610948578063b88d4fde14610973578063c87b56dd1461099c578063d21c0af1146109d9576102c9565b80638da5cb5b1161012e5780638da5cb5b14610805578063904527121461083057806391b7f5ed1461085b578063932b4ce91461088457806395b4ee65146108a057806395d89b41146108cb576102c9565b80636c902f171461071157806370a082311461073c578063715018a6146107795780637ebd1b301461079057806381aac075146107cd57806386422546146107e9576102c9565b8063323f0ae61161023457806342842e0e116101ed57806352d2be82116101c757806352d2be821461066657806355f804b3146106825780635c56b9ad146106ab5780636352211e146106d4576102c9565b806342842e0e146105d5578063461e54cf146105fe5780634f6ccce714610629576102c9565b8063323f0ae6146104f357806333c41a901461051e5780633612f2901461055b578063369e31d9146105775780633ccfd60b146105a25780633f0ff6aa146105ac576102c9565b8063095ea7b311610286578063095ea7b3146103f257806318160ddd1461041b5780631f0234d81461044657806323b872dd1461047157806329e745db1461049a5780632f745c59146104b6576102c9565b806301ffc9a7146102ce57806304285a0c1461030b578063049f21e3146103365780630596ee511461035f57806306fdde031461038a578063081812fc146103b5575b600080fd5b3480156102da57600080fd5b506102f560048036038101906102f09190614309565b610b3d565b6040516103029190614351565b60405180910390f35b34801561031757600080fd5b50610320610bb7565b60405161032d9190614385565b60405180910390f35b34801561034257600080fd5b5061035d600480360381019061035891906143cc565b610bbd565b005b34801561036b57600080fd5b50610374610c43565b6040516103819190614385565b60405180910390f35b34801561039657600080fd5b5061039f610c49565b6040516103ac9190614492565b60405180910390f35b3480156103c157600080fd5b506103dc60048036038101906103d791906143cc565b610cdb565b6040516103e991906144f5565b60405180910390f35b3480156103fe57600080fd5b506104196004803603810190610414919061453c565b610d60565b005b34801561042757600080fd5b50610430610e78565b60405161043d9190614385565b60405180910390f35b34801561045257600080fd5b5061045b610e85565b6040516104689190614385565b60405180910390f35b34801561047d57600080fd5b506104986004803603810190610493919061457c565b610e8b565b005b6104b460048036038101906104af91906145cf565b610eeb565b005b3480156104c257600080fd5b506104dd60048036038101906104d8919061453c565b61125c565b6040516104ea9190614385565b60405180910390f35b3480156104ff57600080fd5b50610508611301565b60405161051591906144f5565b60405180910390f35b34801561052a57600080fd5b50610545600480360381019061054091906143cc565b611327565b6040516105529190614351565b60405180910390f35b610575600480360381019061057091906145cf565b61137d565b005b34801561058357600080fd5b5061058c6116ee565b6040516105999190614385565b60405180910390f35b6105aa6116f4565b005b3480156105b857600080fd5b506105d360048036038101906105ce91906143cc565b6117bf565b005b3480156105e157600080fd5b506105fc60048036038101906105f7919061457c565b611845565b005b34801561060a57600080fd5b50610613611865565b60405161062091906144f5565b60405180910390f35b34801561063557600080fd5b50610650600480360381019061064b91906143cc565b61188b565b60405161065d9190614385565b60405180910390f35b610680600480360381019061067b91906143cc565b6118fc565b005b34801561068e57600080fd5b506106a960048036038101906106a49190614744565b611be0565b005b3480156106b757600080fd5b506106d260048036038101906106cd91906143cc565b611c76565b005b3480156106e057600080fd5b506106fb60048036038101906106f691906143cc565b611d00565b60405161070891906144f5565b60405180910390f35b34801561071d57600080fd5b50610726611db2565b6040516107339190614385565b60405180910390f35b34801561074857600080fd5b50610763600480360381019061075e919061478d565b611db8565b6040516107709190614385565b60405180910390f35b34801561078557600080fd5b5061078e611e70565b005b34801561079c57600080fd5b506107b760048036038101906107b291906143cc565b611fad565b6040516107c491906144f5565b60405180910390f35b6107e760048036038101906107e291906145cf565b611fec565b005b61080360048036038101906107fe91906143cc565b61235d565b005b34801561081157600080fd5b5061081a61254e565b60405161082791906144f5565b60405180910390f35b34801561083c57600080fd5b50610845612578565b6040516108529190614385565b60405180910390f35b34801561086757600080fd5b50610882600480360381019061087d91906143cc565b61257e565b005b61089e600480360381019061089991906143cc565b61264e565b005b3480156108ac57600080fd5b506108b5612932565b6040516108c29190614385565b60405180910390f35b3480156108d757600080fd5b506108e0612938565b6040516108ed9190614492565b60405180910390f35b34801561090257600080fd5b5061091d600480360381019061091891906143cc565b6129ca565b005b34801561092b57600080fd5b50610946600480360381019061094191906147e6565b612a50565b005b34801561095457600080fd5b5061095d612bd1565b60405161096a9190614385565b60405180910390f35b34801561097f57600080fd5b5061099a600480360381019061099591906148c7565b612bd7565b005b3480156109a857600080fd5b506109c360048036038101906109be91906143cc565b612c39565b6040516109d09190614492565b60405180910390f35b3480156109e557600080fd5b506109ee612ce0565b6040516109fb9190614385565b60405180910390f35b348015610a1057600080fd5b50610a2b6004803603810190610a26919061494a565b612ce6565b604051610a389190614351565b60405180910390f35b348015610a4d57600080fd5b50610a56612d7a565b604051610a639190614385565b60405180910390f35b348015610a7857600080fd5b50610a936004803603810190610a8e91906143cc565b612d80565b005b348015610aa157600080fd5b50610abc6004803603810190610ab7919061478d565b612ed6565b005b348015610aca57600080fd5b50610ad3613082565b604051610ae091906144f5565b60405180910390f35b348015610af557600080fd5b50610afe6130a8565b604051610b0b9190614385565b60405180910390f35b348015610b2057600080fd5b50610b3b6004803603810190610b36919061478d565b6130ae565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610bb05750610baf826131e8565b5b9050919050565b60185481565b610bc56132ca565b73ffffffffffffffffffffffffffffffffffffffff16610be361254e565b73ffffffffffffffffffffffffffffffffffffffff1614610c39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c30906149d6565b60405180910390fd5b80600f8190555050565b60105481565b606060008054610c5890614a25565b80601f0160208091040260200160405190810160405280929190818152602001828054610c8490614a25565b8015610cd15780601f10610ca657610100808354040283529160200191610cd1565b820191906000526020600020905b815481529060010190602001808311610cb457829003601f168201915b5050505050905090565b6000610ce6826132d2565b610d25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1c90614ac9565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610d6b82611d00565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ddc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd390614b5b565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610dfb6132ca565b73ffffffffffffffffffffffffffffffffffffffff161480610e2a5750610e2981610e246132ca565b612ce6565b5b610e69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6090614bed565b60405180910390fd5b610e73838361333e565b505050565b6000600880549050905090565b600f5481565b610e9c610e966132ca565b826133f7565b610edb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed290614c7f565b60405180910390fd5b610ee68383836134d5565b505050565b601154821115610f30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2790614d11565b60405180910390fd5b6001600f5414610f75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6c90614da3565b60405180910390fd5b60115482610f81610e78565b610f8b9190614df2565b1115610fcc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc390614eba565b60405180910390fd5b3482601a54610fdb9190614eda565b111561101c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101390614f80565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e836040518263ffffffff1660e01b815260040161108e9190614385565b60206040518083038186803b1580156110a657600080fd5b505afa1580156110ba573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110de9190614fb5565b73ffffffffffffffffffffffffffffffffffffffff1614611134576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112b90615054565b60405180910390fd5b61157c82601b546111459190614df2565b1115611186576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117d906150c0565b60405180910390fd5b60005b8281101561125757600061283b4244336040516020016111ab93929190615149565b6040516020818303038152906040528051906020012060001c6111ce91906151b5565b9050610100816111de9190614df2565b90506011546111eb610e78565b1015611243575b6111fb816132d2565b156112235761293b81111561120f5760ff90505b60018161121c9190614df2565b90506111f2565b61122d3382613731565b6001601b5461123c9190614df2565b601b819055505b50808061124f906151e6565b915050611189565b505050565b600061126783611db8565b82106112a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129f906152a1565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000601154821061136d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136490615333565b60405180910390fd5b611376826132d2565b9050919050565b6011548211156113c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b990614d11565b60405180910390fd5b6001600f5414611407576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113fe90614da3565b60405180910390fd5b60115482611413610e78565b61141d9190614df2565b111561145e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145590614eba565b60405180910390fd5b3482601a5461146d9190614eda565b11156114ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a590614f80565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff16600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e836040518263ffffffff1660e01b81526004016115209190614385565b60206040518083038186803b15801561153857600080fd5b505afa15801561154c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115709190614fb5565b73ffffffffffffffffffffffffffffffffffffffff16146115c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115bd906153c5565b60405180910390fd5b61157c82601b546115d79190614df2565b1115611618576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160f906150c0565b60405180910390fd5b60005b828110156116e957600061283b42443360405160200161163d93929190615149565b6040516020818303038152906040528051906020012060001c61166091906151b5565b9050610100816116709190614df2565b905060115461167d610e78565b10156116d5575b61168d816132d2565b156116b55761293b8111156116a15760ff90505b6001816116ae9190614df2565b9050611684565b6116bf3382613731565b6001601b546116ce9190614df2565b601b819055505b5080806116e1906151e6565b91505061161b565b505050565b60135481565b6116fc6132ca565b73ffffffffffffffffffffffffffffffffffffffff1661171a61254e565b73ffffffffffffffffffffffffffffffffffffffff1614611770576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611767906149d6565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050501580156117bb573d6000803e3d6000fd5b5050565b6117c76132ca565b73ffffffffffffffffffffffffffffffffffffffff166117e561254e565b73ffffffffffffffffffffffffffffffffffffffff161461183b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611832906149d6565b60405180910390fd5b8060108190555050565b61186083838360405180602001604052806000815250612bd7565b505050565b601760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000611895610e78565b82106118d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118cd90615457565b60405180910390fd5b600882815481106118ea576118e9615477565b5b90600052602060002001549050919050565b601154811115611941576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193890614d11565b60405180910390fd5b600160105414611986576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197d90614da3565b60405180910390fd5b60115481611992610e78565b61199c9190614df2565b11156119dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d490614eba565b60405180910390fd5b3481601a546119ec9190614eda565b1115611a2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2490614f80565b60405180910390fd5b601e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611ab9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ab0906154f2565b60405180910390fd5b61051481601c54611aca9190614df2565b1115611b0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b029061555e565b60405180910390fd5b60005b81811015611bdc57600061283b424433604051602001611b3093929190615149565b6040516020818303038152906040528051906020012060001c611b5391906151b5565b905061010081611b639190614df2565b9050601154611b70610e78565b1015611bc8575b611b80816132d2565b15611ba85761293b811115611b945760ff90505b600181611ba19190614df2565b9050611b77565b611bb23382613731565b6001601c54611bc19190614df2565b601c819055505b508080611bd4906151e6565b915050611b0e565b5050565b611be86132ca565b73ffffffffffffffffffffffffffffffffffffffff16611c0661254e565b73ffffffffffffffffffffffffffffffffffffffff1614611c5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c53906149d6565b60405180910390fd5b8060149080519060200190611c729291906141fa565b5050565b611c7e6132ca565b73ffffffffffffffffffffffffffffffffffffffff16611c9c61254e565b73ffffffffffffffffffffffffffffffffffffffff1614611cf2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ce9906149d6565b60405180910390fd5b611cfd600082613731565b50565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611da9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611da0906155f0565b60405180910390fd5b80915050919050565b601b5481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611e29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e2090615682565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611e786132ca565b73ffffffffffffffffffffffffffffffffffffffff16611e9661254e565b73ffffffffffffffffffffffffffffffffffffffff1614611eec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ee3906149d6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b601d8181548110611fbd57600080fd5b906000526020600020016000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b601154821115612031576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161202890614d11565b60405180910390fd5b6001600f5414612076576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161206d90614da3565b60405180910390fd5b60115482612082610e78565b61208c9190614df2565b11156120cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120c490614eba565b60405180910390fd5b3482601a546120dc9190614eda565b111561211d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161211490614f80565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff16600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e836040518263ffffffff1660e01b815260040161218f9190614385565b60206040518083038186803b1580156121a757600080fd5b505afa1580156121bb573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906121df9190614fb5565b73ffffffffffffffffffffffffffffffffffffffff1614612235576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161222c90615714565b60405180910390fd5b61157c82601b546122469190614df2565b1115612287576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161227e906150c0565b60405180910390fd5b60005b8281101561235857600061283b4244336040516020016122ac93929190615149565b6040516020818303038152906040528051906020012060001c6122cf91906151b5565b9050610100816122df9190614df2565b90506011546122ec610e78565b1015612344575b6122fc816132d2565b156123245761293b8111156123105760ff90505b60018161231d9190614df2565b90506122f3565b61232e3382613731565b6001601b5461233d9190614df2565b601b819055505b508080612350906151e6565b91505061228a565b505050565b6011548111156123a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161239990614d11565b60405180910390fd5b6001600e54146123e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123de90614da3565b60405180910390fd5b601154816123f3610e78565b6123fd9190614df2565b111561243e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161243590614eba565b60405180910390fd5b3481601a5461244d9190614eda565b111561248e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161248590614f80565b60405180910390fd5b60005b8181101561254a57600061283b4244336040516020016124b393929190615149565b6040516020818303038152906040528051906020012060001c6124d691906151b5565b9050610100816124e69190614df2565b90506011546124f3610e78565b1015612536575b612503816132d2565b1561252b5761293b8111156125175760ff90505b6001816125249190614df2565b90506124fa565b6125353382613731565b5b508080612542906151e6565b915050612491565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b601a5481565b6125866132ca565b73ffffffffffffffffffffffffffffffffffffffff166125a461254e565b73ffffffffffffffffffffffffffffffffffffffff16146125fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125f1906149d6565b60405180910390fd5b662386f26fc10000811015612644576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161263b906157a6565b60405180910390fd5b80601a8190555050565b601154811115612693576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161268a90614d11565b60405180910390fd5b6001600f54146126d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126cf90614da3565b60405180910390fd5b601154816126e4610e78565b6126ee9190614df2565b111561272f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161272690614eba565b60405180910390fd5b3481601a5461273e9190614eda565b111561277f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161277690614f80565b60405180910390fd5b601e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661280b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612802906154f2565b60405180910390fd5b61157c81601b5461281c9190614df2565b111561285d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612854906150c0565b60405180910390fd5b60005b8181101561292e57600061283b42443360405160200161288293929190615149565b6040516020818303038152906040528051906020012060001c6128a591906151b5565b9050610100816128b59190614df2565b90506011546128c2610e78565b101561291a575b6128d2816132d2565b156128fa5761293b8111156128e65760ff90505b6001816128f39190614df2565b90506128c9565b6129043382613731565b6001601b546129139190614df2565b601b819055505b508080612926906151e6565b915050612860565b5050565b60115481565b60606001805461294790614a25565b80601f016020809104026020016040519081016040528092919081815260200182805461297390614a25565b80156129c05780601f10612995576101008083540402835291602001916129c0565b820191906000526020600020905b8154815290600101906020018083116129a357829003601f168201915b5050505050905090565b6129d26132ca565b73ffffffffffffffffffffffffffffffffffffffff166129f061254e565b73ffffffffffffffffffffffffffffffffffffffff1614612a46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a3d906149d6565b60405180910390fd5b80600e8190555050565b612a586132ca565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612ac6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612abd90615812565b60405180910390fd5b8060056000612ad36132ca565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16612b806132ca565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612bc59190614351565b60405180910390a35050565b60195481565b612be8612be26132ca565b836133f7565b612c27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c1e90614c7f565b60405180910390fd5b612c338484848461374f565b50505050565b6060612c44826132d2565b612c83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c7a906158a4565b60405180910390fd5b6000612c8d6137ab565b90506000815111612cad5760405180602001604052806000815250612cd8565b80612cb78461383d565b604051602001612cc8929190615900565b6040516020818303038152906040525b915050919050565b60125481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600e5481565b612d886132ca565b73ffffffffffffffffffffffffffffffffffffffff16612da661254e565b73ffffffffffffffffffffffffffffffffffffffff1614612dfc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612df3906149d6565b60405180910390fd5b601954811115612e41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e3890615996565b60405180910390fd5b60195481601854612e529190614df2565b1115612e93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e8a90614eba565b60405180910390fd5b60005b81811015612ed257612eaa33601854613731565b6001601854612eb99190614df2565b6018819055508080612eca906151e6565b915050612e96565b5050565b612ede6132ca565b73ffffffffffffffffffffffffffffffffffffffff16612efc61254e565b73ffffffffffffffffffffffffffffffffffffffff1614612f52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f49906149d6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612fc2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fb990615a28565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b601c5481565b6130b66132ca565b73ffffffffffffffffffffffffffffffffffffffff166130d461254e565b73ffffffffffffffffffffffffffffffffffffffff161461312a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613121906149d6565b60405180910390fd5b601d819080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001601e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806132b357507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806132c357506132c28261399e565b5b9050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166133b183611d00565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000613402826132d2565b613441576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161343890615aba565b60405180910390fd5b600061344c83611d00565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806134bb57508373ffffffffffffffffffffffffffffffffffffffff166134a384610cdb565b73ffffffffffffffffffffffffffffffffffffffff16145b806134cc57506134cb8185612ce6565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166134f582611d00565b73ffffffffffffffffffffffffffffffffffffffff161461354b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161354290615b4c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156135bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016135b290615bde565b60405180910390fd5b6135c6838383613a08565b6135d160008261333e565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546136219190615bfe565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546136789190614df2565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b61374b828260405180602001604052806000815250613b1c565b5050565b61375a8484846134d5565b61376684848484613b77565b6137a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161379c90615ca4565b60405180910390fd5b50505050565b6060601480546137ba90614a25565b80601f01602080910402602001604051908101604052809291908181526020018280546137e690614a25565b80156138335780601f1061380857610100808354040283529160200191613833565b820191906000526020600020905b81548152906001019060200180831161381657829003601f168201915b5050505050905090565b60606000821415613885576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613999565b600082905060005b600082146138b75780806138a0906151e6565b915050600a826138b09190615cc4565b915061388d565b60008167ffffffffffffffff8111156138d3576138d2614619565b5b6040519080825280601f01601f1916602001820160405280156139055781602001600182028036833780820191505090505b5090505b600085146139925760018261391e9190615bfe565b9150600a8561392d91906151b5565b60306139399190614df2565b60f81b81838151811061394f5761394e615477565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561398b9190615cc4565b9450613909565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b613a13838383613d0e565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613a5657613a5181613d13565b613a95565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614613a9457613a938382613d5c565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613ad857613ad381613ec9565b613b17565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614613b1657613b158282613f9a565b5b5b505050565b613b268383614019565b613b336000848484613b77565b613b72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613b6990615ca4565b60405180910390fd5b505050565b6000613b988473ffffffffffffffffffffffffffffffffffffffff166141e7565b15613d01578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613bc16132ca565b8786866040518563ffffffff1660e01b8152600401613be39493929190615d4a565b602060405180830381600087803b158015613bfd57600080fd5b505af1925050508015613c2e57506040513d601f19601f82011682018060405250810190613c2b9190615dab565b60015b613cb1573d8060008114613c5e576040519150601f19603f3d011682016040523d82523d6000602084013e613c63565b606091505b50600081511415613ca9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613ca090615ca4565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613d06565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001613d6984611db8565b613d739190615bfe565b9050600060076000848152602001908152602001600020549050818114613e58576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050613edd9190615bfe565b9050600060096000848152602001908152602001600020549050600060088381548110613f0d57613f0c615477565b5b906000526020600020015490508060088381548110613f2f57613f2e615477565b5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480613f7e57613f7d615dd8565b5b6001900381819060005260206000200160009055905550505050565b6000613fa583611db8565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415614089576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161408090615e53565b60405180910390fd5b614092816132d2565b156140d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016140c990615ebf565b60405180910390fd5b6140de60008383613a08565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461412e9190614df2565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b82805461420690614a25565b90600052602060002090601f016020900481019282614228576000855561426f565b82601f1061424157805160ff191683800117855561426f565b8280016001018555821561426f579182015b8281111561426e578251825591602001919060010190614253565b5b50905061427c9190614280565b5090565b5b80821115614299576000816000905550600101614281565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6142e6816142b1565b81146142f157600080fd5b50565b600081359050614303816142dd565b92915050565b60006020828403121561431f5761431e6142a7565b5b600061432d848285016142f4565b91505092915050565b60008115159050919050565b61434b81614336565b82525050565b60006020820190506143666000830184614342565b92915050565b6000819050919050565b61437f8161436c565b82525050565b600060208201905061439a6000830184614376565b92915050565b6143a98161436c565b81146143b457600080fd5b50565b6000813590506143c6816143a0565b92915050565b6000602082840312156143e2576143e16142a7565b5b60006143f0848285016143b7565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015614433578082015181840152602081019050614418565b83811115614442576000848401525b50505050565b6000601f19601f8301169050919050565b6000614464826143f9565b61446e8185614404565b935061447e818560208601614415565b61448781614448565b840191505092915050565b600060208201905081810360008301526144ac8184614459565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006144df826144b4565b9050919050565b6144ef816144d4565b82525050565b600060208201905061450a60008301846144e6565b92915050565b614519816144d4565b811461452457600080fd5b50565b60008135905061453681614510565b92915050565b60008060408385031215614553576145526142a7565b5b600061456185828601614527565b9250506020614572858286016143b7565b9150509250929050565b600080600060608486031215614595576145946142a7565b5b60006145a386828701614527565b93505060206145b486828701614527565b92505060406145c5868287016143b7565b9150509250925092565b600080604083850312156145e6576145e56142a7565b5b60006145f4858286016143b7565b9250506020614605858286016143b7565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61465182614448565b810181811067ffffffffffffffff821117156146705761466f614619565b5b80604052505050565b600061468361429d565b905061468f8282614648565b919050565b600067ffffffffffffffff8211156146af576146ae614619565b5b6146b882614448565b9050602081019050919050565b82818337600083830152505050565b60006146e76146e284614694565b614679565b90508281526020810184848401111561470357614702614614565b5b61470e8482856146c5565b509392505050565b600082601f83011261472b5761472a61460f565b5b813561473b8482602086016146d4565b91505092915050565b60006020828403121561475a576147596142a7565b5b600082013567ffffffffffffffff811115614778576147776142ac565b5b61478484828501614716565b91505092915050565b6000602082840312156147a3576147a26142a7565b5b60006147b184828501614527565b91505092915050565b6147c381614336565b81146147ce57600080fd5b50565b6000813590506147e0816147ba565b92915050565b600080604083850312156147fd576147fc6142a7565b5b600061480b85828601614527565b925050602061481c858286016147d1565b9150509250929050565b600067ffffffffffffffff82111561484157614840614619565b5b61484a82614448565b9050602081019050919050565b600061486a61486584614826565b614679565b90508281526020810184848401111561488657614885614614565b5b6148918482856146c5565b509392505050565b600082601f8301126148ae576148ad61460f565b5b81356148be848260208601614857565b91505092915050565b600080600080608085870312156148e1576148e06142a7565b5b60006148ef87828801614527565b945050602061490087828801614527565b9350506040614911878288016143b7565b925050606085013567ffffffffffffffff811115614932576149316142ac565b5b61493e87828801614899565b91505092959194509250565b60008060408385031215614961576149606142a7565b5b600061496f85828601614527565b925050602061498085828601614527565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006149c0602083614404565b91506149cb8261498a565b602082019050919050565b600060208201905081810360008301526149ef816149b3565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680614a3d57607f821691505b60208210811415614a5157614a506149f6565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000614ab3602c83614404565b9150614abe82614a57565b604082019050919050565b60006020820190508181036000830152614ae281614aa6565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000614b45602183614404565b9150614b5082614ae9565b604082019050919050565b60006020820190508181036000830152614b7481614b38565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b6000614bd7603883614404565b9150614be282614b7b565b604082019050919050565b60006020820190508181036000830152614c0681614bca565b9050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b6000614c69603183614404565b9150614c7482614c0d565b604082019050919050565b60006020820190508181036000830152614c9881614c5c565b9050919050565b7f43616e206f6e6c79206d696e7420313520737472616e6765727320617420612060008201527f74696d6500000000000000000000000000000000000000000000000000000000602082015250565b6000614cfb602483614404565b9150614d0682614c9f565b604082019050919050565b60006020820190508181036000830152614d2a81614cee565b9050919050565b7f53616c65206d7573742062652061637469766520746f206d696e74206120737460008201527f72616e6765720000000000000000000000000000000000000000000000000000602082015250565b6000614d8d602683614404565b9150614d9882614d31565b604082019050919050565b60006020820190508181036000830152614dbc81614d80565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000614dfd8261436c565b9150614e088361436c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614e3d57614e3c614dc3565b5b828201905092915050565b7f507572636861736520776f756c6420657863656564206d617820737570706c7960008201527f206f6620537472616e6765727300000000000000000000000000000000000000602082015250565b6000614ea4602d83614404565b9150614eaf82614e48565b604082019050919050565b60006020820190508181036000830152614ed381614e97565b9050919050565b6000614ee58261436c565b9150614ef08361436c565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614f2957614f28614dc3565b5b828202905092915050565b7f546f6f206c6974746c65204554482073656e6400000000000000000000000000600082015250565b6000614f6a601383614404565b9150614f7582614f34565b602082019050919050565b60006020820190508181036000830152614f9981614f5d565b9050919050565b600081519050614faf81614510565b92915050565b600060208284031215614fcb57614fca6142a7565b5b6000614fd984828501614fa0565b91505092915050565b7f4d757374206f776e20612043617420746f206d696e74206120737472616e676560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b600061503e602183614404565b915061504982614fe2565b604082019050919050565b6000602082019050818103600083015261506d81615031565b9050919050565b7f5072652073616c6520656e646564210000000000000000000000000000000000600082015250565b60006150aa600f83614404565b91506150b582615074565b602082019050919050565b600060208201905081810360008301526150d98161509d565b9050919050565b6000819050919050565b6150fb6150f68261436c565b6150e0565b82525050565b60008160601b9050919050565b600061511982615101565b9050919050565b600061512b8261510e565b9050919050565b61514361513e826144d4565b615120565b82525050565b600061515582866150ea565b60208201915061516582856150ea565b6020820191506151758284615132565b601482019150819050949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006151c08261436c565b91506151cb8361436c565b9250826151db576151da615186565b5b828206905092915050565b60006151f18261436c565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561522457615223614dc3565b5b600182019050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b600061528b602b83614404565b91506152968261522f565b604082019050919050565b600060208201905081810360008301526152ba8161527e565b9050919050565b7f746f6b656e4964206f75747369646520636f6c6c656374696f6e20626f756e6460008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600061531d602183614404565b9150615328826152c1565b604082019050919050565b6000602082019050818103600083015261534c81615310565b9050919050565b7f4d757374206f776e20616e2061706520746f206d696e74206120737472616e6760008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b60006153af602283614404565b91506153ba82615353565b604082019050919050565b600060208201905081810360008301526153de816153a2565b9050919050565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b6000615441602c83614404565b915061544c826153e5565b604082019050919050565b6000602082019050818103600083015261547081615434565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f73656e646572206973206e6f74206f6e207468652077686974656c6973740000600082015250565b60006154dc601e83614404565b91506154e7826154a6565b602082019050919050565b6000602082019050818103600083015261550b816154cf565b9050919050565b7f507265207072652073616c6520656e6465642100000000000000000000000000600082015250565b6000615548601383614404565b915061555382615512565b602082019050919050565b600060208201905081810360008301526155778161553b565b9050919050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b60006155da602983614404565b91506155e58261557e565b604082019050919050565b60006020820190508181036000830152615609816155cd565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b600061566c602a83614404565b915061567782615610565b604082019050919050565b6000602082019050818103600083015261569b8161565f565b9050919050565b7f4d757374206f776e20616e20616c69656e626f7920746f206d696e742061207360008201527f7472616e67657200000000000000000000000000000000000000000000000000602082015250565b60006156fe602783614404565b9150615709826156a2565b604082019050919050565b6000602082019050818103600083015261572d816156f1565b9050919050565b7f5468652070726963652063616e6e6f74206265206c6f776572207468656e203060008201527f2e30312065746800000000000000000000000000000000000000000000000000602082015250565b6000615790602783614404565b915061579b82615734565b604082019050919050565b600060208201905081810360008301526157bf81615783565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b60006157fc601983614404565b9150615807826157c6565b602082019050919050565b6000602082019050818103600083015261582b816157ef565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b600061588e602f83614404565b915061589982615832565b604082019050919050565b600060208201905081810360008301526158bd81615881565b9050919050565b600081905092915050565b60006158da826143f9565b6158e481856158c4565b93506158f4818560208601614415565b80840191505092915050565b600061590c82856158cf565b915061591882846158cf565b91508190509392505050565b7f43616e206f6e6c79206d696e742032353520737472616e67657273206174206160008201527f2074696d65000000000000000000000000000000000000000000000000000000602082015250565b6000615980602583614404565b915061598b82615924565b604082019050919050565b600060208201905081810360008301526159af81615973565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000615a12602683614404565b9150615a1d826159b6565b604082019050919050565b60006020820190508181036000830152615a4181615a05565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000615aa4602c83614404565b9150615aaf82615a48565b604082019050919050565b60006020820190508181036000830152615ad381615a97565b9050919050565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b6000615b36602983614404565b9150615b4182615ada565b604082019050919050565b60006020820190508181036000830152615b6581615b29565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000615bc8602483614404565b9150615bd382615b6c565b604082019050919050565b60006020820190508181036000830152615bf781615bbb565b9050919050565b6000615c098261436c565b9150615c148361436c565b925082821015615c2757615c26614dc3565b5b828203905092915050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000615c8e603283614404565b9150615c9982615c32565b604082019050919050565b60006020820190508181036000830152615cbd81615c81565b9050919050565b6000615ccf8261436c565b9150615cda8361436c565b925082615cea57615ce9615186565b5b828204905092915050565b600081519050919050565b600082825260208201905092915050565b6000615d1c82615cf5565b615d268185615d00565b9350615d36818560208601614415565b615d3f81614448565b840191505092915050565b6000608082019050615d5f60008301876144e6565b615d6c60208301866144e6565b615d796040830185614376565b8181036060830152615d8b8184615d11565b905095945050505050565b600081519050615da5816142dd565b92915050565b600060208284031215615dc157615dc06142a7565b5b6000615dcf84828501615d96565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000615e3d602083614404565b9150615e4882615e07565b602082019050919050565b60006020820190508181036000830152615e6c81615e30565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000615ea9601c83614404565b9150615eb482615e73565b602082019050919050565b60006020820190508181036000830152615ed881615e9c565b905091905056fea2646970667358221220fd26f2ffdf3ff94e1f923f611802b338dd650bd7c3c9665b0f42fc38cf32a48964736f6c63430008090033

Deployed Bytecode Sourcemap

38364:10373:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29028:237;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38835:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47861:101;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38566:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16233:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17693:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17230:397;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29681:113;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38531:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18583:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44030:1241;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29349:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38744:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39743:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45275:1242;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38678:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48083:147;;;:::i;:::-;;47968:107;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;18959:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38804:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29871:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41565:1236;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40026:82;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48599:131;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;15927:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38934:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15657:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36900:148;;;;;;;;;;;;;:::i;:::-;;39005:26;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46521:1231;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40555:1002;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36249:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38901:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48236:190;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42807:1217;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38604:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16402:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47760:95;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;17986:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38870:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19181:285;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;16577:360;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38636:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18352:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38499:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40114:435;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37203:244;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38774:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38968:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48432:161;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29028:237;29130:4;29169:35;29154:50;;;:11;:50;;;;:103;;;;29221:36;29245:11;29221:23;:36::i;:::-;29154:103;29147:110;;29028:237;;;:::o;38835:30::-;;;;:::o;47861:101::-;36480:12;:10;:12::i;:::-;36469:23;;:7;:5;:7::i;:::-;:23;;;36461:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47946:10:::1;47928:15;:28;;;;47861:101:::0;:::o;38566:33::-;;;;:::o;16233:100::-;16287:13;16320:5;16313:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16233:100;:::o;17693:221::-;17769:7;17797:16;17805:7;17797;:16::i;:::-;17789:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;17882:15;:24;17898:7;17882:24;;;;;;;;;;;;;;;;;;;;;17875:31;;17693:221;;;:::o;17230:397::-;17311:13;17327:23;17342:7;17327:14;:23::i;:::-;17311:39;;17375:5;17369:11;;:2;:11;;;;17361:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;17455:5;17439:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;17464:37;17481:5;17488:12;:10;:12::i;:::-;17464:16;:37::i;:::-;17439:62;17431:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;17598:21;17607:2;17611:7;17598:8;:21::i;:::-;17300:327;17230:397;;:::o;29681:113::-;29742:7;29769:10;:17;;;;29762:24;;29681:113;:::o;38531:30::-;;;;:::o;18583:305::-;18744:41;18763:12;:10;:12::i;:::-;18777:7;18744:18;:41::i;:::-;18736:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;18852:28;18862:4;18868:2;18872:7;18852:9;:28::i;:::-;18583:305;;;:::o;44030:1241::-;44147:12;;44129:14;:30;;44121:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;44234:1;44215:15;;:20;44207:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;44329:12;;44310:14;44294:13;:11;:13::i;:::-;:30;;;;:::i;:::-;44293:48;;44285:106;;;;;;;;;;;;:::i;:::-;;;;;;;;;44442:9;44423:14;44407:13;;:30;;;;:::i;:::-;44406:45;;44398:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;44510:10;44490:30;;:4;;;;;;;;;;;:12;;;44503:2;44490:16;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:30;;;44482:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;44610:4;44591:14;44574;;:31;;;;:::i;:::-;44573:41;;44565:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;44647:6;44643:623;44663:14;44659:1;:18;44643:623;;;44699:14;44799:5;44748:15;44765:16;44783:10;44731:63;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;44721:74;;;;;;44716:80;;:88;;;;:::i;:::-;44699:105;;44843:3;44831:9;:15;;;;:::i;:::-;44819:27;;44881:12;;44865:13;:11;:13::i;:::-;:28;44861:394;;;44914:203;44920:18;44928:9;44920:7;:18::i;:::-;44914:203;;;44978:5;44966:9;:17;44963:87;;;45023:3;45011:15;;44963:87;45096:1;45084:9;:13;;;;:::i;:::-;45072:25;;44914:203;;;45135:32;45145:10;45157:9;45135;:32::i;:::-;45238:1;45221:14;;:18;;;;:::i;:::-;45204:14;:35;;;;44861:394;44684:582;44679:3;;;;;:::i;:::-;;;;44643:623;;;;44030:1241;;:::o;29349:256::-;29446:7;29482:23;29499:5;29482:16;:23::i;:::-;29474:5;:31;29466:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;29571:12;:19;29584:5;29571:19;;;;;;;;;;;;;;;:26;29591:5;29571:26;;;;;;;;;;;;29564:33;;29349:256;;;;:::o;38744:25::-;;;;;;;;;;;;;:::o;39743:177::-;39801:4;39832:12;;39822:7;:22;39814:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39898:16;39906:7;39898;:16::i;:::-;39891:23;;39743:177;;;:::o;45275:1242::-;45392:12;;45374:14;:30;;45366:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;45479:1;45460:15;;:20;45452:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;45574:12;;45555:14;45539:13;:11;:13::i;:::-;:30;;;;:::i;:::-;45538:48;;45530:106;;;;;;;;;;;;:::i;:::-;;;;;;;;;45687:9;45668:14;45652:13;;:30;;;;:::i;:::-;45651:45;;45643:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;45755:10;45735:30;;:4;;;;;;;;;;;:12;;;45748:2;45735:16;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:30;;;45727:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;45856:4;45837:14;45820;;:31;;;;:::i;:::-;45819:41;;45811:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;45893:6;45889:623;45909:14;45905:1;:18;45889:623;;;45945:14;46045:5;45994:15;46011:16;46029:10;45977:63;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;45967:74;;;;;;45962:80;;:88;;;;:::i;:::-;45945:105;;46089:3;46077:9;:15;;;;:::i;:::-;46065:27;;46127:12;;46111:13;:11;:13::i;:::-;:28;46107:394;;;46160:203;46166:18;46174:9;46166:7;:18::i;:::-;46160:203;;;46224:5;46212:9;:17;46209:87;;;46269:3;46257:15;;46209:87;46342:1;46330:9;:13;;;;:::i;:::-;46318:25;;46160:203;;;46381:32;46391:10;46403:9;46381;:32::i;:::-;46484:1;46467:14;;:18;;;;:::i;:::-;46450:14;:35;;;;46107:394;45930:582;45925:3;;;;;:::i;:::-;;;;45889:623;;;;45275:1242;;:::o;38678:34::-;;;;:::o;48083:147::-;36480:12;:10;:12::i;:::-;36469:23;;:7;:5;:7::i;:::-;:23;;;36461:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48138:12:::1;48153:21;48138:36;;48193:10;48185:28;;:37;48214:7;48185:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;48127:103;48083:147::o:0;47968:107::-;36480:12;:10;:12::i;:::-;36469:23;;:7;:5;:7::i;:::-;:23;;;36461:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48059:10:::1;48038:18;:31;;;;47968:107:::0;:::o;18959:151::-;19063:39;19080:4;19086:2;19090:7;19063:39;;;;;;;;;;;;:16;:39::i;:::-;18959:151;;;:::o;38804:26::-;;;;;;;;;;;;;:::o;29871:233::-;29946:7;29982:30;:28;:30::i;:::-;29974:5;:38;29966:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;30079:10;30090:5;30079:17;;;;;;;;:::i;:::-;;;;;;;;;;30072:24;;29871:233;;;:::o;41565:1236::-;41669:12;;41651:14;:30;;41643:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;41759:1;41737:18;;:23;41729:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;41854:12;;41835:14;41819:13;:11;:13::i;:::-;:30;;;;:::i;:::-;41818:48;;41810:106;;;;;;;;;;;;:::i;:::-;;;;;;;;;41967:9;41948:14;41932:13;;:30;;;;:::i;:::-;41931:45;;41923:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;42015:13;:25;42029:10;42015:25;;;;;;;;;;;;;;;;;;;;;;;;;42007:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42130:4;42111:14;42091:17;;:34;;;;:::i;:::-;42090:44;;42082:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;42171:6;42167:629;42187:14;42183:1;:18;42167:629;;;42223:14;42323:5;42272:15;42289:16;42307:10;42255:63;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;42245:74;;;;;;42240:80;;:88;;;;:::i;:::-;42223:105;;42367:3;42355:9;:15;;;;:::i;:::-;42343:27;;42405:12;;42389:13;:11;:13::i;:::-;:28;42385:400;;;42438:203;42444:18;42452:9;42444:7;:18::i;:::-;42438:203;;;42502:5;42490:9;:17;42487:87;;;42547:3;42535:15;;42487:87;42620:1;42608:9;:13;;;;:::i;:::-;42596:25;;42438:203;;;42659:32;42669:10;42681:9;42659;:32::i;:::-;42768:1;42748:17;;:21;;;;:::i;:::-;42728:17;:41;;;;42385:400;42208:588;42203:3;;;;;:::i;:::-;;;;42167:629;;;;41565:1236;:::o;40026:82::-;36480:12;:10;:12::i;:::-;36469:23;;:7;:5;:7::i;:::-;:23;;;36461:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40099:3:::1;40089:7;:13;;;;;;;;;;;;:::i;:::-;;40026:82:::0;:::o;48599:131::-;36480:12;:10;:12::i;:::-;36469:23;;:7;:5;:7::i;:::-;:23;;;36461:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48659:57:::1;48669:42;48713:2;48659:9;:57::i;:::-;48599:131:::0;:::o;15927:239::-;15999:7;16019:13;16035:7;:16;16043:7;16035:16;;;;;;;;;;;;;;;;;;;;;16019:32;;16087:1;16070:19;;:5;:19;;;;16062:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;16153:5;16146:12;;;15927:239;;;:::o;38934:29::-;;;;:::o;15657:208::-;15729:7;15774:1;15757:19;;:5;:19;;;;15749:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;15841:9;:16;15851:5;15841:16;;;;;;;;;;;;;;;;15834:23;;15657:208;;;:::o;36900:148::-;36480:12;:10;:12::i;:::-;36469:23;;:7;:5;:7::i;:::-;:23;;;36461:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37007:1:::1;36970:40;;36991:6;;;;;;;;;;;36970:40;;;;;;;;;;;;37038:1;37021:6;;:19;;;;;;;;;;;;;;;;;;36900:148::o:0;39005:26::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;46521:1231::-;46639:12;;46621:14;:30;;46613:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;46726:1;46707:15;;:20;46699:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;46821:12;;46802:14;46786:13;:11;:13::i;:::-;:30;;;;:::i;:::-;46785:48;;46777:106;;;;;;;;;;;;:::i;:::-;;;;;;;;;46934:9;46915:14;46899:13;;:30;;;;:::i;:::-;46898:45;;46890:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;47003:10;46982:31;;:5;;;;;;;;;;;:13;;;46996:2;46982:17;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:31;;;46974:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;47109:4;47090:14;47073;;:31;;;;:::i;:::-;47072:41;;47064:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;47146:6;47142:605;47162:14;47158:1;:18;47142:605;;;47198:14;47298:5;47247:15;47264:16;47282:10;47230:63;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;47220:74;;;;;;47215:80;;:88;;;;:::i;:::-;47198:105;;47342:3;47330:9;:15;;;;:::i;:::-;47318:27;;47380:12;;47364:13;:11;:13::i;:::-;:28;47360:376;;;47413:203;47419:18;47427:9;47419:7;:18::i;:::-;47413:203;;;47477:5;47465:9;:17;47462:87;;;47522:3;47510:15;;47462:87;47595:1;47583:9;:13;;;;:::i;:::-;47571:25;;47413:203;;;47634:32;47644:10;47656:9;47634;:32::i;:::-;47719:1;47702:14;;:18;;;;:::i;:::-;47685:14;:35;;;;47360:376;47183:564;47178:3;;;;;:::i;:::-;;;;47142:605;;;;46521:1231;;:::o;40555:1002::-;40649:12;;40631:14;:30;;40623:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;40733:1;40717:12;;:17;40709:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40828:12;;40809:14;40793:13;:11;:13::i;:::-;:30;;;;:::i;:::-;40792:48;;40784:106;;;;;;;;;;;;:::i;:::-;;;;;;;;;40941:9;40922:14;40906:13;;:30;;;;:::i;:::-;40905:45;;40897:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;40987:6;40983:569;41003:14;40999:1;:18;40983:569;;;41039:14;41139:5;41088:15;41105:16;41123:10;41071:63;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;41061:74;;;;;;41056:80;;:88;;;;:::i;:::-;41039:105;;41183:3;41171:9;:15;;;;:::i;:::-;41159:27;;41221:12;;41205:13;:11;:13::i;:::-;:28;41201:340;;;41254:203;41260:18;41268:9;41260:7;:18::i;:::-;41254:203;;;41318:5;41306:9;:17;41303:87;;;41363:3;41351:15;;41303:87;41436:1;41424:9;:13;;;;:::i;:::-;41412:25;;41254:203;;;41475:32;41485:10;41497:9;41475;:32::i;:::-;41201:340;41024:528;41019:3;;;;;:::i;:::-;;;;40983:569;;;;40555:1002;:::o;36249:87::-;36295:7;36322:6;;;;;;;;;;;36315:13;;36249:87;:::o;38901:28::-;;;;:::o;48236:190::-;36480:12;:10;:12::i;:::-;36469:23;;:7;:5;:7::i;:::-;:23;;;36461:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48321:17:::1;48308:9;:30;;48300:82;;;;;;;;;;;;:::i;:::-;;;;;;;;;48409:9;48393:13;:25;;;;48236:190:::0;:::o;42807:1217::-;42908:12;;42890:14;:30;;42882:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;42995:1;42976:15;;:20;42968:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;43090:12;;43071:14;43055:13;:11;:13::i;:::-;:30;;;;:::i;:::-;43054:48;;43046:106;;;;;;;;;;;;:::i;:::-;;;;;;;;;43203:9;43184:14;43168:13;;:30;;;;:::i;:::-;43167:45;;43159:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;43251:13;:25;43265:10;43251:25;;;;;;;;;;;;;;;;;;;;;;;;;43243:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43363:4;43344:14;43327;;:31;;;;:::i;:::-;43326:41;;43318:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;43400:6;43396:623;43416:14;43412:1;:18;43396:623;;;43452:14;43552:5;43501:15;43518:16;43536:10;43484:63;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;43474:74;;;;;;43469:80;;:88;;;;:::i;:::-;43452:105;;43596:3;43584:9;:15;;;;:::i;:::-;43572:27;;43634:12;;43618:13;:11;:13::i;:::-;:28;43614:394;;;43667:203;43673:18;43681:9;43673:7;:18::i;:::-;43667:203;;;43731:5;43719:9;:17;43716:87;;;43776:3;43764:15;;43716:87;43849:1;43837:9;:13;;;;:::i;:::-;43825:25;;43667:203;;;43888:32;43898:10;43910:9;43888;:32::i;:::-;43991:1;43974:14;;:18;;;;:::i;:::-;43957:14;:35;;;;43614:394;43437:582;43432:3;;;;;:::i;:::-;;;;43396:623;;;;42807:1217;:::o;38604:27::-;;;;:::o;16402:104::-;16458:13;16491:7;16484:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16402:104;:::o;47760:95::-;36480:12;:10;:12::i;:::-;36469:23;;:7;:5;:7::i;:::-;:23;;;36461:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47839:10:::1;47824:12;:25;;;;47760:95:::0;:::o;17986:295::-;18101:12;:10;:12::i;:::-;18089:24;;:8;:24;;;;18081:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;18201:8;18156:18;:32;18175:12;:10;:12::i;:::-;18156:32;;;;;;;;;;;;;;;:42;18189:8;18156:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;18254:8;18225:48;;18240:12;:10;:12::i;:::-;18225:48;;;18264:8;18225:48;;;;;;:::i;:::-;;;;;;;;17986:295;;:::o;38870:26::-;;;;:::o;19181:285::-;19313:41;19332:12;:10;:12::i;:::-;19346:7;19313:18;:41::i;:::-;19305:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;19419:39;19433:4;19439:2;19443:7;19452:5;19419:13;:39::i;:::-;19181:285;;;;:::o;16577:360::-;16650:13;16684:16;16692:7;16684;:16::i;:::-;16676:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;16765:21;16789:10;:8;:10::i;:::-;16765:34;;16841:1;16823:7;16817:21;:25;:112;;;;;;;;;;;;;;;;;16882:7;16891:18;:7;:16;:18::i;:::-;16865:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;16817:112;16810:119;;;16577:360;;;:::o;38636:37::-;;;;:::o;18352:164::-;18449:4;18473:18;:25;18492:5;18473:25;;;;;;;;;;;;;;;:35;18499:8;18473:35;;;;;;;;;;;;;;;;;;;;;;;;;18466:42;;18352:164;;;;:::o;38499:27::-;;;;:::o;40114:435::-;36480:12;:10;:12::i;:::-;36469:23;;:7;:5;:7::i;:::-;:23;;;36461:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40218:11:::1;;40200:14;:29;;40192:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;40324:11;;40305:14;40287:15;;:32;;;;:::i;:::-;40286:49;;40278:107;;;;;;;;;;;;:::i;:::-;;;;;;;;;40398:6;40394:150;40414:14;40410:1;:18;40394:150;;;40444:38;40454:10;40466:15;;40444:9;:38::i;:::-;40535:1;40517:15;;:19;;;;:::i;:::-;40499:15;:37;;;;40430:3;;;;;:::i;:::-;;;;40394:150;;;;40114:435:::0;:::o;37203:244::-;36480:12;:10;:12::i;:::-;36469:23;;:7;:5;:7::i;:::-;:23;;;36461:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37312:1:::1;37292:22;;:8;:22;;;;37284:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;37402:8;37373:38;;37394:6;;;;;;;;;;;37373:38;;;;;;;;;;;;37431:8;37422:6;;:17;;;;;;;;;;;;;;;;;;37203:244:::0;:::o;38774:25::-;;;;;;;;;;;;;:::o;38968:32::-;;;;:::o;48432:161::-;36480:12;:10;:12::i;:::-;36469:23;;:7;:5;:7::i;:::-;:23;;;36461:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48506:9:::1;48521:16;48506:32;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48581:4;48547:13;:31;48561:16;48547:31;;;;;;;;;;;;;;;;:38;;;;;;;;;;;;;;;;;;48432:161:::0;:::o;15301:292::-;15403:4;15442:25;15427:40;;;:11;:40;;;;:105;;;;15499:33;15484:48;;;:11;:48;;;;15427:105;:158;;;;15549:36;15573:11;15549:23;:36::i;:::-;15427:158;15420:165;;15301:292;;;:::o;10589:98::-;10642:7;10669:10;10662:17;;10589:98;:::o;20933:127::-;20998:4;21050:1;21022:30;;:7;:16;21030:7;21022:16;;;;;;;;;;;;;;;;;;;;;:30;;;;21015:37;;20933:127;;;:::o;24810:174::-;24912:2;24885:15;:24;24901:7;24885:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;24968:7;24964:2;24930:46;;24939:23;24954:7;24939:14;:23::i;:::-;24930:46;;;;;;;;;;;;24810:174;;:::o;21227:348::-;21320:4;21345:16;21353:7;21345;:16::i;:::-;21337:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;21421:13;21437:23;21452:7;21437:14;:23::i;:::-;21421:39;;21490:5;21479:16;;:7;:16;;;:51;;;;21523:7;21499:31;;:20;21511:7;21499:11;:20::i;:::-;:31;;;21479:51;:87;;;;21534:32;21551:5;21558:7;21534:16;:32::i;:::-;21479:87;21471:96;;;21227:348;;;;:::o;24148:544::-;24273:4;24246:31;;:23;24261:7;24246:14;:23::i;:::-;:31;;;24238:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;24356:1;24342:16;;:2;:16;;;;24334:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;24412:39;24433:4;24439:2;24443:7;24412:20;:39::i;:::-;24516:29;24533:1;24537:7;24516:8;:29::i;:::-;24577:1;24558:9;:15;24568:4;24558:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;24606:1;24589:9;:13;24599:2;24589:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;24637:2;24618:7;:16;24626:7;24618:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;24676:7;24672:2;24657:27;;24666:4;24657:27;;;;;;;;;;;;24148:544;;;:::o;21917:110::-;21993:26;22003:2;22007:7;21993:26;;;;;;;;;;;;:9;:26::i;:::-;21917:110;;:::o;20348:272::-;20462:28;20472:4;20478:2;20482:7;20462:9;:28::i;:::-;20509:48;20532:4;20538:2;20542:7;20551:5;20509:22;:48::i;:::-;20501:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;20348:272;;;;:::o;39926:94::-;39978:13;40007:7;40000:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39926:94;:::o;11244:723::-;11300:13;11530:1;11521:5;:10;11517:53;;;11548:10;;;;;;;;;;;;;;;;;;;;;11517:53;11580:12;11595:5;11580:20;;11611:14;11636:78;11651:1;11643:4;:9;11636:78;;11669:8;;;;;:::i;:::-;;;;11700:2;11692:10;;;;;:::i;:::-;;;11636:78;;;11724:19;11756:6;11746:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11724:39;;11774:154;11790:1;11781:5;:10;11774:154;;11818:1;11808:11;;;;;:::i;:::-;;;11885:2;11877:5;:10;;;;:::i;:::-;11864:2;:24;;;;:::i;:::-;11851:39;;11834:6;11841;11834:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;11914:2;11905:11;;;;;:::i;:::-;;;11774:154;;;11952:6;11938:21;;;;;11244:723;;;;:::o;13799:157::-;13884:4;13923:25;13908:40;;;:11;:40;;;;13901:47;;13799:157;;;:::o;30717:555::-;30827:45;30854:4;30860:2;30864:7;30827:26;:45::i;:::-;30905:1;30889:18;;:4;:18;;;30885:187;;;30924:40;30956:7;30924:31;:40::i;:::-;30885:187;;;30994:2;30986:10;;:4;:10;;;30982:90;;31013:47;31046:4;31052:7;31013:32;:47::i;:::-;30982:90;30885:187;31100:1;31086:16;;:2;:16;;;31082:183;;;31119:45;31156:7;31119:36;:45::i;:::-;31082:183;;;31192:4;31186:10;;:2;:10;;;31182:83;;31213:40;31241:2;31245:7;31213:27;:40::i;:::-;31182:83;31082:183;30717:555;;;:::o;22254:250::-;22350:18;22356:2;22360:7;22350:5;:18::i;:::-;22387:54;22418:1;22422:2;22426:7;22435:5;22387:22;:54::i;:::-;22379:117;;;;;;;;;;;;:::i;:::-;;;;;;;;;22254:250;;;:::o;25549:843::-;25670:4;25696:15;:2;:13;;;:15::i;:::-;25692:693;;;25748:2;25732:36;;;25769:12;:10;:12::i;:::-;25783:4;25789:7;25798:5;25732:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;25728:602;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25995:1;25978:6;:13;:18;25974:341;;;26021:60;;;;;;;;;;:::i;:::-;;;;;;;;25974:341;26265:6;26259:13;26250:6;26246:2;26242:15;26235:38;25728:602;25865:45;;;25855:55;;;:6;:55;;;;25848:62;;;;;25692:693;26369:4;26362:11;;25549:843;;;;;;;:::o;27005:93::-;;;;:::o;31995:164::-;32099:10;:17;;;;32072:15;:24;32088:7;32072:24;;;;;;;;;;;:44;;;;32127:10;32143:7;32127:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31995:164;:::o;32786:988::-;33052:22;33102:1;33077:22;33094:4;33077:16;:22::i;:::-;:26;;;;:::i;:::-;33052:51;;33114:18;33135:17;:26;33153:7;33135:26;;;;;;;;;;;;33114:47;;33282:14;33268:10;:28;33264:328;;33313:19;33335:12;:18;33348:4;33335:18;;;;;;;;;;;;;;;:34;33354:14;33335:34;;;;;;;;;;;;33313:56;;33419:11;33386:12;:18;33399:4;33386:18;;;;;;;;;;;;;;;:30;33405:10;33386:30;;;;;;;;;;;:44;;;;33536:10;33503:17;:30;33521:11;33503:30;;;;;;;;;;;:43;;;;33298:294;33264:328;33688:17;:26;33706:7;33688:26;;;;;;;;;;;33681:33;;;33732:12;:18;33745:4;33732:18;;;;;;;;;;;;;;;:34;33751:14;33732:34;;;;;;;;;;;33725:41;;;32867:907;;32786:988;;:::o;34069:1079::-;34322:22;34367:1;34347:10;:17;;;;:21;;;;:::i;:::-;34322:46;;34379:18;34400:15;:24;34416:7;34400:24;;;;;;;;;;;;34379:45;;34751:19;34773:10;34784:14;34773:26;;;;;;;;:::i;:::-;;;;;;;;;;34751:48;;34837:11;34812:10;34823;34812:22;;;;;;;;:::i;:::-;;;;;;;;;:36;;;;34948:10;34917:15;:28;34933:11;34917:28;;;;;;;;;;;:41;;;;35089:15;:24;35105:7;35089:24;;;;;;;;;;;35082:31;;;35124:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;34140:1008;;;34069:1079;:::o;31573:221::-;31658:14;31675:20;31692:2;31675:16;:20::i;:::-;31658:37;;31733:7;31706:12;:16;31719:2;31706:16;;;;;;;;;;;;;;;:24;31723:6;31706:24;;;;;;;;;;;:34;;;;31780:6;31751:17;:26;31769:7;31751:26;;;;;;;;;;;:35;;;;31647:147;31573:221;;:::o;22840:382::-;22934:1;22920:16;;:2;:16;;;;22912:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;22993:16;23001:7;22993;:16::i;:::-;22992:17;22984:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;23055:45;23084:1;23088:2;23092:7;23055:20;:45::i;:::-;23130:1;23113:9;:13;23123:2;23113:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;23161:2;23142:7;:16;23150:7;23142:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;23206:7;23202:2;23181:33;;23198:1;23181:33;;;;;;;;;;;;22840:382;;:::o;2706:422::-;2766:4;2974:12;3085:7;3073:20;3065:28;;3119:1;3112:4;:8;3105:15;;;2706:422;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:77::-;1555:7;1584:5;1573:16;;1518:77;;;:::o;1601:118::-;1688:24;1706:5;1688:24;:::i;:::-;1683:3;1676:37;1601:118;;:::o;1725:222::-;1818:4;1856:2;1845:9;1841:18;1833:26;;1869:71;1937:1;1926:9;1922:17;1913:6;1869:71;:::i;:::-;1725:222;;;;:::o;1953:122::-;2026:24;2044:5;2026:24;:::i;:::-;2019:5;2016:35;2006:63;;2065:1;2062;2055:12;2006:63;1953:122;:::o;2081:139::-;2127:5;2165:6;2152:20;2143:29;;2181:33;2208:5;2181:33;:::i;:::-;2081:139;;;;:::o;2226:329::-;2285:6;2334:2;2322:9;2313:7;2309:23;2305:32;2302:119;;;2340:79;;:::i;:::-;2302:119;2460:1;2485:53;2530:7;2521:6;2510:9;2506:22;2485:53;:::i;:::-;2475:63;;2431:117;2226:329;;;;:::o;2561:99::-;2613:6;2647:5;2641:12;2631:22;;2561:99;;;:::o;2666:169::-;2750:11;2784:6;2779:3;2772:19;2824:4;2819:3;2815:14;2800:29;;2666:169;;;;:::o;2841:307::-;2909:1;2919:113;2933:6;2930:1;2927:13;2919:113;;;3018:1;3013:3;3009:11;3003:18;2999:1;2994:3;2990:11;2983:39;2955:2;2952:1;2948:10;2943:15;;2919:113;;;3050:6;3047:1;3044:13;3041:101;;;3130:1;3121:6;3116:3;3112:16;3105:27;3041:101;2890:258;2841:307;;;:::o;3154:102::-;3195:6;3246:2;3242:7;3237:2;3230:5;3226:14;3222:28;3212:38;;3154:102;;;:::o;3262:364::-;3350:3;3378:39;3411:5;3378:39;:::i;:::-;3433:71;3497:6;3492:3;3433:71;:::i;:::-;3426:78;;3513:52;3558:6;3553:3;3546:4;3539:5;3535:16;3513:52;:::i;:::-;3590:29;3612:6;3590:29;:::i;:::-;3585:3;3581:39;3574:46;;3354:272;3262:364;;;;:::o;3632:313::-;3745:4;3783:2;3772:9;3768:18;3760:26;;3832:9;3826:4;3822:20;3818:1;3807:9;3803:17;3796:47;3860:78;3933:4;3924:6;3860:78;:::i;:::-;3852:86;;3632:313;;;;:::o;3951:126::-;3988:7;4028:42;4021:5;4017:54;4006:65;;3951:126;;;:::o;4083:96::-;4120:7;4149:24;4167:5;4149:24;:::i;:::-;4138:35;;4083:96;;;:::o;4185:118::-;4272:24;4290:5;4272:24;:::i;:::-;4267:3;4260:37;4185:118;;:::o;4309:222::-;4402:4;4440:2;4429:9;4425:18;4417:26;;4453:71;4521:1;4510:9;4506:17;4497:6;4453:71;:::i;:::-;4309:222;;;;:::o;4537:122::-;4610:24;4628:5;4610:24;:::i;:::-;4603:5;4600:35;4590:63;;4649:1;4646;4639:12;4590:63;4537:122;:::o;4665:139::-;4711:5;4749:6;4736:20;4727:29;;4765:33;4792:5;4765:33;:::i;:::-;4665:139;;;;:::o;4810:474::-;4878:6;4886;4935:2;4923:9;4914:7;4910:23;4906:32;4903:119;;;4941:79;;:::i;:::-;4903:119;5061:1;5086:53;5131:7;5122:6;5111:9;5107:22;5086:53;:::i;:::-;5076:63;;5032:117;5188:2;5214:53;5259:7;5250:6;5239:9;5235:22;5214:53;:::i;:::-;5204:63;;5159:118;4810:474;;;;;:::o;5290:619::-;5367:6;5375;5383;5432:2;5420:9;5411:7;5407:23;5403:32;5400:119;;;5438:79;;:::i;:::-;5400:119;5558:1;5583:53;5628:7;5619:6;5608:9;5604:22;5583:53;:::i;:::-;5573:63;;5529:117;5685:2;5711:53;5756:7;5747:6;5736:9;5732:22;5711:53;:::i;:::-;5701:63;;5656:118;5813:2;5839:53;5884:7;5875:6;5864:9;5860:22;5839:53;:::i;:::-;5829:63;;5784:118;5290:619;;;;;:::o;5915:474::-;5983:6;5991;6040:2;6028:9;6019:7;6015:23;6011:32;6008:119;;;6046:79;;:::i;:::-;6008:119;6166:1;6191:53;6236:7;6227:6;6216:9;6212:22;6191:53;:::i;:::-;6181:63;;6137:117;6293:2;6319:53;6364:7;6355:6;6344:9;6340:22;6319:53;:::i;:::-;6309:63;;6264:118;5915:474;;;;;:::o;6395:117::-;6504:1;6501;6494:12;6518:117;6627:1;6624;6617:12;6641:180;6689:77;6686:1;6679:88;6786:4;6783:1;6776:15;6810:4;6807:1;6800:15;6827:281;6910:27;6932:4;6910:27;:::i;:::-;6902:6;6898:40;7040:6;7028:10;7025:22;7004:18;6992:10;6989:34;6986:62;6983:88;;;7051:18;;:::i;:::-;6983:88;7091:10;7087:2;7080:22;6870:238;6827:281;;:::o;7114:129::-;7148:6;7175:20;;:::i;:::-;7165:30;;7204:33;7232:4;7224:6;7204:33;:::i;:::-;7114:129;;;:::o;7249:308::-;7311:4;7401:18;7393:6;7390:30;7387:56;;;7423:18;;:::i;:::-;7387:56;7461:29;7483:6;7461:29;:::i;:::-;7453:37;;7545:4;7539;7535:15;7527:23;;7249:308;;;:::o;7563:154::-;7647:6;7642:3;7637;7624:30;7709:1;7700:6;7695:3;7691:16;7684:27;7563:154;;;:::o;7723:412::-;7801:5;7826:66;7842:49;7884:6;7842:49;:::i;:::-;7826:66;:::i;:::-;7817:75;;7915:6;7908:5;7901:21;7953:4;7946:5;7942:16;7991:3;7982:6;7977:3;7973:16;7970:25;7967:112;;;7998:79;;:::i;:::-;7967:112;8088:41;8122:6;8117:3;8112;8088:41;:::i;:::-;7807:328;7723:412;;;;;:::o;8155:340::-;8211:5;8260:3;8253:4;8245:6;8241:17;8237:27;8227:122;;8268:79;;:::i;:::-;8227:122;8385:6;8372:20;8410:79;8485:3;8477:6;8470:4;8462:6;8458:17;8410:79;:::i;:::-;8401:88;;8217:278;8155:340;;;;:::o;8501:509::-;8570:6;8619:2;8607:9;8598:7;8594:23;8590:32;8587:119;;;8625:79;;:::i;:::-;8587:119;8773:1;8762:9;8758:17;8745:31;8803:18;8795:6;8792:30;8789:117;;;8825:79;;:::i;:::-;8789:117;8930:63;8985:7;8976:6;8965:9;8961:22;8930:63;:::i;:::-;8920:73;;8716:287;8501:509;;;;:::o;9016:329::-;9075:6;9124:2;9112:9;9103:7;9099:23;9095:32;9092:119;;;9130:79;;:::i;:::-;9092:119;9250:1;9275:53;9320:7;9311:6;9300:9;9296:22;9275:53;:::i;:::-;9265:63;;9221:117;9016:329;;;;:::o;9351:116::-;9421:21;9436:5;9421:21;:::i;:::-;9414:5;9411:32;9401:60;;9457:1;9454;9447:12;9401:60;9351:116;:::o;9473:133::-;9516:5;9554:6;9541:20;9532:29;;9570:30;9594:5;9570:30;:::i;:::-;9473:133;;;;:::o;9612:468::-;9677:6;9685;9734:2;9722:9;9713:7;9709:23;9705:32;9702:119;;;9740:79;;:::i;:::-;9702:119;9860:1;9885:53;9930:7;9921:6;9910:9;9906:22;9885:53;:::i;:::-;9875:63;;9831:117;9987:2;10013:50;10055:7;10046:6;10035:9;10031:22;10013:50;:::i;:::-;10003:60;;9958:115;9612:468;;;;;:::o;10086:307::-;10147:4;10237:18;10229:6;10226:30;10223:56;;;10259:18;;:::i;:::-;10223:56;10297:29;10319:6;10297:29;:::i;:::-;10289:37;;10381:4;10375;10371:15;10363:23;;10086:307;;;:::o;10399:410::-;10476:5;10501:65;10517:48;10558:6;10517:48;:::i;:::-;10501:65;:::i;:::-;10492:74;;10589:6;10582:5;10575:21;10627:4;10620:5;10616:16;10665:3;10656:6;10651:3;10647:16;10644:25;10641:112;;;10672:79;;:::i;:::-;10641:112;10762:41;10796:6;10791:3;10786;10762:41;:::i;:::-;10482:327;10399:410;;;;;:::o;10828:338::-;10883:5;10932:3;10925:4;10917:6;10913:17;10909:27;10899:122;;10940:79;;:::i;:::-;10899:122;11057:6;11044:20;11082:78;11156:3;11148:6;11141:4;11133:6;11129:17;11082:78;:::i;:::-;11073:87;;10889:277;10828:338;;;;:::o;11172:943::-;11267:6;11275;11283;11291;11340:3;11328:9;11319:7;11315:23;11311:33;11308:120;;;11347:79;;:::i;:::-;11308:120;11467:1;11492:53;11537:7;11528:6;11517:9;11513:22;11492:53;:::i;:::-;11482:63;;11438:117;11594:2;11620:53;11665:7;11656:6;11645:9;11641:22;11620:53;:::i;:::-;11610:63;;11565:118;11722:2;11748:53;11793:7;11784:6;11773:9;11769:22;11748:53;:::i;:::-;11738:63;;11693:118;11878:2;11867:9;11863:18;11850:32;11909:18;11901:6;11898:30;11895:117;;;11931:79;;:::i;:::-;11895:117;12036:62;12090:7;12081:6;12070:9;12066:22;12036:62;:::i;:::-;12026:72;;11821:287;11172:943;;;;;;;:::o;12121:474::-;12189:6;12197;12246:2;12234:9;12225:7;12221:23;12217:32;12214:119;;;12252:79;;:::i;:::-;12214:119;12372:1;12397:53;12442:7;12433:6;12422:9;12418:22;12397:53;:::i;:::-;12387:63;;12343:117;12499:2;12525:53;12570:7;12561:6;12550:9;12546:22;12525:53;:::i;:::-;12515:63;;12470:118;12121:474;;;;;:::o;12601:182::-;12741:34;12737:1;12729:6;12725:14;12718:58;12601:182;:::o;12789:366::-;12931:3;12952:67;13016:2;13011:3;12952:67;:::i;:::-;12945:74;;13028:93;13117:3;13028:93;:::i;:::-;13146:2;13141:3;13137:12;13130:19;;12789:366;;;:::o;13161:419::-;13327:4;13365:2;13354:9;13350:18;13342:26;;13414:9;13408:4;13404:20;13400:1;13389:9;13385:17;13378:47;13442:131;13568:4;13442:131;:::i;:::-;13434:139;;13161:419;;;:::o;13586:180::-;13634:77;13631:1;13624:88;13731:4;13728:1;13721:15;13755:4;13752:1;13745:15;13772:320;13816:6;13853:1;13847:4;13843:12;13833:22;;13900:1;13894:4;13890:12;13921:18;13911:81;;13977:4;13969:6;13965:17;13955:27;;13911:81;14039:2;14031:6;14028:14;14008:18;14005:38;14002:84;;;14058:18;;:::i;:::-;14002:84;13823:269;13772:320;;;:::o;14098:231::-;14238:34;14234:1;14226:6;14222:14;14215:58;14307:14;14302:2;14294:6;14290:15;14283:39;14098:231;:::o;14335:366::-;14477:3;14498:67;14562:2;14557:3;14498:67;:::i;:::-;14491:74;;14574:93;14663:3;14574:93;:::i;:::-;14692:2;14687:3;14683:12;14676:19;;14335:366;;;:::o;14707:419::-;14873:4;14911:2;14900:9;14896:18;14888:26;;14960:9;14954:4;14950:20;14946:1;14935:9;14931:17;14924:47;14988:131;15114:4;14988:131;:::i;:::-;14980:139;;14707:419;;;:::o;15132:220::-;15272:34;15268:1;15260:6;15256:14;15249:58;15341:3;15336:2;15328:6;15324:15;15317:28;15132:220;:::o;15358:366::-;15500:3;15521:67;15585:2;15580:3;15521:67;:::i;:::-;15514:74;;15597:93;15686:3;15597:93;:::i;:::-;15715:2;15710:3;15706:12;15699:19;;15358:366;;;:::o;15730:419::-;15896:4;15934:2;15923:9;15919:18;15911:26;;15983:9;15977:4;15973:20;15969:1;15958:9;15954:17;15947:47;16011:131;16137:4;16011:131;:::i;:::-;16003:139;;15730:419;;;:::o;16155:243::-;16295:34;16291:1;16283:6;16279:14;16272:58;16364:26;16359:2;16351:6;16347:15;16340:51;16155:243;:::o;16404:366::-;16546:3;16567:67;16631:2;16626:3;16567:67;:::i;:::-;16560:74;;16643:93;16732:3;16643:93;:::i;:::-;16761:2;16756:3;16752:12;16745:19;;16404:366;;;:::o;16776:419::-;16942:4;16980:2;16969:9;16965:18;16957:26;;17029:9;17023:4;17019:20;17015:1;17004:9;17000:17;16993:47;17057:131;17183:4;17057:131;:::i;:::-;17049:139;;16776:419;;;:::o;17201:236::-;17341:34;17337:1;17329:6;17325:14;17318:58;17410:19;17405:2;17397:6;17393:15;17386:44;17201:236;:::o;17443:366::-;17585:3;17606:67;17670:2;17665:3;17606:67;:::i;:::-;17599:74;;17682:93;17771:3;17682:93;:::i;:::-;17800:2;17795:3;17791:12;17784:19;;17443:366;;;:::o;17815:419::-;17981:4;18019:2;18008:9;18004:18;17996:26;;18068:9;18062:4;18058:20;18054:1;18043:9;18039:17;18032:47;18096:131;18222:4;18096:131;:::i;:::-;18088:139;;17815:419;;;:::o;18240:223::-;18380:34;18376:1;18368:6;18364:14;18357:58;18449:6;18444:2;18436:6;18432:15;18425:31;18240:223;:::o;18469:366::-;18611:3;18632:67;18696:2;18691:3;18632:67;:::i;:::-;18625:74;;18708:93;18797:3;18708:93;:::i;:::-;18826:2;18821:3;18817:12;18810:19;;18469:366;;;:::o;18841:419::-;19007:4;19045:2;19034:9;19030:18;19022:26;;19094:9;19088:4;19084:20;19080:1;19069:9;19065:17;19058:47;19122:131;19248:4;19122:131;:::i;:::-;19114:139;;18841:419;;;:::o;19266:225::-;19406:34;19402:1;19394:6;19390:14;19383:58;19475:8;19470:2;19462:6;19458:15;19451:33;19266:225;:::o;19497:366::-;19639:3;19660:67;19724:2;19719:3;19660:67;:::i;:::-;19653:74;;19736:93;19825:3;19736:93;:::i;:::-;19854:2;19849:3;19845:12;19838:19;;19497:366;;;:::o;19869:419::-;20035:4;20073:2;20062:9;20058:18;20050:26;;20122:9;20116:4;20112:20;20108:1;20097:9;20093:17;20086:47;20150:131;20276:4;20150:131;:::i;:::-;20142:139;;19869:419;;;:::o;20294:180::-;20342:77;20339:1;20332:88;20439:4;20436:1;20429:15;20463:4;20460:1;20453:15;20480:305;20520:3;20539:20;20557:1;20539:20;:::i;:::-;20534:25;;20573:20;20591:1;20573:20;:::i;:::-;20568:25;;20727:1;20659:66;20655:74;20652:1;20649:81;20646:107;;;20733:18;;:::i;:::-;20646:107;20777:1;20774;20770:9;20763:16;;20480:305;;;;:::o;20791:232::-;20931:34;20927:1;20919:6;20915:14;20908:58;21000:15;20995:2;20987:6;20983:15;20976:40;20791:232;:::o;21029:366::-;21171:3;21192:67;21256:2;21251:3;21192:67;:::i;:::-;21185:74;;21268:93;21357:3;21268:93;:::i;:::-;21386:2;21381:3;21377:12;21370:19;;21029:366;;;:::o;21401:419::-;21567:4;21605:2;21594:9;21590:18;21582:26;;21654:9;21648:4;21644:20;21640:1;21629:9;21625:17;21618:47;21682:131;21808:4;21682:131;:::i;:::-;21674:139;;21401:419;;;:::o;21826:348::-;21866:7;21889:20;21907:1;21889:20;:::i;:::-;21884:25;;21923:20;21941:1;21923:20;:::i;:::-;21918:25;;22111:1;22043:66;22039:74;22036:1;22033:81;22028:1;22021:9;22014:17;22010:105;22007:131;;;22118:18;;:::i;:::-;22007:131;22166:1;22163;22159:9;22148:20;;21826:348;;;;:::o;22180:169::-;22320:21;22316:1;22308:6;22304:14;22297:45;22180:169;:::o;22355:366::-;22497:3;22518:67;22582:2;22577:3;22518:67;:::i;:::-;22511:74;;22594:93;22683:3;22594:93;:::i;:::-;22712:2;22707:3;22703:12;22696:19;;22355:366;;;:::o;22727:419::-;22893:4;22931:2;22920:9;22916:18;22908:26;;22980:9;22974:4;22970:20;22966:1;22955:9;22951:17;22944:47;23008:131;23134:4;23008:131;:::i;:::-;23000:139;;22727:419;;;:::o;23152:143::-;23209:5;23240:6;23234:13;23225:22;;23256:33;23283:5;23256:33;:::i;:::-;23152:143;;;;:::o;23301:351::-;23371:6;23420:2;23408:9;23399:7;23395:23;23391:32;23388:119;;;23426:79;;:::i;:::-;23388:119;23546:1;23571:64;23627:7;23618:6;23607:9;23603:22;23571:64;:::i;:::-;23561:74;;23517:128;23301:351;;;;:::o;23658:220::-;23798:34;23794:1;23786:6;23782:14;23775:58;23867:3;23862:2;23854:6;23850:15;23843:28;23658:220;:::o;23884:366::-;24026:3;24047:67;24111:2;24106:3;24047:67;:::i;:::-;24040:74;;24123:93;24212:3;24123:93;:::i;:::-;24241:2;24236:3;24232:12;24225:19;;23884:366;;;:::o;24256:419::-;24422:4;24460:2;24449:9;24445:18;24437:26;;24509:9;24503:4;24499:20;24495:1;24484:9;24480:17;24473:47;24537:131;24663:4;24537:131;:::i;:::-;24529:139;;24256:419;;;:::o;24681:165::-;24821:17;24817:1;24809:6;24805:14;24798:41;24681:165;:::o;24852:366::-;24994:3;25015:67;25079:2;25074:3;25015:67;:::i;:::-;25008:74;;25091:93;25180:3;25091:93;:::i;:::-;25209:2;25204:3;25200:12;25193:19;;24852:366;;;:::o;25224:419::-;25390:4;25428:2;25417:9;25413:18;25405:26;;25477:9;25471:4;25467:20;25463:1;25452:9;25448:17;25441:47;25505:131;25631:4;25505:131;:::i;:::-;25497:139;;25224:419;;;:::o;25649:79::-;25688:7;25717:5;25706:16;;25649:79;;;:::o;25734:157::-;25839:45;25859:24;25877:5;25859:24;:::i;:::-;25839:45;:::i;:::-;25834:3;25827:58;25734:157;;:::o;25897:94::-;25930:8;25978:5;25974:2;25970:14;25949:35;;25897:94;;;:::o;25997:::-;26036:7;26065:20;26079:5;26065:20;:::i;:::-;26054:31;;25997:94;;;:::o;26097:100::-;26136:7;26165:26;26185:5;26165:26;:::i;:::-;26154:37;;26097:100;;;:::o;26203:157::-;26308:45;26328:24;26346:5;26328:24;:::i;:::-;26308:45;:::i;:::-;26303:3;26296:58;26203:157;;:::o;26366:538::-;26534:3;26549:75;26620:3;26611:6;26549:75;:::i;:::-;26649:2;26644:3;26640:12;26633:19;;26662:75;26733:3;26724:6;26662:75;:::i;:::-;26762:2;26757:3;26753:12;26746:19;;26775:75;26846:3;26837:6;26775:75;:::i;:::-;26875:2;26870:3;26866:12;26859:19;;26895:3;26888:10;;26366:538;;;;;;:::o;26910:180::-;26958:77;26955:1;26948:88;27055:4;27052:1;27045:15;27079:4;27076:1;27069:15;27096:176;27128:1;27145:20;27163:1;27145:20;:::i;:::-;27140:25;;27179:20;27197:1;27179:20;:::i;:::-;27174:25;;27218:1;27208:35;;27223:18;;:::i;:::-;27208:35;27264:1;27261;27257:9;27252:14;;27096:176;;;;:::o;27278:233::-;27317:3;27340:24;27358:5;27340:24;:::i;:::-;27331:33;;27386:66;27379:5;27376:77;27373:103;;;27456:18;;:::i;:::-;27373:103;27503:1;27496:5;27492:13;27485:20;;27278:233;;;:::o;27517:230::-;27657:34;27653:1;27645:6;27641:14;27634:58;27726:13;27721:2;27713:6;27709:15;27702:38;27517:230;:::o;27753:366::-;27895:3;27916:67;27980:2;27975:3;27916:67;:::i;:::-;27909:74;;27992:93;28081:3;27992:93;:::i;:::-;28110:2;28105:3;28101:12;28094:19;;27753:366;;;:::o;28125:419::-;28291:4;28329:2;28318:9;28314:18;28306:26;;28378:9;28372:4;28368:20;28364:1;28353:9;28349:17;28342:47;28406:131;28532:4;28406:131;:::i;:::-;28398:139;;28125:419;;;:::o;28550:220::-;28690:34;28686:1;28678:6;28674:14;28667:58;28759:3;28754:2;28746:6;28742:15;28735:28;28550:220;:::o;28776:366::-;28918:3;28939:67;29003:2;28998:3;28939:67;:::i;:::-;28932:74;;29015:93;29104:3;29015:93;:::i;:::-;29133:2;29128:3;29124:12;29117:19;;28776:366;;;:::o;29148:419::-;29314:4;29352:2;29341:9;29337:18;29329:26;;29401:9;29395:4;29391:20;29387:1;29376:9;29372:17;29365:47;29429:131;29555:4;29429:131;:::i;:::-;29421:139;;29148:419;;;:::o;29573:221::-;29713:34;29709:1;29701:6;29697:14;29690:58;29782:4;29777:2;29769:6;29765:15;29758:29;29573:221;:::o;29800:366::-;29942:3;29963:67;30027:2;30022:3;29963:67;:::i;:::-;29956:74;;30039:93;30128:3;30039:93;:::i;:::-;30157:2;30152:3;30148:12;30141:19;;29800:366;;;:::o;30172:419::-;30338:4;30376:2;30365:9;30361:18;30353:26;;30425:9;30419:4;30415:20;30411:1;30400:9;30396:17;30389:47;30453:131;30579:4;30453:131;:::i;:::-;30445:139;;30172:419;;;:::o;30597:231::-;30737:34;30733:1;30725:6;30721:14;30714:58;30806:14;30801:2;30793:6;30789:15;30782:39;30597:231;:::o;30834:366::-;30976:3;30997:67;31061:2;31056:3;30997:67;:::i;:::-;30990:74;;31073:93;31162:3;31073:93;:::i;:::-;31191:2;31186:3;31182:12;31175:19;;30834:366;;;:::o;31206:419::-;31372:4;31410:2;31399:9;31395:18;31387:26;;31459:9;31453:4;31449:20;31445:1;31434:9;31430:17;31423:47;31487:131;31613:4;31487:131;:::i;:::-;31479:139;;31206:419;;;:::o;31631:180::-;31679:77;31676:1;31669:88;31776:4;31773:1;31766:15;31800:4;31797:1;31790:15;31817:180;31957:32;31953:1;31945:6;31941:14;31934:56;31817:180;:::o;32003:366::-;32145:3;32166:67;32230:2;32225:3;32166:67;:::i;:::-;32159:74;;32242:93;32331:3;32242:93;:::i;:::-;32360:2;32355:3;32351:12;32344:19;;32003:366;;;:::o;32375:419::-;32541:4;32579:2;32568:9;32564:18;32556:26;;32628:9;32622:4;32618:20;32614:1;32603:9;32599:17;32592:47;32656:131;32782:4;32656:131;:::i;:::-;32648:139;;32375:419;;;:::o;32800:169::-;32940:21;32936:1;32928:6;32924:14;32917:45;32800:169;:::o;32975:366::-;33117:3;33138:67;33202:2;33197:3;33138:67;:::i;:::-;33131:74;;33214:93;33303:3;33214:93;:::i;:::-;33332:2;33327:3;33323:12;33316:19;;32975:366;;;:::o;33347:419::-;33513:4;33551:2;33540:9;33536:18;33528:26;;33600:9;33594:4;33590:20;33586:1;33575:9;33571:17;33564:47;33628:131;33754:4;33628:131;:::i;:::-;33620:139;;33347:419;;;:::o;33772:228::-;33912:34;33908:1;33900:6;33896:14;33889:58;33981:11;33976:2;33968:6;33964:15;33957:36;33772:228;:::o;34006:366::-;34148:3;34169:67;34233:2;34228:3;34169:67;:::i;:::-;34162:74;;34245:93;34334:3;34245:93;:::i;:::-;34363:2;34358:3;34354:12;34347:19;;34006:366;;;:::o;34378:419::-;34544:4;34582:2;34571:9;34567:18;34559:26;;34631:9;34625:4;34621:20;34617:1;34606:9;34602:17;34595:47;34659:131;34785:4;34659:131;:::i;:::-;34651:139;;34378:419;;;:::o;34803:229::-;34943:34;34939:1;34931:6;34927:14;34920:58;35012:12;35007:2;34999:6;34995:15;34988:37;34803:229;:::o;35038:366::-;35180:3;35201:67;35265:2;35260:3;35201:67;:::i;:::-;35194:74;;35277:93;35366:3;35277:93;:::i;:::-;35395:2;35390:3;35386:12;35379:19;;35038:366;;;:::o;35410:419::-;35576:4;35614:2;35603:9;35599:18;35591:26;;35663:9;35657:4;35653:20;35649:1;35638:9;35634:17;35627:47;35691:131;35817:4;35691:131;:::i;:::-;35683:139;;35410:419;;;:::o;35835:226::-;35975:34;35971:1;35963:6;35959:14;35952:58;36044:9;36039:2;36031:6;36027:15;36020:34;35835:226;:::o;36067:366::-;36209:3;36230:67;36294:2;36289:3;36230:67;:::i;:::-;36223:74;;36306:93;36395:3;36306:93;:::i;:::-;36424:2;36419:3;36415:12;36408:19;;36067:366;;;:::o;36439:419::-;36605:4;36643:2;36632:9;36628:18;36620:26;;36692:9;36686:4;36682:20;36678:1;36667:9;36663:17;36656:47;36720:131;36846:4;36720:131;:::i;:::-;36712:139;;36439:419;;;:::o;36864:226::-;37004:34;37000:1;36992:6;36988:14;36981:58;37073:9;37068:2;37060:6;37056:15;37049:34;36864:226;:::o;37096:366::-;37238:3;37259:67;37323:2;37318:3;37259:67;:::i;:::-;37252:74;;37335:93;37424:3;37335:93;:::i;:::-;37453:2;37448:3;37444:12;37437:19;;37096:366;;;:::o;37468:419::-;37634:4;37672:2;37661:9;37657:18;37649:26;;37721:9;37715:4;37711:20;37707:1;37696:9;37692:17;37685:47;37749:131;37875:4;37749:131;:::i;:::-;37741:139;;37468:419;;;:::o;37893:175::-;38033:27;38029:1;38021:6;38017:14;38010:51;37893:175;:::o;38074:366::-;38216:3;38237:67;38301:2;38296:3;38237:67;:::i;:::-;38230:74;;38313:93;38402:3;38313:93;:::i;:::-;38431:2;38426:3;38422:12;38415:19;;38074:366;;;:::o;38446:419::-;38612:4;38650:2;38639:9;38635:18;38627:26;;38699:9;38693:4;38689:20;38685:1;38674:9;38670:17;38663:47;38727:131;38853:4;38727:131;:::i;:::-;38719:139;;38446:419;;;:::o;38871:234::-;39011:34;39007:1;38999:6;38995:14;38988:58;39080:17;39075:2;39067:6;39063:15;39056:42;38871:234;:::o;39111:366::-;39253:3;39274:67;39338:2;39333:3;39274:67;:::i;:::-;39267:74;;39350:93;39439:3;39350:93;:::i;:::-;39468:2;39463:3;39459:12;39452:19;;39111:366;;;:::o;39483:419::-;39649:4;39687:2;39676:9;39672:18;39664:26;;39736:9;39730:4;39726:20;39722:1;39711:9;39707:17;39700:47;39764:131;39890:4;39764:131;:::i;:::-;39756:139;;39483:419;;;:::o;39908:148::-;40010:11;40047:3;40032:18;;39908:148;;;;:::o;40062:377::-;40168:3;40196:39;40229:5;40196:39;:::i;:::-;40251:89;40333:6;40328:3;40251:89;:::i;:::-;40244:96;;40349:52;40394:6;40389:3;40382:4;40375:5;40371:16;40349:52;:::i;:::-;40426:6;40421:3;40417:16;40410:23;;40172:267;40062:377;;;;:::o;40445:435::-;40625:3;40647:95;40738:3;40729:6;40647:95;:::i;:::-;40640:102;;40759:95;40850:3;40841:6;40759:95;:::i;:::-;40752:102;;40871:3;40864:10;;40445:435;;;;;:::o;40886:224::-;41026:34;41022:1;41014:6;41010:14;41003:58;41095:7;41090:2;41082:6;41078:15;41071:32;40886:224;:::o;41116:366::-;41258:3;41279:67;41343:2;41338:3;41279:67;:::i;:::-;41272:74;;41355:93;41444:3;41355:93;:::i;:::-;41473:2;41468:3;41464:12;41457:19;;41116:366;;;:::o;41488:419::-;41654:4;41692:2;41681:9;41677:18;41669:26;;41741:9;41735:4;41731:20;41727:1;41716:9;41712:17;41705:47;41769:131;41895:4;41769:131;:::i;:::-;41761:139;;41488:419;;;:::o;41913:225::-;42053:34;42049:1;42041:6;42037:14;42030:58;42122:8;42117:2;42109:6;42105:15;42098:33;41913:225;:::o;42144:366::-;42286:3;42307:67;42371:2;42366:3;42307:67;:::i;:::-;42300:74;;42383:93;42472:3;42383:93;:::i;:::-;42501:2;42496:3;42492:12;42485:19;;42144:366;;;:::o;42516:419::-;42682:4;42720:2;42709:9;42705:18;42697:26;;42769:9;42763:4;42759:20;42755:1;42744:9;42740:17;42733:47;42797:131;42923:4;42797:131;:::i;:::-;42789:139;;42516:419;;;:::o;42941:231::-;43081:34;43077:1;43069:6;43065:14;43058:58;43150:14;43145:2;43137:6;43133:15;43126:39;42941:231;:::o;43178:366::-;43320:3;43341:67;43405:2;43400:3;43341:67;:::i;:::-;43334:74;;43417:93;43506:3;43417:93;:::i;:::-;43535:2;43530:3;43526:12;43519:19;;43178:366;;;:::o;43550:419::-;43716:4;43754:2;43743:9;43739:18;43731:26;;43803:9;43797:4;43793:20;43789:1;43778:9;43774:17;43767:47;43831:131;43957:4;43831:131;:::i;:::-;43823:139;;43550:419;;;:::o;43975:228::-;44115:34;44111:1;44103:6;44099:14;44092:58;44184:11;44179:2;44171:6;44167:15;44160:36;43975:228;:::o;44209:366::-;44351:3;44372:67;44436:2;44431:3;44372:67;:::i;:::-;44365:74;;44448:93;44537:3;44448:93;:::i;:::-;44566:2;44561:3;44557:12;44550:19;;44209:366;;;:::o;44581:419::-;44747:4;44785:2;44774:9;44770:18;44762:26;;44834:9;44828:4;44824:20;44820:1;44809:9;44805:17;44798:47;44862:131;44988:4;44862:131;:::i;:::-;44854:139;;44581:419;;;:::o;45006:223::-;45146:34;45142:1;45134:6;45130:14;45123:58;45215:6;45210:2;45202:6;45198:15;45191:31;45006:223;:::o;45235:366::-;45377:3;45398:67;45462:2;45457:3;45398:67;:::i;:::-;45391:74;;45474:93;45563:3;45474:93;:::i;:::-;45592:2;45587:3;45583:12;45576:19;;45235:366;;;:::o;45607:419::-;45773:4;45811:2;45800:9;45796:18;45788:26;;45860:9;45854:4;45850:20;45846:1;45835:9;45831:17;45824:47;45888:131;46014:4;45888:131;:::i;:::-;45880:139;;45607:419;;;:::o;46032:191::-;46072:4;46092:20;46110:1;46092:20;:::i;:::-;46087:25;;46126:20;46144:1;46126:20;:::i;:::-;46121:25;;46165:1;46162;46159:8;46156:34;;;46170:18;;:::i;:::-;46156:34;46215:1;46212;46208:9;46200:17;;46032:191;;;;:::o;46229:237::-;46369:34;46365:1;46357:6;46353:14;46346:58;46438:20;46433:2;46425:6;46421:15;46414:45;46229:237;:::o;46472:366::-;46614:3;46635:67;46699:2;46694:3;46635:67;:::i;:::-;46628:74;;46711:93;46800:3;46711:93;:::i;:::-;46829:2;46824:3;46820:12;46813:19;;46472:366;;;:::o;46844:419::-;47010:4;47048:2;47037:9;47033:18;47025:26;;47097:9;47091:4;47087:20;47083:1;47072:9;47068:17;47061:47;47125:131;47251:4;47125:131;:::i;:::-;47117:139;;46844:419;;;:::o;47269:185::-;47309:1;47326:20;47344:1;47326:20;:::i;:::-;47321:25;;47360:20;47378:1;47360:20;:::i;:::-;47355:25;;47399:1;47389:35;;47404:18;;:::i;:::-;47389:35;47446:1;47443;47439:9;47434:14;;47269:185;;;;:::o;47460:98::-;47511:6;47545:5;47539:12;47529:22;;47460:98;;;:::o;47564:168::-;47647:11;47681:6;47676:3;47669:19;47721:4;47716:3;47712:14;47697:29;;47564:168;;;;:::o;47738:360::-;47824:3;47852:38;47884:5;47852:38;:::i;:::-;47906:70;47969:6;47964:3;47906:70;:::i;:::-;47899:77;;47985:52;48030:6;48025:3;48018:4;48011:5;48007:16;47985:52;:::i;:::-;48062:29;48084:6;48062:29;:::i;:::-;48057:3;48053:39;48046:46;;47828:270;47738:360;;;;:::o;48104:640::-;48299:4;48337:3;48326:9;48322:19;48314:27;;48351:71;48419:1;48408:9;48404:17;48395:6;48351:71;:::i;:::-;48432:72;48500:2;48489:9;48485:18;48476:6;48432:72;:::i;:::-;48514;48582:2;48571:9;48567:18;48558:6;48514:72;:::i;:::-;48633:9;48627:4;48623:20;48618:2;48607:9;48603:18;48596:48;48661:76;48732:4;48723:6;48661:76;:::i;:::-;48653:84;;48104:640;;;;;;;:::o;48750:141::-;48806:5;48837:6;48831:13;48822:22;;48853:32;48879:5;48853:32;:::i;:::-;48750:141;;;;:::o;48897:349::-;48966:6;49015:2;49003:9;48994:7;48990:23;48986:32;48983:119;;;49021:79;;:::i;:::-;48983:119;49141:1;49166:63;49221:7;49212:6;49201:9;49197:22;49166:63;:::i;:::-;49156:73;;49112:127;48897:349;;;;:::o;49252:180::-;49300:77;49297:1;49290:88;49397:4;49394:1;49387:15;49421:4;49418:1;49411:15;49438:182;49578:34;49574:1;49566:6;49562:14;49555:58;49438:182;:::o;49626:366::-;49768:3;49789:67;49853:2;49848:3;49789:67;:::i;:::-;49782:74;;49865:93;49954:3;49865:93;:::i;:::-;49983:2;49978:3;49974:12;49967:19;;49626:366;;;:::o;49998:419::-;50164:4;50202:2;50191:9;50187:18;50179:26;;50251:9;50245:4;50241:20;50237:1;50226:9;50222:17;50215:47;50279:131;50405:4;50279:131;:::i;:::-;50271:139;;49998:419;;;:::o;50423:178::-;50563:30;50559:1;50551:6;50547:14;50540:54;50423:178;:::o;50607:366::-;50749:3;50770:67;50834:2;50829:3;50770:67;:::i;:::-;50763:74;;50846:93;50935:3;50846:93;:::i;:::-;50964:2;50959:3;50955:12;50948:19;;50607:366;;;:::o;50979:419::-;51145:4;51183:2;51172:9;51168:18;51160:26;;51232:9;51226:4;51222:20;51218:1;51207:9;51203:17;51196:47;51260:131;51386:4;51260:131;:::i;:::-;51252:139;;50979:419;;;:::o

Swarm Source

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