ETH Price: $2,394.63 (-2.13%)

Token

Brainiac Society (BRAINIAC)
 

Overview

Max Total Supply

111 BRAINIAC

Holders

15

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 BRAINIAC
0x9d218f087b90c73ade362e7d3bc7cbd50145736a
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
BrainiacSociety

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

// File @openzeppelin/contracts/utils/introspection/[email protected]

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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


// File @openzeppelin/contracts/token/ERC721/[email protected]


pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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


// File @openzeppelin/contracts/token/ERC721/[email protected]


pragma solidity ^0.8.0;

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


// File @openzeppelin/contracts/token/ERC721/extensions/[email protected]


pragma solidity ^0.8.0;

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

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

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


// File @openzeppelin/contracts/utils/[email protected]


pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// File @openzeppelin/contracts/utils/[email protected]


pragma solidity ^0.8.0;

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

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

// File @openzeppelin/contracts/utils/math/SaftMath.sol
pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File @openzeppelin/contracts/utils/[email protected]



pragma solidity ^0.8.0;

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

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

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

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

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


// File @openzeppelin/contracts/utils/introspection/[email protected]


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/[email protected]


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(), ".json")) : "";
    }

    /**
     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, can be overriden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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


// File @openzeppelin/contracts/access/[email protected]


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

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

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

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

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

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}


// File @openzeppelin/contracts/token/ERC721/extensions/[email protected]


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/[email protected]


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 contracts/DZI.sol


pragma solidity ^0.8.0;



contract BrainiacSociety is ERC721, ERC721Enumerable, Ownable {

    using Strings for uint256;

    string public PROVENANCE;
    uint256 public constant tokenPrice = 80000000000000000; // 0.08 ETH
    uint public constant maxTokenPurchase = 20;
    uint public constant maxTokenPerWallet = 20;
    uint256 public MAX_TOKENS = 8888;
    bool public saleIsActive = false;
    bool public preSaleIsActive = false;
    bool public revealed = false;
    string public notRevealedUri;
    string public baseExtension = ".json";
    string private _baseURIextended;
    // WhiteLists for presale.
    mapping (address => bool) private _isWhiteListed;
    mapping (address => uint) private _numberOfWallets;
    
    event AddWhiteListWallet(address _wallet );
    event RemoveWhiteListWallet(address _wallet );
    
    constructor(

    ) ERC721("Brainiac Society", "BRAINIAC") {

    }

    function reveal() public onlyOwner {
        revealed = true;
    }

    function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner {
        notRevealedUri = _notRevealedURI;
    }

    function _beforeTokenTransfer(address from, address to, uint256 tokenId) internal override(ERC721, ERC721Enumerable) {
        super._beforeTokenTransfer(from, to, tokenId);
    }

    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC721, ERC721Enumerable) returns (bool) {
        return super.supportsInterface(interfaceId);
    }

    function setBaseURI(string memory baseURI_) external onlyOwner() {
        _baseURIextended = baseURI_;
    }

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

    function setProvenance(string memory provenance) public onlyOwner {
        PROVENANCE = provenance;
    }

    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        require(
        _exists(tokenId),
        "ERC721Metadata: URI query for nonexistent token"
        );
        
        if(revealed == false) {
            return notRevealedUri;
        }

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

    // Reserve 100 Brainiacs for team & community (Used in giveaways, promotions etc...)


    function reserveTokens() public onlyOwner {
        uint supply = totalSupply();
        require(supply < 100, "More than 100 tokens have already been reserved or minted.");
        uint i;
        for (i = 0; i < 100; i++) {
            _safeMint(msg.sender, supply + i);
        }
    }

    function flipSaleState() public onlyOwner {
        saleIsActive = !saleIsActive;
    }

    function flipPreSaleState() public onlyOwner {
        preSaleIsActive = !preSaleIsActive;
    }

    function addWhiteListWallet (address _wallet) public onlyOwner {
        _isWhiteListed[_wallet] = true;
        emit AddWhiteListWallet(_wallet);
    }
    
    function removeWhiteListWallet (address _wallet) public onlyOwner {
        _isWhiteListed[_wallet] = false;
        emit RemoveWhiteListWallet(_wallet);
    }
    
    function preSaleToken(uint numberOfTokens) public payable {
        require(preSaleIsActive, "PreSale must be active to mint");
        require(!saleIsActive, "Could not pre-mint after sale is active");
        require(numberOfTokens <= maxTokenPurchase, "Exceeded max token purchase");
        require(_numberOfWallets[msg.sender] + numberOfTokens <= maxTokenPerWallet, "Exceeded max purchase per wallet");
        require(totalSupply() + numberOfTokens <= MAX_TOKENS, "Purchase would exceed max supply");
        require(tokenPrice * numberOfTokens <= msg.value, "Ether value sent is not correct");
        require(_isWhiteListed[msg.sender], "You are not allowed to mint before regular sale");
        
        for(uint i = 0; i < numberOfTokens; i++) {
            uint mintIndex = totalSupply();
            if (totalSupply() < MAX_TOKENS) {
                _safeMint(msg.sender, mintIndex);
            }
        }
        
        _numberOfWallets[msg.sender] = _numberOfWallets[msg.sender] + numberOfTokens;
    }
    
    function mintToken(uint numberOfTokens) public payable {
        require(saleIsActive, "Sale must be active to mint");
        require(numberOfTokens <= maxTokenPurchase, "Exceeded max token purchase");
        require(_numberOfWallets[msg.sender] + numberOfTokens <= maxTokenPerWallet, "Exceeded max token purchase per wallet");
        require(totalSupply() + numberOfTokens <= MAX_TOKENS, "Purchase would exceed max supply");
        require(tokenPrice * numberOfTokens <= msg.value, "Ether value sent is not correct");

        for(uint i = 0; i < numberOfTokens; i++) {
            uint mintIndex = totalSupply();
            if (totalSupply() < MAX_TOKENS) {
                _safeMint(msg.sender, mintIndex);
            }
        }
        _numberOfWallets[msg.sender] = _numberOfWallets[msg.sender] + numberOfTokens;
    }

    // Update dev address by the previous dev.

    function withdraw() public onlyOwner {
        uint256 balance = address(this).balance;
        payable(msg.sender).transfer(balance);
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_wallet","type":"address"}],"name":"AddWhiteListWallet","type":"event"},{"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":false,"internalType":"address","name":"_wallet","type":"address"}],"name":"RemoveWhiteListWallet","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_TOKENS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PROVENANCE","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_wallet","type":"address"}],"name":"addWhiteListWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipPreSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipSaleState","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":[],"name":"maxTokenPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTokenPurchase","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mintToken","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","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":"preSaleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"preSaleToken","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_wallet","type":"address"}],"name":"removeWhiteListWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reserveTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"bool","name":"","type":"bool"}],"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":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"provenance","type":"string"}],"name":"setProvenance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526122b8600c556000600d60006101000a81548160ff0219169083151502179055506000600d60016101000a81548160ff0219169083151502179055506000600d60026101000a81548160ff0219169083151502179055506040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600f9080519060200190620000a89291906200024b565b50348015620000b657600080fd5b506040518060400160405280601081526020017f427261696e69616320536f6369657479000000000000000000000000000000008152506040518060400160405280600881526020017f425241494e49414300000000000000000000000000000000000000000000000081525081600090805190602001906200013b9291906200024b565b508060019080519060200190620001549291906200024b565b505050620001776200016b6200017d60201b60201c565b6200018560201b60201c565b62000360565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200025990620002fb565b90600052602060002090601f0160209004810192826200027d5760008555620002c9565b82601f106200029857805160ff1916838001178555620002c9565b82800160010185558215620002c9579182015b82811115620002c8578251825591602001919060010190620002ab565b5b509050620002d89190620002dc565b5090565b5b80821115620002f7576000816000905550600101620002dd565b5090565b600060028204905060018216806200031457607f821691505b602082108114156200032b576200032a62000331565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b614ed980620003706000396000f3fe6080604052600436106102465760003560e01c80636955327d11610139578063b88d4fde116100b6578063eb8d24441161007a578063eb8d24441461082a578063f032554914610855578063f2c4ce1e1461086c578063f2fde38b14610895578063f47c84c5146108be578063ffe630b5146108e957610246565b8063b88d4fde14610740578063c634d03214610769578063c668286214610785578063c87b56dd146107b0578063e985e9c5146107ed57610246565b80638da5cb5b116100fd5780638da5cb5b1461068157806395d89b41146106ac578063a22cb465146106d7578063a475b5dd14610700578063b7ced53b1461071757610246565b80636955327d146105bb57806370a08231146105d7578063715018a6146106145780637a8baf521461062b5780637ff9b5961461065657610246565b80632f745c59116101c75780634f6ccce71161018b5780634f6ccce7146104c257806351830227146104ff57806355f804b31461052a5780636352211e146105535780636373a6b11461059057610246565b80632f745c591461040557806331690b441461044257806334918dfd1461046b5780633ccfd60b1461048257806342842e0e1461049957610246565b806309aa3dcf1161020e57806309aa3dcf1461034457806318160ddd1461036f5780631f0234d81461039a57806323b872dd146103c557806327ac36c4146103ee57610246565b806301ffc9a71461024b57806306fdde0314610288578063081812fc146102b3578063081c8c44146102f0578063095ea7b31461031b575b600080fd5b34801561025757600080fd5b50610272600480360381019061026d91906139f3565b610912565b60405161027f9190614642565b60405180910390f35b34801561029457600080fd5b5061029d610924565b6040516102aa919061465d565b60405180910390f35b3480156102bf57600080fd5b506102da60048036038101906102d59190613a86565b6109b6565b6040516102e791906145db565b60405180910390f35b3480156102fc57600080fd5b50610305610a3b565b604051610312919061465d565b60405180910390f35b34801561032757600080fd5b50610342600480360381019061033d91906139b7565b610ac9565b005b34801561035057600080fd5b50610359610be1565b60405161036691906149ff565b60405180910390f35b34801561037b57600080fd5b50610384610be6565b60405161039191906149ff565b60405180910390f35b3480156103a657600080fd5b506103af610bf3565b6040516103bc9190614642565b60405180910390f35b3480156103d157600080fd5b506103ec60048036038101906103e791906138b1565b610c06565b005b3480156103fa57600080fd5b50610403610c66565b005b34801561041157600080fd5b5061042c600480360381019061042791906139b7565b610d69565b60405161043991906149ff565b60405180910390f35b34801561044e57600080fd5b506104696004803603810190610464919061384c565b610e0e565b005b34801561047757600080fd5b50610480610f1c565b005b34801561048e57600080fd5b50610497610fc4565b005b3480156104a557600080fd5b506104c060048036038101906104bb91906138b1565b61108f565b005b3480156104ce57600080fd5b506104e960048036038101906104e49190613a86565b6110af565b6040516104f691906149ff565b60405180910390f35b34801561050b57600080fd5b50610514611146565b6040516105219190614642565b60405180910390f35b34801561053657600080fd5b50610551600480360381019061054c9190613a45565b611159565b005b34801561055f57600080fd5b5061057a60048036038101906105759190613a86565b6111ef565b60405161058791906145db565b60405180910390f35b34801561059c57600080fd5b506105a56112a1565b6040516105b2919061465d565b60405180910390f35b6105d560048036038101906105d09190613a86565b61132f565b005b3480156105e357600080fd5b506105fe60048036038101906105f9919061384c565b6116b2565b60405161060b91906149ff565b60405180910390f35b34801561062057600080fd5b5061062961176a565b005b34801561063757600080fd5b506106406117f2565b60405161064d91906149ff565b60405180910390f35b34801561066257600080fd5b5061066b6117f7565b60405161067891906149ff565b60405180910390f35b34801561068d57600080fd5b50610696611803565b6040516106a391906145db565b60405180910390f35b3480156106b857600080fd5b506106c161182d565b6040516106ce919061465d565b60405180910390f35b3480156106e357600080fd5b506106fe60048036038101906106f9919061397b565b6118bf565b005b34801561070c57600080fd5b50610715611a40565b005b34801561072357600080fd5b5061073e6004803603810190610739919061384c565b611ad9565b005b34801561074c57600080fd5b5061076760048036038101906107629190613900565b611be7565b005b610783600480360381019061077e9190613a86565b611c49565b005b34801561079157600080fd5b5061079a611ef0565b6040516107a7919061465d565b60405180910390f35b3480156107bc57600080fd5b506107d760048036038101906107d29190613a86565b611f7e565b6040516107e4919061465d565b60405180910390f35b3480156107f957600080fd5b50610814600480360381019061080f9190613875565b6120d7565b6040516108219190614642565b60405180910390f35b34801561083657600080fd5b5061083f61216b565b60405161084c9190614642565b60405180910390f35b34801561086157600080fd5b5061086a61217e565b005b34801561087857600080fd5b50610893600480360381019061088e9190613a45565b612226565b005b3480156108a157600080fd5b506108bc60048036038101906108b7919061384c565b6122bc565b005b3480156108ca57600080fd5b506108d36123b4565b6040516108e091906149ff565b60405180910390f35b3480156108f557600080fd5b50610910600480360381019061090b9190613a45565b6123ba565b005b600061091d82612450565b9050919050565b60606000805461093390614cce565b80601f016020809104026020016040519081016040528092919081815260200182805461095f90614cce565b80156109ac5780601f10610981576101008083540402835291602001916109ac565b820191906000526020600020905b81548152906001019060200180831161098f57829003601f168201915b5050505050905090565b60006109c1826124ca565b610a00576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109f7906148bf565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600e8054610a4890614cce565b80601f0160208091040260200160405190810160405280929190818152602001828054610a7490614cce565b8015610ac15780601f10610a9657610100808354040283529160200191610ac1565b820191906000526020600020905b815481529060010190602001808311610aa457829003601f168201915b505050505081565b6000610ad4826111ef565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3c9061495f565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b64612536565b73ffffffffffffffffffffffffffffffffffffffff161480610b935750610b9281610b8d612536565b6120d7565b5b610bd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc99061481f565b60405180910390fd5b610bdc838361253e565b505050565b601481565b6000600880549050905090565b600d60019054906101000a900460ff1681565b610c17610c11612536565b826125f7565b610c56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4d906149bf565b60405180910390fd5b610c618383836126d5565b505050565b610c6e612536565b73ffffffffffffffffffffffffffffffffffffffff16610c8c611803565b73ffffffffffffffffffffffffffffffffffffffff1614610ce2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd9906148df565b60405180910390fd5b6000610cec610be6565b905060648110610d31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d28906148ff565b60405180910390fd5b60005b6064811015610d6557610d52338284610d4d9190614b03565b612931565b8080610d5d90614d00565b915050610d34565b5050565b6000610d74836116b2565b8210610db5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dac9061469f565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610e16612536565b73ffffffffffffffffffffffffffffffffffffffff16610e34611803565b73ffffffffffffffffffffffffffffffffffffffff1614610e8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e81906148df565b60405180910390fd5b6001601160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055507fc8651250df7c4c306e2bd9eb8d5a8e9a422a3101fb96cfa7f8e0c3a7df3b9b5181604051610f1191906145db565b60405180910390a150565b610f24612536565b73ffffffffffffffffffffffffffffffffffffffff16610f42611803565b73ffffffffffffffffffffffffffffffffffffffff1614610f98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8f906148df565b60405180910390fd5b600d60009054906101000a900460ff1615600d60006101000a81548160ff021916908315150217905550565b610fcc612536565b73ffffffffffffffffffffffffffffffffffffffff16610fea611803565b73ffffffffffffffffffffffffffffffffffffffff1614611040576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611037906148df565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f1935050505015801561108b573d6000803e3d6000fd5b5050565b6110aa83838360405180602001604052806000815250611be7565b505050565b60006110b9610be6565b82106110fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f1906149df565b60405180910390fd5b60088281548110611134577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b600d60029054906101000a900460ff1681565b611161612536565b73ffffffffffffffffffffffffffffffffffffffff1661117f611803565b73ffffffffffffffffffffffffffffffffffffffff16146111d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111cc906148df565b60405180910390fd5b80601090805190602001906111eb929190613670565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611298576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128f9061485f565b60405180910390fd5b80915050919050565b600b80546112ae90614cce565b80601f01602080910402602001604051908101604052809291908181526020018280546112da90614cce565b80156113275780601f106112fc57610100808354040283529160200191611327565b820191906000526020600020905b81548152906001019060200180831161130a57829003601f168201915b505050505081565b600d60019054906101000a900460ff1661137e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113759061499f565b60405180910390fd5b600d60009054906101000a900460ff16156113ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c5906147ff565b60405180910390fd5b6014811115611412576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114099061497f565b60405180910390fd5b601481601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461145f9190614b03565b11156114a0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114979061467f565b60405180910390fd5b600c54816114ac610be6565b6114b69190614b03565b11156114f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ee9061487f565b60405180910390fd5b348167011c37937e08000061150c9190614b8a565b111561154d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115449061479f565b60405180910390fd5b601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166115d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d0906146ff565b60405180910390fd5b60005b818110156116205760006115ee610be6565b9050600c546115fb610be6565b101561160c5761160b3382612931565b5b50808061161890614d00565b9150506115dc565b5080601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461166c9190614b03565b601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611723576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171a9061483f565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611772612536565b73ffffffffffffffffffffffffffffffffffffffff16611790611803565b73ffffffffffffffffffffffffffffffffffffffff16146117e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117dd906148df565b60405180910390fd5b6117f0600061294f565b565b601481565b67011c37937e08000081565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461183c90614cce565b80601f016020809104026020016040519081016040528092919081815260200182805461186890614cce565b80156118b55780601f1061188a576101008083540402835291602001916118b5565b820191906000526020600020905b81548152906001019060200180831161189857829003601f168201915b5050505050905090565b6118c7612536565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611935576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192c9061477f565b60405180910390fd5b8060056000611942612536565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166119ef612536565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611a349190614642565b60405180910390a35050565b611a48612536565b73ffffffffffffffffffffffffffffffffffffffff16611a66611803565b73ffffffffffffffffffffffffffffffffffffffff1614611abc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ab3906148df565b60405180910390fd5b6001600d60026101000a81548160ff021916908315150217905550565b611ae1612536565b73ffffffffffffffffffffffffffffffffffffffff16611aff611803565b73ffffffffffffffffffffffffffffffffffffffff1614611b55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4c906148df565b60405180910390fd5b6000601160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055507ff4d05032556b7a946737f39b95e07890ce0335b8d0ea912ac5b9ed95710dbb8381604051611bdc91906145db565b60405180910390a150565b611bf8611bf2612536565b836125f7565b611c37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2e906149bf565b60405180910390fd5b611c4384848484612a15565b50505050565b600d60009054906101000a900460ff16611c98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8f906147bf565b60405180910390fd5b6014811115611cdc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cd39061497f565b60405180910390fd5b601481601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611d299190614b03565b1115611d6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d619061473f565b60405180910390fd5b600c5481611d76610be6565b611d809190614b03565b1115611dc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611db89061487f565b60405180910390fd5b348167011c37937e080000611dd69190614b8a565b1115611e17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e0e9061479f565b60405180910390fd5b60005b81811015611e5e576000611e2c610be6565b9050600c54611e39610be6565b1015611e4a57611e493382612931565b5b508080611e5690614d00565b915050611e1a565b5080601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611eaa9190614b03565b601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555050565b600f8054611efd90614cce565b80601f0160208091040260200160405190810160405280929190818152602001828054611f2990614cce565b8015611f765780601f10611f4b57610100808354040283529160200191611f76565b820191906000526020600020905b815481529060010190602001808311611f5957829003601f168201915b505050505081565b6060611f89826124ca565b611fc8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fbf9061493f565b60405180910390fd5b60001515600d60029054906101000a900460ff161515141561207657600e8054611ff190614cce565b80601f016020809104026020016040519081016040528092919081815260200182805461201d90614cce565b801561206a5780601f1061203f5761010080835404028352916020019161206a565b820191906000526020600020905b81548152906001019060200180831161204d57829003601f168201915b505050505090506120d2565b6000612080612a71565b905060008151116120a057604051806020016040528060008152506120ce565b806120aa84612b03565b600f6040516020016120be939291906145aa565b6040516020818303038152906040525b9150505b919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600d60009054906101000a900460ff1681565b612186612536565b73ffffffffffffffffffffffffffffffffffffffff166121a4611803565b73ffffffffffffffffffffffffffffffffffffffff16146121fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121f1906148df565b60405180910390fd5b600d60019054906101000a900460ff1615600d60016101000a81548160ff021916908315150217905550565b61222e612536565b73ffffffffffffffffffffffffffffffffffffffff1661224c611803565b73ffffffffffffffffffffffffffffffffffffffff16146122a2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612299906148df565b60405180910390fd5b80600e90805190602001906122b8929190613670565b5050565b6122c4612536565b73ffffffffffffffffffffffffffffffffffffffff166122e2611803565b73ffffffffffffffffffffffffffffffffffffffff1614612338576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161232f906148df565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156123a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161239f906146df565b60405180910390fd5b6123b18161294f565b50565b600c5481565b6123c2612536565b73ffffffffffffffffffffffffffffffffffffffff166123e0611803565b73ffffffffffffffffffffffffffffffffffffffff1614612436576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161242d906148df565b60405180910390fd5b80600b908051906020019061244c929190613670565b5050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806124c357506124c282612cb0565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166125b1836111ef565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000612602826124ca565b612641576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612638906147df565b60405180910390fd5b600061264c836111ef565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806126bb57508373ffffffffffffffffffffffffffffffffffffffff166126a3846109b6565b73ffffffffffffffffffffffffffffffffffffffff16145b806126cc57506126cb81856120d7565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166126f5826111ef565b73ffffffffffffffffffffffffffffffffffffffff161461274b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127429061491f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156127bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127b29061475f565b60405180910390fd5b6127c6838383612d92565b6127d160008261253e565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546128219190614be4565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546128789190614b03565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b61294b828260405180602001604052806000815250612da2565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612a208484846126d5565b612a2c84848484612dfd565b612a6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a62906146bf565b60405180910390fd5b50505050565b606060108054612a8090614cce565b80601f0160208091040260200160405190810160405280929190818152602001828054612aac90614cce565b8015612af95780601f10612ace57610100808354040283529160200191612af9565b820191906000526020600020905b815481529060010190602001808311612adc57829003601f168201915b5050505050905090565b60606000821415612b4b576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612cab565b600082905060005b60008214612b7d578080612b6690614d00565b915050600a82612b769190614b59565b9150612b53565b60008167ffffffffffffffff811115612bbf577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612bf15781602001600182028036833780820191505090505b5090505b60008514612ca457600182612c0a9190614be4565b9150600a85612c199190614d49565b6030612c259190614b03565b60f81b818381518110612c61577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612c9d9190614b59565b9450612bf5565b8093505050505b919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612d7b57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612d8b5750612d8a82612f94565b5b9050919050565b612d9d838383612ffe565b505050565b612dac8383613112565b612db96000848484612dfd565b612df8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612def906146bf565b60405180910390fd5b505050565b6000612e1e8473ffffffffffffffffffffffffffffffffffffffff166132e0565b15612f87578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612e47612536565b8786866040518563ffffffff1660e01b8152600401612e6994939291906145f6565b602060405180830381600087803b158015612e8357600080fd5b505af1925050508015612eb457506040513d601f19601f82011682018060405250810190612eb19190613a1c565b60015b612f37573d8060008114612ee4576040519150601f19603f3d011682016040523d82523d6000602084013e612ee9565b606091505b50600081511415612f2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f26906146bf565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612f8c565b600190505b949350505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6130098383836132f3565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561304c57613047816132f8565b61308b565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461308a576130898382613341565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156130ce576130c9816134ae565b61310d565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461310c5761310b82826135f1565b5b5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613182576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131799061489f565b60405180910390fd5b61318b816124ca565b156131cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131c29061471f565b60405180910390fd5b6131d760008383612d92565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546132279190614b03565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161334e846116b2565b6133589190614be4565b905060006007600084815260200190815260200160002054905081811461343d576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506134c29190614be4565b9050600060096000848152602001908152602001600020549050600060088381548110613518577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060088381548110613560577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200181905550816009600083815260200190815260200160002081905550600960008581526020019081526020016000206000905560088054806135d5577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b60006135fc836116b2565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b82805461367c90614cce565b90600052602060002090601f01602090048101928261369e57600085556136e5565b82601f106136b757805160ff19168380011785556136e5565b828001600101855582156136e5579182015b828111156136e45782518255916020019190600101906136c9565b5b5090506136f291906136f6565b5090565b5b8082111561370f5760008160009055506001016136f7565b5090565b600061372661372184614a4b565b614a1a565b90508281526020810184848401111561373e57600080fd5b613749848285614c8c565b509392505050565b600061376461375f84614a7b565b614a1a565b90508281526020810184848401111561377c57600080fd5b613787848285614c8c565b509392505050565b60008135905061379e81614e47565b92915050565b6000813590506137b381614e5e565b92915050565b6000813590506137c881614e75565b92915050565b6000815190506137dd81614e75565b92915050565b600082601f8301126137f457600080fd5b8135613804848260208601613713565b91505092915050565b600082601f83011261381e57600080fd5b813561382e848260208601613751565b91505092915050565b60008135905061384681614e8c565b92915050565b60006020828403121561385e57600080fd5b600061386c8482850161378f565b91505092915050565b6000806040838503121561388857600080fd5b60006138968582860161378f565b92505060206138a78582860161378f565b9150509250929050565b6000806000606084860312156138c657600080fd5b60006138d48682870161378f565b93505060206138e58682870161378f565b92505060406138f686828701613837565b9150509250925092565b6000806000806080858703121561391657600080fd5b60006139248782880161378f565b94505060206139358782880161378f565b935050604061394687828801613837565b925050606085013567ffffffffffffffff81111561396357600080fd5b61396f878288016137e3565b91505092959194509250565b6000806040838503121561398e57600080fd5b600061399c8582860161378f565b92505060206139ad858286016137a4565b9150509250929050565b600080604083850312156139ca57600080fd5b60006139d88582860161378f565b92505060206139e985828601613837565b9150509250929050565b600060208284031215613a0557600080fd5b6000613a13848285016137b9565b91505092915050565b600060208284031215613a2e57600080fd5b6000613a3c848285016137ce565b91505092915050565b600060208284031215613a5757600080fd5b600082013567ffffffffffffffff811115613a7157600080fd5b613a7d8482850161380d565b91505092915050565b600060208284031215613a9857600080fd5b6000613aa684828501613837565b91505092915050565b613ab881614c18565b82525050565b613ac781614c2a565b82525050565b6000613ad882614ac0565b613ae28185614ad6565b9350613af2818560208601614c9b565b613afb81614e36565b840191505092915050565b6000613b1182614acb565b613b1b8185614ae7565b9350613b2b818560208601614c9b565b613b3481614e36565b840191505092915050565b6000613b4a82614acb565b613b548185614af8565b9350613b64818560208601614c9b565b80840191505092915050565b60008154613b7d81614cce565b613b878186614af8565b94506001821660008114613ba25760018114613bb357613be6565b60ff19831686528186019350613be6565b613bbc85614aab565b60005b83811015613bde57815481890152600182019150602081019050613bbf565b838801955050505b50505092915050565b6000613bfc602083614ae7565b91507f4578636565646564206d6178207075726368617365207065722077616c6c65746000830152602082019050919050565b6000613c3c602b83614ae7565b91507f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008301527f74206f6620626f756e64730000000000000000000000000000000000000000006020830152604082019050919050565b6000613ca2603283614ae7565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b6000613d08602683614ae7565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613d6e602f83614ae7565b91507f596f7520617265206e6f7420616c6c6f77656420746f206d696e74206265666f60008301527f726520726567756c61722073616c6500000000000000000000000000000000006020830152604082019050919050565b6000613dd4601c83614ae7565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b6000613e14602683614ae7565b91507f4578636565646564206d617820746f6b656e207075726368617365207065722060008301527f77616c6c657400000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613e7a602483614ae7565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613ee0601983614ae7565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b6000613f20601f83614ae7565b91507f45746865722076616c75652073656e74206973206e6f7420636f7272656374006000830152602082019050919050565b6000613f60601b83614ae7565b91507f53616c65206d7573742062652061637469766520746f206d696e7400000000006000830152602082019050919050565b6000613fa0602c83614ae7565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000614006602783614ae7565b91507f436f756c64206e6f74207072652d6d696e742061667465722073616c6520697360008301527f20616374697665000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061406c603883614ae7565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b60006140d2602a83614ae7565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b6000614138602983614ae7565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b600061419e602083614ae7565b91507f507572636861736520776f756c6420657863656564206d617820737570706c796000830152602082019050919050565b60006141de602083614ae7565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b600061421e602c83614ae7565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000614284602083614ae7565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b60006142c4603a83614ae7565b91507f4d6f7265207468616e2031303020746f6b656e73206861766520616c7265616460008301527f79206265656e207265736572766564206f72206d696e7465642e0000000000006020830152604082019050919050565b600061432a602983614ae7565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000614390602f83614ae7565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b60006143f6602183614ae7565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061445c601b83614ae7565b91507f4578636565646564206d617820746f6b656e20707572636861736500000000006000830152602082019050919050565b600061449c601e83614ae7565b91507f50726553616c65206d7573742062652061637469766520746f206d696e7400006000830152602082019050919050565b60006144dc603183614ae7565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b6000614542602c83614ae7565b91507f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008301527f7574206f6620626f756e647300000000000000000000000000000000000000006020830152604082019050919050565b6145a481614c82565b82525050565b60006145b68286613b3f565b91506145c28285613b3f565b91506145ce8284613b70565b9150819050949350505050565b60006020820190506145f06000830184613aaf565b92915050565b600060808201905061460b6000830187613aaf565b6146186020830186613aaf565b614625604083018561459b565b81810360608301526146378184613acd565b905095945050505050565b60006020820190506146576000830184613abe565b92915050565b600060208201905081810360008301526146778184613b06565b905092915050565b6000602082019050818103600083015261469881613bef565b9050919050565b600060208201905081810360008301526146b881613c2f565b9050919050565b600060208201905081810360008301526146d881613c95565b9050919050565b600060208201905081810360008301526146f881613cfb565b9050919050565b6000602082019050818103600083015261471881613d61565b9050919050565b6000602082019050818103600083015261473881613dc7565b9050919050565b6000602082019050818103600083015261475881613e07565b9050919050565b6000602082019050818103600083015261477881613e6d565b9050919050565b6000602082019050818103600083015261479881613ed3565b9050919050565b600060208201905081810360008301526147b881613f13565b9050919050565b600060208201905081810360008301526147d881613f53565b9050919050565b600060208201905081810360008301526147f881613f93565b9050919050565b6000602082019050818103600083015261481881613ff9565b9050919050565b600060208201905081810360008301526148388161405f565b9050919050565b60006020820190508181036000830152614858816140c5565b9050919050565b600060208201905081810360008301526148788161412b565b9050919050565b6000602082019050818103600083015261489881614191565b9050919050565b600060208201905081810360008301526148b8816141d1565b9050919050565b600060208201905081810360008301526148d881614211565b9050919050565b600060208201905081810360008301526148f881614277565b9050919050565b60006020820190508181036000830152614918816142b7565b9050919050565b600060208201905081810360008301526149388161431d565b9050919050565b6000602082019050818103600083015261495881614383565b9050919050565b60006020820190508181036000830152614978816143e9565b9050919050565b600060208201905081810360008301526149988161444f565b9050919050565b600060208201905081810360008301526149b88161448f565b9050919050565b600060208201905081810360008301526149d8816144cf565b9050919050565b600060208201905081810360008301526149f881614535565b9050919050565b6000602082019050614a14600083018461459b565b92915050565b6000604051905081810181811067ffffffffffffffff82111715614a4157614a40614e07565b5b8060405250919050565b600067ffffffffffffffff821115614a6657614a65614e07565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff821115614a9657614a95614e07565b5b601f19601f8301169050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000614b0e82614c82565b9150614b1983614c82565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614b4e57614b4d614d7a565b5b828201905092915050565b6000614b6482614c82565b9150614b6f83614c82565b925082614b7f57614b7e614da9565b5b828204905092915050565b6000614b9582614c82565b9150614ba083614c82565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614bd957614bd8614d7a565b5b828202905092915050565b6000614bef82614c82565b9150614bfa83614c82565b925082821015614c0d57614c0c614d7a565b5b828203905092915050565b6000614c2382614c62565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614cb9578082015181840152602081019050614c9e565b83811115614cc8576000848401525b50505050565b60006002820490506001821680614ce657607f821691505b60208210811415614cfa57614cf9614dd8565b5b50919050565b6000614d0b82614c82565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614d3e57614d3d614d7a565b5b600182019050919050565b6000614d5482614c82565b9150614d5f83614c82565b925082614d6f57614d6e614da9565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b614e5081614c18565b8114614e5b57600080fd5b50565b614e6781614c2a565b8114614e7257600080fd5b50565b614e7e81614c36565b8114614e8957600080fd5b50565b614e9581614c82565b8114614ea057600080fd5b5056fea2646970667358221220c2b7e70aef21c0e5236d050d37d6233ad67b7fd8b40d1c1360a6bd63317873f664736f6c63430008000033

Deployed Bytecode

0x6080604052600436106102465760003560e01c80636955327d11610139578063b88d4fde116100b6578063eb8d24441161007a578063eb8d24441461082a578063f032554914610855578063f2c4ce1e1461086c578063f2fde38b14610895578063f47c84c5146108be578063ffe630b5146108e957610246565b8063b88d4fde14610740578063c634d03214610769578063c668286214610785578063c87b56dd146107b0578063e985e9c5146107ed57610246565b80638da5cb5b116100fd5780638da5cb5b1461068157806395d89b41146106ac578063a22cb465146106d7578063a475b5dd14610700578063b7ced53b1461071757610246565b80636955327d146105bb57806370a08231146105d7578063715018a6146106145780637a8baf521461062b5780637ff9b5961461065657610246565b80632f745c59116101c75780634f6ccce71161018b5780634f6ccce7146104c257806351830227146104ff57806355f804b31461052a5780636352211e146105535780636373a6b11461059057610246565b80632f745c591461040557806331690b441461044257806334918dfd1461046b5780633ccfd60b1461048257806342842e0e1461049957610246565b806309aa3dcf1161020e57806309aa3dcf1461034457806318160ddd1461036f5780631f0234d81461039a57806323b872dd146103c557806327ac36c4146103ee57610246565b806301ffc9a71461024b57806306fdde0314610288578063081812fc146102b3578063081c8c44146102f0578063095ea7b31461031b575b600080fd5b34801561025757600080fd5b50610272600480360381019061026d91906139f3565b610912565b60405161027f9190614642565b60405180910390f35b34801561029457600080fd5b5061029d610924565b6040516102aa919061465d565b60405180910390f35b3480156102bf57600080fd5b506102da60048036038101906102d59190613a86565b6109b6565b6040516102e791906145db565b60405180910390f35b3480156102fc57600080fd5b50610305610a3b565b604051610312919061465d565b60405180910390f35b34801561032757600080fd5b50610342600480360381019061033d91906139b7565b610ac9565b005b34801561035057600080fd5b50610359610be1565b60405161036691906149ff565b60405180910390f35b34801561037b57600080fd5b50610384610be6565b60405161039191906149ff565b60405180910390f35b3480156103a657600080fd5b506103af610bf3565b6040516103bc9190614642565b60405180910390f35b3480156103d157600080fd5b506103ec60048036038101906103e791906138b1565b610c06565b005b3480156103fa57600080fd5b50610403610c66565b005b34801561041157600080fd5b5061042c600480360381019061042791906139b7565b610d69565b60405161043991906149ff565b60405180910390f35b34801561044e57600080fd5b506104696004803603810190610464919061384c565b610e0e565b005b34801561047757600080fd5b50610480610f1c565b005b34801561048e57600080fd5b50610497610fc4565b005b3480156104a557600080fd5b506104c060048036038101906104bb91906138b1565b61108f565b005b3480156104ce57600080fd5b506104e960048036038101906104e49190613a86565b6110af565b6040516104f691906149ff565b60405180910390f35b34801561050b57600080fd5b50610514611146565b6040516105219190614642565b60405180910390f35b34801561053657600080fd5b50610551600480360381019061054c9190613a45565b611159565b005b34801561055f57600080fd5b5061057a60048036038101906105759190613a86565b6111ef565b60405161058791906145db565b60405180910390f35b34801561059c57600080fd5b506105a56112a1565b6040516105b2919061465d565b60405180910390f35b6105d560048036038101906105d09190613a86565b61132f565b005b3480156105e357600080fd5b506105fe60048036038101906105f9919061384c565b6116b2565b60405161060b91906149ff565b60405180910390f35b34801561062057600080fd5b5061062961176a565b005b34801561063757600080fd5b506106406117f2565b60405161064d91906149ff565b60405180910390f35b34801561066257600080fd5b5061066b6117f7565b60405161067891906149ff565b60405180910390f35b34801561068d57600080fd5b50610696611803565b6040516106a391906145db565b60405180910390f35b3480156106b857600080fd5b506106c161182d565b6040516106ce919061465d565b60405180910390f35b3480156106e357600080fd5b506106fe60048036038101906106f9919061397b565b6118bf565b005b34801561070c57600080fd5b50610715611a40565b005b34801561072357600080fd5b5061073e6004803603810190610739919061384c565b611ad9565b005b34801561074c57600080fd5b5061076760048036038101906107629190613900565b611be7565b005b610783600480360381019061077e9190613a86565b611c49565b005b34801561079157600080fd5b5061079a611ef0565b6040516107a7919061465d565b60405180910390f35b3480156107bc57600080fd5b506107d760048036038101906107d29190613a86565b611f7e565b6040516107e4919061465d565b60405180910390f35b3480156107f957600080fd5b50610814600480360381019061080f9190613875565b6120d7565b6040516108219190614642565b60405180910390f35b34801561083657600080fd5b5061083f61216b565b60405161084c9190614642565b60405180910390f35b34801561086157600080fd5b5061086a61217e565b005b34801561087857600080fd5b50610893600480360381019061088e9190613a45565b612226565b005b3480156108a157600080fd5b506108bc60048036038101906108b7919061384c565b6122bc565b005b3480156108ca57600080fd5b506108d36123b4565b6040516108e091906149ff565b60405180910390f35b3480156108f557600080fd5b50610910600480360381019061090b9190613a45565b6123ba565b005b600061091d82612450565b9050919050565b60606000805461093390614cce565b80601f016020809104026020016040519081016040528092919081815260200182805461095f90614cce565b80156109ac5780601f10610981576101008083540402835291602001916109ac565b820191906000526020600020905b81548152906001019060200180831161098f57829003601f168201915b5050505050905090565b60006109c1826124ca565b610a00576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109f7906148bf565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600e8054610a4890614cce565b80601f0160208091040260200160405190810160405280929190818152602001828054610a7490614cce565b8015610ac15780601f10610a9657610100808354040283529160200191610ac1565b820191906000526020600020905b815481529060010190602001808311610aa457829003601f168201915b505050505081565b6000610ad4826111ef565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3c9061495f565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b64612536565b73ffffffffffffffffffffffffffffffffffffffff161480610b935750610b9281610b8d612536565b6120d7565b5b610bd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc99061481f565b60405180910390fd5b610bdc838361253e565b505050565b601481565b6000600880549050905090565b600d60019054906101000a900460ff1681565b610c17610c11612536565b826125f7565b610c56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4d906149bf565b60405180910390fd5b610c618383836126d5565b505050565b610c6e612536565b73ffffffffffffffffffffffffffffffffffffffff16610c8c611803565b73ffffffffffffffffffffffffffffffffffffffff1614610ce2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd9906148df565b60405180910390fd5b6000610cec610be6565b905060648110610d31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d28906148ff565b60405180910390fd5b60005b6064811015610d6557610d52338284610d4d9190614b03565b612931565b8080610d5d90614d00565b915050610d34565b5050565b6000610d74836116b2565b8210610db5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dac9061469f565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610e16612536565b73ffffffffffffffffffffffffffffffffffffffff16610e34611803565b73ffffffffffffffffffffffffffffffffffffffff1614610e8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e81906148df565b60405180910390fd5b6001601160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055507fc8651250df7c4c306e2bd9eb8d5a8e9a422a3101fb96cfa7f8e0c3a7df3b9b5181604051610f1191906145db565b60405180910390a150565b610f24612536565b73ffffffffffffffffffffffffffffffffffffffff16610f42611803565b73ffffffffffffffffffffffffffffffffffffffff1614610f98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8f906148df565b60405180910390fd5b600d60009054906101000a900460ff1615600d60006101000a81548160ff021916908315150217905550565b610fcc612536565b73ffffffffffffffffffffffffffffffffffffffff16610fea611803565b73ffffffffffffffffffffffffffffffffffffffff1614611040576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611037906148df565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f1935050505015801561108b573d6000803e3d6000fd5b5050565b6110aa83838360405180602001604052806000815250611be7565b505050565b60006110b9610be6565b82106110fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f1906149df565b60405180910390fd5b60088281548110611134577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b600d60029054906101000a900460ff1681565b611161612536565b73ffffffffffffffffffffffffffffffffffffffff1661117f611803565b73ffffffffffffffffffffffffffffffffffffffff16146111d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111cc906148df565b60405180910390fd5b80601090805190602001906111eb929190613670565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611298576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128f9061485f565b60405180910390fd5b80915050919050565b600b80546112ae90614cce565b80601f01602080910402602001604051908101604052809291908181526020018280546112da90614cce565b80156113275780601f106112fc57610100808354040283529160200191611327565b820191906000526020600020905b81548152906001019060200180831161130a57829003601f168201915b505050505081565b600d60019054906101000a900460ff1661137e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113759061499f565b60405180910390fd5b600d60009054906101000a900460ff16156113ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c5906147ff565b60405180910390fd5b6014811115611412576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114099061497f565b60405180910390fd5b601481601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461145f9190614b03565b11156114a0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114979061467f565b60405180910390fd5b600c54816114ac610be6565b6114b69190614b03565b11156114f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ee9061487f565b60405180910390fd5b348167011c37937e08000061150c9190614b8a565b111561154d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115449061479f565b60405180910390fd5b601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166115d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d0906146ff565b60405180910390fd5b60005b818110156116205760006115ee610be6565b9050600c546115fb610be6565b101561160c5761160b3382612931565b5b50808061161890614d00565b9150506115dc565b5080601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461166c9190614b03565b601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611723576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171a9061483f565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611772612536565b73ffffffffffffffffffffffffffffffffffffffff16611790611803565b73ffffffffffffffffffffffffffffffffffffffff16146117e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117dd906148df565b60405180910390fd5b6117f0600061294f565b565b601481565b67011c37937e08000081565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461183c90614cce565b80601f016020809104026020016040519081016040528092919081815260200182805461186890614cce565b80156118b55780601f1061188a576101008083540402835291602001916118b5565b820191906000526020600020905b81548152906001019060200180831161189857829003601f168201915b5050505050905090565b6118c7612536565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611935576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192c9061477f565b60405180910390fd5b8060056000611942612536565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166119ef612536565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611a349190614642565b60405180910390a35050565b611a48612536565b73ffffffffffffffffffffffffffffffffffffffff16611a66611803565b73ffffffffffffffffffffffffffffffffffffffff1614611abc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ab3906148df565b60405180910390fd5b6001600d60026101000a81548160ff021916908315150217905550565b611ae1612536565b73ffffffffffffffffffffffffffffffffffffffff16611aff611803565b73ffffffffffffffffffffffffffffffffffffffff1614611b55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4c906148df565b60405180910390fd5b6000601160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055507ff4d05032556b7a946737f39b95e07890ce0335b8d0ea912ac5b9ed95710dbb8381604051611bdc91906145db565b60405180910390a150565b611bf8611bf2612536565b836125f7565b611c37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2e906149bf565b60405180910390fd5b611c4384848484612a15565b50505050565b600d60009054906101000a900460ff16611c98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8f906147bf565b60405180910390fd5b6014811115611cdc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cd39061497f565b60405180910390fd5b601481601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611d299190614b03565b1115611d6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d619061473f565b60405180910390fd5b600c5481611d76610be6565b611d809190614b03565b1115611dc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611db89061487f565b60405180910390fd5b348167011c37937e080000611dd69190614b8a565b1115611e17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e0e9061479f565b60405180910390fd5b60005b81811015611e5e576000611e2c610be6565b9050600c54611e39610be6565b1015611e4a57611e493382612931565b5b508080611e5690614d00565b915050611e1a565b5080601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611eaa9190614b03565b601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555050565b600f8054611efd90614cce565b80601f0160208091040260200160405190810160405280929190818152602001828054611f2990614cce565b8015611f765780601f10611f4b57610100808354040283529160200191611f76565b820191906000526020600020905b815481529060010190602001808311611f5957829003601f168201915b505050505081565b6060611f89826124ca565b611fc8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fbf9061493f565b60405180910390fd5b60001515600d60029054906101000a900460ff161515141561207657600e8054611ff190614cce565b80601f016020809104026020016040519081016040528092919081815260200182805461201d90614cce565b801561206a5780601f1061203f5761010080835404028352916020019161206a565b820191906000526020600020905b81548152906001019060200180831161204d57829003601f168201915b505050505090506120d2565b6000612080612a71565b905060008151116120a057604051806020016040528060008152506120ce565b806120aa84612b03565b600f6040516020016120be939291906145aa565b6040516020818303038152906040525b9150505b919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600d60009054906101000a900460ff1681565b612186612536565b73ffffffffffffffffffffffffffffffffffffffff166121a4611803565b73ffffffffffffffffffffffffffffffffffffffff16146121fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121f1906148df565b60405180910390fd5b600d60019054906101000a900460ff1615600d60016101000a81548160ff021916908315150217905550565b61222e612536565b73ffffffffffffffffffffffffffffffffffffffff1661224c611803565b73ffffffffffffffffffffffffffffffffffffffff16146122a2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612299906148df565b60405180910390fd5b80600e90805190602001906122b8929190613670565b5050565b6122c4612536565b73ffffffffffffffffffffffffffffffffffffffff166122e2611803565b73ffffffffffffffffffffffffffffffffffffffff1614612338576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161232f906148df565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156123a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161239f906146df565b60405180910390fd5b6123b18161294f565b50565b600c5481565b6123c2612536565b73ffffffffffffffffffffffffffffffffffffffff166123e0611803565b73ffffffffffffffffffffffffffffffffffffffff1614612436576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161242d906148df565b60405180910390fd5b80600b908051906020019061244c929190613670565b5050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806124c357506124c282612cb0565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166125b1836111ef565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000612602826124ca565b612641576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612638906147df565b60405180910390fd5b600061264c836111ef565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806126bb57508373ffffffffffffffffffffffffffffffffffffffff166126a3846109b6565b73ffffffffffffffffffffffffffffffffffffffff16145b806126cc57506126cb81856120d7565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166126f5826111ef565b73ffffffffffffffffffffffffffffffffffffffff161461274b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127429061491f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156127bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127b29061475f565b60405180910390fd5b6127c6838383612d92565b6127d160008261253e565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546128219190614be4565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546128789190614b03565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b61294b828260405180602001604052806000815250612da2565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612a208484846126d5565b612a2c84848484612dfd565b612a6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a62906146bf565b60405180910390fd5b50505050565b606060108054612a8090614cce565b80601f0160208091040260200160405190810160405280929190818152602001828054612aac90614cce565b8015612af95780601f10612ace57610100808354040283529160200191612af9565b820191906000526020600020905b815481529060010190602001808311612adc57829003601f168201915b5050505050905090565b60606000821415612b4b576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612cab565b600082905060005b60008214612b7d578080612b6690614d00565b915050600a82612b769190614b59565b9150612b53565b60008167ffffffffffffffff811115612bbf577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612bf15781602001600182028036833780820191505090505b5090505b60008514612ca457600182612c0a9190614be4565b9150600a85612c199190614d49565b6030612c259190614b03565b60f81b818381518110612c61577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612c9d9190614b59565b9450612bf5565b8093505050505b919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612d7b57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612d8b5750612d8a82612f94565b5b9050919050565b612d9d838383612ffe565b505050565b612dac8383613112565b612db96000848484612dfd565b612df8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612def906146bf565b60405180910390fd5b505050565b6000612e1e8473ffffffffffffffffffffffffffffffffffffffff166132e0565b15612f87578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612e47612536565b8786866040518563ffffffff1660e01b8152600401612e6994939291906145f6565b602060405180830381600087803b158015612e8357600080fd5b505af1925050508015612eb457506040513d601f19601f82011682018060405250810190612eb19190613a1c565b60015b612f37573d8060008114612ee4576040519150601f19603f3d011682016040523d82523d6000602084013e612ee9565b606091505b50600081511415612f2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f26906146bf565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612f8c565b600190505b949350505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6130098383836132f3565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561304c57613047816132f8565b61308b565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461308a576130898382613341565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156130ce576130c9816134ae565b61310d565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461310c5761310b82826135f1565b5b5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613182576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131799061489f565b60405180910390fd5b61318b816124ca565b156131cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131c29061471f565b60405180910390fd5b6131d760008383612d92565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546132279190614b03565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161334e846116b2565b6133589190614be4565b905060006007600084815260200190815260200160002054905081811461343d576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506134c29190614be4565b9050600060096000848152602001908152602001600020549050600060088381548110613518577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060088381548110613560577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200181905550816009600083815260200190815260200160002081905550600960008581526020019081526020016000206000905560088054806135d5577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b60006135fc836116b2565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b82805461367c90614cce565b90600052602060002090601f01602090048101928261369e57600085556136e5565b82601f106136b757805160ff19168380011785556136e5565b828001600101855582156136e5579182015b828111156136e45782518255916020019190600101906136c9565b5b5090506136f291906136f6565b5090565b5b8082111561370f5760008160009055506001016136f7565b5090565b600061372661372184614a4b565b614a1a565b90508281526020810184848401111561373e57600080fd5b613749848285614c8c565b509392505050565b600061376461375f84614a7b565b614a1a565b90508281526020810184848401111561377c57600080fd5b613787848285614c8c565b509392505050565b60008135905061379e81614e47565b92915050565b6000813590506137b381614e5e565b92915050565b6000813590506137c881614e75565b92915050565b6000815190506137dd81614e75565b92915050565b600082601f8301126137f457600080fd5b8135613804848260208601613713565b91505092915050565b600082601f83011261381e57600080fd5b813561382e848260208601613751565b91505092915050565b60008135905061384681614e8c565b92915050565b60006020828403121561385e57600080fd5b600061386c8482850161378f565b91505092915050565b6000806040838503121561388857600080fd5b60006138968582860161378f565b92505060206138a78582860161378f565b9150509250929050565b6000806000606084860312156138c657600080fd5b60006138d48682870161378f565b93505060206138e58682870161378f565b92505060406138f686828701613837565b9150509250925092565b6000806000806080858703121561391657600080fd5b60006139248782880161378f565b94505060206139358782880161378f565b935050604061394687828801613837565b925050606085013567ffffffffffffffff81111561396357600080fd5b61396f878288016137e3565b91505092959194509250565b6000806040838503121561398e57600080fd5b600061399c8582860161378f565b92505060206139ad858286016137a4565b9150509250929050565b600080604083850312156139ca57600080fd5b60006139d88582860161378f565b92505060206139e985828601613837565b9150509250929050565b600060208284031215613a0557600080fd5b6000613a13848285016137b9565b91505092915050565b600060208284031215613a2e57600080fd5b6000613a3c848285016137ce565b91505092915050565b600060208284031215613a5757600080fd5b600082013567ffffffffffffffff811115613a7157600080fd5b613a7d8482850161380d565b91505092915050565b600060208284031215613a9857600080fd5b6000613aa684828501613837565b91505092915050565b613ab881614c18565b82525050565b613ac781614c2a565b82525050565b6000613ad882614ac0565b613ae28185614ad6565b9350613af2818560208601614c9b565b613afb81614e36565b840191505092915050565b6000613b1182614acb565b613b1b8185614ae7565b9350613b2b818560208601614c9b565b613b3481614e36565b840191505092915050565b6000613b4a82614acb565b613b548185614af8565b9350613b64818560208601614c9b565b80840191505092915050565b60008154613b7d81614cce565b613b878186614af8565b94506001821660008114613ba25760018114613bb357613be6565b60ff19831686528186019350613be6565b613bbc85614aab565b60005b83811015613bde57815481890152600182019150602081019050613bbf565b838801955050505b50505092915050565b6000613bfc602083614ae7565b91507f4578636565646564206d6178207075726368617365207065722077616c6c65746000830152602082019050919050565b6000613c3c602b83614ae7565b91507f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008301527f74206f6620626f756e64730000000000000000000000000000000000000000006020830152604082019050919050565b6000613ca2603283614ae7565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b6000613d08602683614ae7565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613d6e602f83614ae7565b91507f596f7520617265206e6f7420616c6c6f77656420746f206d696e74206265666f60008301527f726520726567756c61722073616c6500000000000000000000000000000000006020830152604082019050919050565b6000613dd4601c83614ae7565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b6000613e14602683614ae7565b91507f4578636565646564206d617820746f6b656e207075726368617365207065722060008301527f77616c6c657400000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613e7a602483614ae7565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613ee0601983614ae7565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b6000613f20601f83614ae7565b91507f45746865722076616c75652073656e74206973206e6f7420636f7272656374006000830152602082019050919050565b6000613f60601b83614ae7565b91507f53616c65206d7573742062652061637469766520746f206d696e7400000000006000830152602082019050919050565b6000613fa0602c83614ae7565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000614006602783614ae7565b91507f436f756c64206e6f74207072652d6d696e742061667465722073616c6520697360008301527f20616374697665000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061406c603883614ae7565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b60006140d2602a83614ae7565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b6000614138602983614ae7565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b600061419e602083614ae7565b91507f507572636861736520776f756c6420657863656564206d617820737570706c796000830152602082019050919050565b60006141de602083614ae7565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b600061421e602c83614ae7565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000614284602083614ae7565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b60006142c4603a83614ae7565b91507f4d6f7265207468616e2031303020746f6b656e73206861766520616c7265616460008301527f79206265656e207265736572766564206f72206d696e7465642e0000000000006020830152604082019050919050565b600061432a602983614ae7565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000614390602f83614ae7565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b60006143f6602183614ae7565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061445c601b83614ae7565b91507f4578636565646564206d617820746f6b656e20707572636861736500000000006000830152602082019050919050565b600061449c601e83614ae7565b91507f50726553616c65206d7573742062652061637469766520746f206d696e7400006000830152602082019050919050565b60006144dc603183614ae7565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b6000614542602c83614ae7565b91507f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008301527f7574206f6620626f756e647300000000000000000000000000000000000000006020830152604082019050919050565b6145a481614c82565b82525050565b60006145b68286613b3f565b91506145c28285613b3f565b91506145ce8284613b70565b9150819050949350505050565b60006020820190506145f06000830184613aaf565b92915050565b600060808201905061460b6000830187613aaf565b6146186020830186613aaf565b614625604083018561459b565b81810360608301526146378184613acd565b905095945050505050565b60006020820190506146576000830184613abe565b92915050565b600060208201905081810360008301526146778184613b06565b905092915050565b6000602082019050818103600083015261469881613bef565b9050919050565b600060208201905081810360008301526146b881613c2f565b9050919050565b600060208201905081810360008301526146d881613c95565b9050919050565b600060208201905081810360008301526146f881613cfb565b9050919050565b6000602082019050818103600083015261471881613d61565b9050919050565b6000602082019050818103600083015261473881613dc7565b9050919050565b6000602082019050818103600083015261475881613e07565b9050919050565b6000602082019050818103600083015261477881613e6d565b9050919050565b6000602082019050818103600083015261479881613ed3565b9050919050565b600060208201905081810360008301526147b881613f13565b9050919050565b600060208201905081810360008301526147d881613f53565b9050919050565b600060208201905081810360008301526147f881613f93565b9050919050565b6000602082019050818103600083015261481881613ff9565b9050919050565b600060208201905081810360008301526148388161405f565b9050919050565b60006020820190508181036000830152614858816140c5565b9050919050565b600060208201905081810360008301526148788161412b565b9050919050565b6000602082019050818103600083015261489881614191565b9050919050565b600060208201905081810360008301526148b8816141d1565b9050919050565b600060208201905081810360008301526148d881614211565b9050919050565b600060208201905081810360008301526148f881614277565b9050919050565b60006020820190508181036000830152614918816142b7565b9050919050565b600060208201905081810360008301526149388161431d565b9050919050565b6000602082019050818103600083015261495881614383565b9050919050565b60006020820190508181036000830152614978816143e9565b9050919050565b600060208201905081810360008301526149988161444f565b9050919050565b600060208201905081810360008301526149b88161448f565b9050919050565b600060208201905081810360008301526149d8816144cf565b9050919050565b600060208201905081810360008301526149f881614535565b9050919050565b6000602082019050614a14600083018461459b565b92915050565b6000604051905081810181811067ffffffffffffffff82111715614a4157614a40614e07565b5b8060405250919050565b600067ffffffffffffffff821115614a6657614a65614e07565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff821115614a9657614a95614e07565b5b601f19601f8301169050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000614b0e82614c82565b9150614b1983614c82565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614b4e57614b4d614d7a565b5b828201905092915050565b6000614b6482614c82565b9150614b6f83614c82565b925082614b7f57614b7e614da9565b5b828204905092915050565b6000614b9582614c82565b9150614ba083614c82565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614bd957614bd8614d7a565b5b828202905092915050565b6000614bef82614c82565b9150614bfa83614c82565b925082821015614c0d57614c0c614d7a565b5b828203905092915050565b6000614c2382614c62565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614cb9578082015181840152602081019050614c9e565b83811115614cc8576000848401525b50505050565b60006002820490506001821680614ce657607f821691505b60208210811415614cfa57614cf9614dd8565b5b50919050565b6000614d0b82614c82565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614d3e57614d3d614d7a565b5b600182019050919050565b6000614d5482614c82565b9150614d5f83614c82565b925082614d6f57614d6e614da9565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b614e5081614c18565b8114614e5b57600080fd5b50565b614e6781614c2a565b8114614e7257600080fd5b50565b614e7e81614c36565b8114614e8957600080fd5b50565b614e9581614c82565b8114614ea057600080fd5b5056fea2646970667358221220c2b7e70aef21c0e5236d050d37d6233ad67b7fd8b40d1c1360a6bd63317873f664736f6c63430008000033

Deployed Bytecode Sourcemap

50013:5477:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51329:179;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28399:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29967:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50476:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29490:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50222:42;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44441:113;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50399:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30857:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52543:295;;;;;;;;;;;;;:::i;:::-;;44109:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53049:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52846:89;;;;;;;;;;;;;:::i;:::-;;55342:143;;;;;;;;;;;;;:::i;:::-;;31267:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44631:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50441:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51516:111;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28093:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50118:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53390:1038;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27823:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41243:94;;;;;;;;;;;;;:::i;:::-;;50271:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50149:54;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40592:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28568:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30260:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50929:69;;;;;;;;;;;;;:::i;:::-;;53216:162;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31523:328;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54440:844;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50511:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51876:565;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30626:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50360:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52943:98;;;;;;;;;;;;;:::i;:::-;;51006:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41492:192;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50321:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51760:108;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51329:179;51440:4;51464:36;51488:11;51464:23;:36::i;:::-;51457:43;;51329:179;;;:::o;28399:100::-;28453:13;28486:5;28479:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28399:100;:::o;29967:221::-;30043:7;30071:16;30079:7;30071;:16::i;:::-;30063:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;30156:15;:24;30172:7;30156:24;;;;;;;;;;;;;;;;;;;;;30149:31;;29967:221;;;:::o;50476:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;29490:411::-;29571:13;29587:23;29602:7;29587:14;:23::i;:::-;29571:39;;29635:5;29629:11;;:2;:11;;;;29621:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;29729:5;29713:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;29738:37;29755:5;29762:12;:10;:12::i;:::-;29738:16;:37::i;:::-;29713:62;29691:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;29872:21;29881:2;29885:7;29872:8;:21::i;:::-;29490:411;;;:::o;50222:42::-;50262:2;50222:42;:::o;44441:113::-;44502:7;44529:10;:17;;;;44522:24;;44441:113;:::o;50399:35::-;;;;;;;;;;;;;:::o;30857:339::-;31052:41;31071:12;:10;:12::i;:::-;31085:7;31052:18;:41::i;:::-;31044:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;31160:28;31170:4;31176:2;31180:7;31160:9;:28::i;:::-;30857:339;;;:::o;52543:295::-;40823:12;:10;:12::i;:::-;40812:23;;:7;:5;:7::i;:::-;:23;;;40804:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52596:11:::1;52610:13;:11;:13::i;:::-;52596:27;;52651:3;52642:6;:12;52634:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;52728:6;52745:86;52761:3;52757:1;:7;52745:86;;;52786:33;52796:10;52817:1;52808:6;:10;;;;:::i;:::-;52786:9;:33::i;:::-;52766:3;;;;;:::i;:::-;;;;52745:86;;;40883:1;;52543:295::o:0;44109:256::-;44206:7;44242:23;44259:5;44242:16;:23::i;:::-;44234:5;:31;44226:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;44331:12;:19;44344:5;44331:19;;;;;;;;;;;;;;;:26;44351:5;44331:26;;;;;;;;;;;;44324:33;;44109:256;;;;:::o;53049:155::-;40823:12;:10;:12::i;:::-;40812:23;;:7;:5;:7::i;:::-;:23;;;40804:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53149:4:::1;53123:14;:23;53138:7;53123:23;;;;;;;;;;;;;;;;:30;;;;;;;;;;;;;;;;;;53169:27;53188:7;53169:27;;;;;;:::i;:::-;;;;;;;;53049:155:::0;:::o;52846:89::-;40823:12;:10;:12::i;:::-;40812:23;;:7;:5;:7::i;:::-;:23;;;40804:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52915:12:::1;;;;;;;;;;;52914:13;52899:12;;:28;;;;;;;;;;;;;;;;;;52846:89::o:0;55342:143::-;40823:12;:10;:12::i;:::-;40812:23;;:7;:5;:7::i;:::-;:23;;;40804:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;55390:15:::1;55408:21;55390:39;;55448:10;55440:28;;:37;55469:7;55440:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;40883:1;55342:143::o:0;31267:185::-;31405:39;31422:4;31428:2;31432:7;31405:39;;;;;;;;;;;;:16;:39::i;:::-;31267:185;;;:::o;44631:233::-;44706:7;44742:30;:28;:30::i;:::-;44734:5;:38;44726:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;44839:10;44850:5;44839:17;;;;;;;;;;;;;;;;;;;;;;;;44832:24;;44631:233;;;:::o;50441:28::-;;;;;;;;;;;;;:::o;51516:111::-;40823:12;:10;:12::i;:::-;40812:23;;:7;:5;:7::i;:::-;:23;;;40804:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51611:8:::1;51592:16;:27;;;;;;;;;;;;:::i;:::-;;51516:111:::0;:::o;28093:239::-;28165:7;28185:13;28201:7;:16;28209:7;28201:16;;;;;;;;;;;;;;;;;;;;;28185:32;;28253:1;28236:19;;:5;:19;;;;28228:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;28319:5;28312:12;;;28093:239;;;:::o;50118:24::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;53390:1038::-;53467:15;;;;;;;;;;;53459:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;53537:12;;;;;;;;;;;53536:13;53528:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;50262:2;53612:14;:34;;53604:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;50312:2;53728:14;53697:16;:28;53714:10;53697:28;;;;;;;;;;;;;;;;:45;;;;:::i;:::-;:66;;53689:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;53853:10;;53835:14;53819:13;:11;:13::i;:::-;:30;;;;:::i;:::-;:44;;53811:89;;;;;;;;;;;;:::i;:::-;;;;;;;;;53950:9;53932:14;50186:17;53919:27;;;;:::i;:::-;:40;;53911:84;;;;;;;;;;;;:::i;:::-;;;;;;;;;54014:14;:26;54029:10;54014:26;;;;;;;;;;;;;;;;;;;;;;;;;54006:86;;;;;;;;;;;;:::i;:::-;;;;;;;;;54117:6;54113:211;54133:14;54129:1;:18;54113:211;;;54169:14;54186:13;:11;:13::i;:::-;54169:30;;54234:10;;54218:13;:11;:13::i;:::-;:26;54214:99;;;54265:32;54275:10;54287:9;54265;:32::i;:::-;54214:99;54113:211;54149:3;;;;;:::i;:::-;;;;54113:211;;;;54406:14;54375:16;:28;54392:10;54375:28;;;;;;;;;;;;;;;;:45;;;;:::i;:::-;54344:16;:28;54361:10;54344:28;;;;;;;;;;;;;;;:76;;;;53390:1038;:::o;27823:208::-;27895:7;27940:1;27923:19;;:5;:19;;;;27915:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;28007:9;:16;28017:5;28007:16;;;;;;;;;;;;;;;;28000:23;;27823:208;;;:::o;41243:94::-;40823:12;:10;:12::i;:::-;40812:23;;:7;:5;:7::i;:::-;:23;;;40804:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41308:21:::1;41326:1;41308:9;:21::i;:::-;41243:94::o:0;50271:43::-;50312:2;50271:43;:::o;50149:54::-;50186:17;50149:54;:::o;40592:87::-;40638:7;40665:6;;;;;;;;;;;40658:13;;40592:87;:::o;28568:104::-;28624:13;28657:7;28650:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28568:104;:::o;30260:295::-;30375:12;:10;:12::i;:::-;30363:24;;:8;:24;;;;30355:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;30475:8;30430:18;:32;30449:12;:10;:12::i;:::-;30430:32;;;;;;;;;;;;;;;:42;30463:8;30430:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;30528:8;30499:48;;30514:12;:10;:12::i;:::-;30499:48;;;30538:8;30499:48;;;;;;:::i;:::-;;;;;;;;30260:295;;:::o;50929:69::-;40823:12;:10;:12::i;:::-;40812:23;;:7;:5;:7::i;:::-;:23;;;40804:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50986:4:::1;50975:8;;:15;;;;;;;;;;;;;;;;;;50929:69::o:0;53216:162::-;40823:12;:10;:12::i;:::-;40812:23;;:7;:5;:7::i;:::-;:23;;;40804:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53319:5:::1;53293:14;:23;53308:7;53293:23;;;;;;;;;;;;;;;;:31;;;;;;;;;;;;;;;;;;53340:30;53362:7;53340:30;;;;;;:::i;:::-;;;;;;;;53216:162:::0;:::o;31523:328::-;31698:41;31717:12;:10;:12::i;:::-;31731:7;31698:18;:41::i;:::-;31690:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;31804:39;31818:4;31824:2;31828:7;31837:5;31804:13;:39::i;:::-;31523:328;;;;:::o;54440:844::-;54514:12;;;;;;;;;;;54506:52;;;;;;;;;;;;:::i;:::-;;;;;;;;;50262:2;54577:14;:34;;54569:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;50312:2;54693:14;54662:16;:28;54679:10;54662:28;;;;;;;;;;;;;;;;:45;;;;:::i;:::-;:66;;54654:117;;;;;;;;;;;;:::i;:::-;;;;;;;;;54824:10;;54806:14;54790:13;:11;:13::i;:::-;:30;;;;:::i;:::-;:44;;54782:89;;;;;;;;;;;;:::i;:::-;;;;;;;;;54921:9;54903:14;50186:17;54890:27;;;;:::i;:::-;:40;;54882:84;;;;;;;;;;;;:::i;:::-;;;;;;;;;54983:6;54979:211;54999:14;54995:1;:18;54979:211;;;55035:14;55052:13;:11;:13::i;:::-;55035:30;;55100:10;;55084:13;:11;:13::i;:::-;:26;55080:99;;;55131:32;55141:10;55153:9;55131;:32::i;:::-;55080:99;54979:211;55015:3;;;;;:::i;:::-;;;;54979:211;;;;55262:14;55231:16;:28;55248:10;55231:28;;;;;;;;;;;;;;;;:45;;;;:::i;:::-;55200:16;:28;55217:10;55200:28;;;;;;;;;;;;;;;:76;;;;54440:844;:::o;50511:37::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;51876:565::-;51994:13;52043:16;52051:7;52043;:16::i;:::-;52025:105;;;;;;;;;;;;:::i;:::-;;;;;;;;;52166:5;52154:17;;:8;;;;;;;;;;;:17;;;52151:70;;;52195:14;52188:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52151:70;52233:28;52264:10;:8;:10::i;:::-;52233:41;;52323:1;52298:14;52292:28;:32;:141;;;;;;;;;;;;;;;;;52364:14;52380:18;:7;:16;:18::i;:::-;52400:13;52347:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;52292:141;52285:148;;;51876:565;;;;:::o;30626:164::-;30723:4;30747:18;:25;30766:5;30747:25;;;;;;;;;;;;;;;:35;30773:8;30747:35;;;;;;;;;;;;;;;;;;;;;;;;;30740:42;;30626:164;;;;:::o;50360:32::-;;;;;;;;;;;;;:::o;52943:98::-;40823:12;:10;:12::i;:::-;40812:23;;:7;:5;:7::i;:::-;:23;;;40804:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53018:15:::1;;;;;;;;;;;53017:16;52999:15;;:34;;;;;;;;;;;;;;;;;;52943:98::o:0;51006:126::-;40823:12;:10;:12::i;:::-;40812:23;;:7;:5;:7::i;:::-;:23;;;40804:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51109:15:::1;51092:14;:32;;;;;;;;;;;;:::i;:::-;;51006:126:::0;:::o;41492:192::-;40823:12;:10;:12::i;:::-;40812:23;;:7;:5;:7::i;:::-;:23;;;40804:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41601:1:::1;41581:22;;:8;:22;;;;41573:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;41657:19;41667:8;41657:9;:19::i;:::-;41492:192:::0;:::o;50321:32::-;;;;:::o;51760:108::-;40823:12;:10;:12::i;:::-;40812:23;;:7;:5;:7::i;:::-;:23;;;40804:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51850:10:::1;51837;:23;;;;;;;;;;;;:::i;:::-;;51760:108:::0;:::o;43801:224::-;43903:4;43942:35;43927:50;;;:11;:50;;;;:90;;;;43981:36;44005:11;43981:23;:36::i;:::-;43927:90;43920:97;;43801:224;;;:::o;33361:127::-;33426:4;33478:1;33450:30;;:7;:16;33458:7;33450:16;;;;;;;;;;;;;;;;;;;;;:30;;;;33443:37;;33361:127;;;:::o;15912:98::-;15965:7;15992:10;15985:17;;15912:98;:::o;37343:174::-;37445:2;37418:15;:24;37434:7;37418:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;37501:7;37497:2;37463:46;;37472:23;37487:7;37472:14;:23::i;:::-;37463:46;;;;;;;;;;;;37343:174;;:::o;33655:348::-;33748:4;33773:16;33781:7;33773;:16::i;:::-;33765:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;33849:13;33865:23;33880:7;33865:14;:23::i;:::-;33849:39;;33918:5;33907:16;;:7;:16;;;:51;;;;33951:7;33927:31;;:20;33939:7;33927:11;:20::i;:::-;:31;;;33907:51;:87;;;;33962:32;33979:5;33986:7;33962:16;:32::i;:::-;33907:87;33899:96;;;33655:348;;;;:::o;36647:578::-;36806:4;36779:31;;:23;36794:7;36779:14;:23::i;:::-;:31;;;36771:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;36889:1;36875:16;;:2;:16;;;;36867:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;36945:39;36966:4;36972:2;36976:7;36945:20;:39::i;:::-;37049:29;37066:1;37070:7;37049:8;:29::i;:::-;37110:1;37091:9;:15;37101:4;37091:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;37139:1;37122:9;:13;37132:2;37122:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;37170:2;37151:7;:16;37159:7;37151:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;37209:7;37205:2;37190:27;;37199:4;37190:27;;;;;;;;;;;;36647:578;;;:::o;34345:110::-;34421:26;34431:2;34435:7;34421:26;;;;;;;;;;;;:9;:26::i;:::-;34345:110;;:::o;41692:173::-;41748:16;41767:6;;;;;;;;;;;41748:25;;41793:8;41784:6;;:17;;;;;;;;;;;;;;;;;;41848:8;41817:40;;41838:8;41817:40;;;;;;;;;;;;41692:173;;:::o;32733:315::-;32890:28;32900:4;32906:2;32910:7;32890:9;:28::i;:::-;32937:48;32960:4;32966:2;32970:7;32979:5;32937:22;:48::i;:::-;32929:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;32733:315;;;;:::o;51635:117::-;51695:13;51728:16;51721:23;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51635:117;:::o;23393:723::-;23449:13;23679:1;23670:5;:10;23666:53;;;23697:10;;;;;;;;;;;;;;;;;;;;;23666:53;23729:12;23744:5;23729:20;;23760:14;23785:78;23800:1;23792:4;:9;23785:78;;23818:8;;;;;:::i;:::-;;;;23849:2;23841:10;;;;;:::i;:::-;;;23785:78;;;23873:19;23905:6;23895:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23873:39;;23923:154;23939:1;23930:5;:10;23923:154;;23967:1;23957:11;;;;;:::i;:::-;;;24034:2;24026:5;:10;;;;:::i;:::-;24013:2;:24;;;;:::i;:::-;24000:39;;23983:6;23990;23983:14;;;;;;;;;;;;;;;;;;;:56;;;;;;;;;;;24063:2;24054:11;;;;;:::i;:::-;;;23923:154;;;24101:6;24087:21;;;;;23393:723;;;;:::o;27454:305::-;27556:4;27608:25;27593:40;;;:11;:40;;;;:105;;;;27665:33;27650:48;;;:11;:48;;;;27593:105;:158;;;;27715:36;27739:11;27715:23;:36::i;:::-;27593:158;27573:178;;27454:305;;;:::o;51140:181::-;51268:45;51295:4;51301:2;51305:7;51268:26;:45::i;:::-;51140:181;;;:::o;34682:321::-;34812:18;34818:2;34822:7;34812:5;:18::i;:::-;34863:54;34894:1;34898:2;34902:7;34911:5;34863:22;:54::i;:::-;34841:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;34682:321;;;:::o;38082:803::-;38237:4;38258:15;:2;:13;;;:15::i;:::-;38254:624;;;38310:2;38294:36;;;38331:12;:10;:12::i;:::-;38345:4;38351:7;38360:5;38294:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;38290:533;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38557:1;38540:6;:13;:18;38536:272;;;38583:60;;;;;;;;;;:::i;:::-;;;;;;;;38536:272;38758:6;38752:13;38743:6;38739:2;38735:15;38728:38;38290:533;38427:45;;;38417:55;;;:6;:55;;;;38410:62;;;;;38254:624;38862:4;38855:11;;38082:803;;;;;;;:::o;25954:157::-;26039:4;26078:25;26063:40;;;:11;:40;;;;26056:47;;25954:157;;;:::o;45477:589::-;45621:45;45648:4;45654:2;45658:7;45621:26;:45::i;:::-;45699:1;45683:18;;:4;:18;;;45679:187;;;45718:40;45750:7;45718:31;:40::i;:::-;45679:187;;;45788:2;45780:10;;:4;:10;;;45776:90;;45807:47;45840:4;45846:7;45807:32;:47::i;:::-;45776:90;45679:187;45894:1;45880:16;;:2;:16;;;45876:183;;;45913:45;45950:7;45913:36;:45::i;:::-;45876:183;;;45986:4;45980:10;;:2;:10;;;45976:83;;46007:40;46035:2;46039:7;46007:27;:40::i;:::-;45976:83;45876:183;45477:589;;;:::o;35339:382::-;35433:1;35419:16;;:2;:16;;;;35411:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;35492:16;35500:7;35492;:16::i;:::-;35491:17;35483:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;35554:45;35583:1;35587:2;35591:7;35554:20;:45::i;:::-;35629:1;35612:9;:13;35622:2;35612:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;35660:2;35641:7;:16;35649:7;35641:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;35705:7;35701:2;35680:33;;35697:1;35680:33;;;;;;;;;;;;35339:382;;:::o;8168:387::-;8228:4;8436:12;8503:7;8491:20;8483:28;;8546:1;8539:4;:8;8532:15;;;8168:387;;;:::o;39457:126::-;;;;:::o;46789:164::-;46893:10;:17;;;;46866:15;:24;46882:7;46866:24;;;;;;;;;;;:44;;;;46921:10;46937:7;46921:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46789:164;:::o;47580:988::-;47846:22;47896:1;47871:22;47888:4;47871:16;:22::i;:::-;:26;;;;:::i;:::-;47846:51;;47908:18;47929:17;:26;47947:7;47929:26;;;;;;;;;;;;47908:47;;48076:14;48062:10;:28;48058:328;;48107:19;48129:12;:18;48142:4;48129:18;;;;;;;;;;;;;;;:34;48148:14;48129:34;;;;;;;;;;;;48107:56;;48213:11;48180:12;:18;48193:4;48180:18;;;;;;;;;;;;;;;:30;48199:10;48180:30;;;;;;;;;;;:44;;;;48330:10;48297:17;:30;48315:11;48297:30;;;;;;;;;;;:43;;;;48058:328;;48482:17;:26;48500:7;48482:26;;;;;;;;;;;48475:33;;;48526:12;:18;48539:4;48526:18;;;;;;;;;;;;;;;:34;48545:14;48526:34;;;;;;;;;;;48519:41;;;47580:988;;;;:::o;48863:1079::-;49116:22;49161:1;49141:10;:17;;;;:21;;;;:::i;:::-;49116:46;;49173:18;49194:15;:24;49210:7;49194:24;;;;;;;;;;;;49173:45;;49545:19;49567:10;49578:14;49567:26;;;;;;;;;;;;;;;;;;;;;;;;49545:48;;49631:11;49606:10;49617;49606:22;;;;;;;;;;;;;;;;;;;;;;;:36;;;;49742:10;49711:15;:28;49727:11;49711:28;;;;;;;;;;;:41;;;;49883:15;:24;49899:7;49883:24;;;;;;;;;;;49876:31;;;49918:10;:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48863:1079;;;;:::o;46367:221::-;46452:14;46469:20;46486:2;46469:16;:20::i;:::-;46452:37;;46527:7;46500:12;:16;46513:2;46500:16;;;;;;;;;;;;;;;:24;46517:6;46500:24;;;;;;;;;;;:34;;;;46574:6;46545:17;:26;46563:7;46545:26;;;;;;;;;;;:35;;;;46367:221;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:342:1:-;;109:64;124:48;165:6;124:48;:::i;:::-;109:64;:::i;:::-;100:73;;196:6;189:5;182:21;234:4;227:5;223:16;272:3;263:6;258:3;254:16;251:25;248:2;;;289:1;286;279:12;248:2;302:41;336:6;331:3;326;302:41;:::i;:::-;90:259;;;;;;:::o;355:344::-;;458:65;473:49;515:6;473:49;:::i;:::-;458:65;:::i;:::-;449:74;;546:6;539:5;532:21;584:4;577:5;573:16;622:3;613:6;608:3;604:16;601:25;598:2;;;639:1;636;629:12;598:2;652:41;686:6;681:3;676;652:41;:::i;:::-;439:260;;;;;;:::o;705:139::-;;789:6;776:20;767:29;;805:33;832:5;805:33;:::i;:::-;757:87;;;;:::o;850:133::-;;931:6;918:20;909:29;;947:30;971:5;947:30;:::i;:::-;899:84;;;;:::o;989:137::-;;1072:6;1059:20;1050:29;;1088:32;1114:5;1088:32;:::i;:::-;1040:86;;;;:::o;1132:141::-;;1219:6;1213:13;1204:22;;1235:32;1261:5;1235:32;:::i;:::-;1194:79;;;;:::o;1292:271::-;;1396:3;1389:4;1381:6;1377:17;1373:27;1363:2;;1414:1;1411;1404:12;1363:2;1454:6;1441:20;1479:78;1553:3;1545:6;1538:4;1530:6;1526:17;1479:78;:::i;:::-;1470:87;;1353:210;;;;;:::o;1583:273::-;;1688:3;1681:4;1673:6;1669:17;1665:27;1655:2;;1706:1;1703;1696:12;1655:2;1746:6;1733:20;1771:79;1846:3;1838:6;1831:4;1823:6;1819:17;1771:79;:::i;:::-;1762:88;;1645:211;;;;;:::o;1862:139::-;;1946:6;1933:20;1924:29;;1962:33;1989:5;1962:33;:::i;:::-;1914:87;;;;:::o;2007:262::-;;2115:2;2103:9;2094:7;2090:23;2086:32;2083:2;;;2131:1;2128;2121:12;2083:2;2174:1;2199:53;2244:7;2235:6;2224:9;2220:22;2199:53;:::i;:::-;2189:63;;2145:117;2073:196;;;;:::o;2275:407::-;;;2400:2;2388:9;2379:7;2375:23;2371:32;2368:2;;;2416:1;2413;2406:12;2368:2;2459:1;2484:53;2529:7;2520:6;2509:9;2505:22;2484:53;:::i;:::-;2474:63;;2430:117;2586:2;2612:53;2657:7;2648:6;2637:9;2633:22;2612:53;:::i;:::-;2602:63;;2557:118;2358:324;;;;;:::o;2688:552::-;;;;2830:2;2818:9;2809:7;2805:23;2801:32;2798:2;;;2846:1;2843;2836:12;2798:2;2889:1;2914:53;2959:7;2950:6;2939:9;2935:22;2914:53;:::i;:::-;2904:63;;2860:117;3016:2;3042:53;3087:7;3078:6;3067:9;3063:22;3042:53;:::i;:::-;3032:63;;2987:118;3144:2;3170:53;3215:7;3206:6;3195:9;3191:22;3170:53;:::i;:::-;3160:63;;3115:118;2788:452;;;;;:::o;3246:809::-;;;;;3414:3;3402:9;3393:7;3389:23;3385:33;3382:2;;;3431:1;3428;3421:12;3382:2;3474:1;3499:53;3544:7;3535:6;3524:9;3520:22;3499:53;:::i;:::-;3489:63;;3445:117;3601:2;3627:53;3672:7;3663:6;3652:9;3648:22;3627:53;:::i;:::-;3617:63;;3572:118;3729:2;3755:53;3800:7;3791:6;3780:9;3776:22;3755:53;:::i;:::-;3745:63;;3700:118;3885:2;3874:9;3870:18;3857:32;3916:18;3908:6;3905:30;3902:2;;;3948:1;3945;3938:12;3902:2;3976:62;4030:7;4021:6;4010:9;4006:22;3976:62;:::i;:::-;3966:72;;3828:220;3372:683;;;;;;;:::o;4061:401::-;;;4183:2;4171:9;4162:7;4158:23;4154:32;4151:2;;;4199:1;4196;4189:12;4151:2;4242:1;4267:53;4312:7;4303:6;4292:9;4288:22;4267:53;:::i;:::-;4257:63;;4213:117;4369:2;4395:50;4437:7;4428:6;4417:9;4413:22;4395:50;:::i;:::-;4385:60;;4340:115;4141:321;;;;;:::o;4468:407::-;;;4593:2;4581:9;4572:7;4568:23;4564:32;4561:2;;;4609:1;4606;4599:12;4561:2;4652:1;4677:53;4722:7;4713:6;4702:9;4698:22;4677:53;:::i;:::-;4667:63;;4623:117;4779:2;4805:53;4850:7;4841:6;4830:9;4826:22;4805:53;:::i;:::-;4795:63;;4750:118;4551:324;;;;;:::o;4881:260::-;;4988:2;4976:9;4967:7;4963:23;4959:32;4956:2;;;5004:1;5001;4994:12;4956:2;5047:1;5072:52;5116:7;5107:6;5096:9;5092:22;5072:52;:::i;:::-;5062:62;;5018:116;4946:195;;;;:::o;5147:282::-;;5265:2;5253:9;5244:7;5240:23;5236:32;5233:2;;;5281:1;5278;5271:12;5233:2;5324:1;5349:63;5404:7;5395:6;5384:9;5380:22;5349:63;:::i;:::-;5339:73;;5295:127;5223:206;;;;:::o;5435:375::-;;5553:2;5541:9;5532:7;5528:23;5524:32;5521:2;;;5569:1;5566;5559:12;5521:2;5640:1;5629:9;5625:17;5612:31;5670:18;5662:6;5659:30;5656:2;;;5702:1;5699;5692:12;5656:2;5730:63;5785:7;5776:6;5765:9;5761:22;5730:63;:::i;:::-;5720:73;;5583:220;5511:299;;;;:::o;5816:262::-;;5924:2;5912:9;5903:7;5899:23;5895:32;5892:2;;;5940:1;5937;5930:12;5892:2;5983:1;6008:53;6053:7;6044:6;6033:9;6029:22;6008:53;:::i;:::-;5998:63;;5954:117;5882:196;;;;:::o;6084:118::-;6171:24;6189:5;6171:24;:::i;:::-;6166:3;6159:37;6149:53;;:::o;6208:109::-;6289:21;6304:5;6289:21;:::i;:::-;6284:3;6277:34;6267:50;;:::o;6323:360::-;;6437:38;6469:5;6437:38;:::i;:::-;6491:70;6554:6;6549:3;6491:70;:::i;:::-;6484:77;;6570:52;6615:6;6610:3;6603:4;6596:5;6592:16;6570:52;:::i;:::-;6647:29;6669:6;6647:29;:::i;:::-;6642:3;6638:39;6631:46;;6413:270;;;;;:::o;6689:364::-;;6805:39;6838:5;6805:39;:::i;:::-;6860:71;6924:6;6919:3;6860:71;:::i;:::-;6853:78;;6940:52;6985:6;6980:3;6973:4;6966:5;6962:16;6940:52;:::i;:::-;7017:29;7039:6;7017:29;:::i;:::-;7012:3;7008:39;7001:46;;6781:272;;;;;:::o;7059:377::-;;7193:39;7226:5;7193:39;:::i;:::-;7248:89;7330:6;7325:3;7248:89;:::i;:::-;7241:96;;7346:52;7391:6;7386:3;7379:4;7372:5;7368:16;7346:52;:::i;:::-;7423:6;7418:3;7414:16;7407:23;;7169:267;;;;;:::o;7466:845::-;;7606:5;7600:12;7635:36;7661:9;7635:36;:::i;:::-;7687:89;7769:6;7764:3;7687:89;:::i;:::-;7680:96;;7807:1;7796:9;7792:17;7823:1;7818:137;;;;7969:1;7964:341;;;;7785:520;;7818:137;7902:4;7898:9;7887;7883:25;7878:3;7871:38;7938:6;7933:3;7929:16;7922:23;;7818:137;;7964:341;8031:38;8063:5;8031:38;:::i;:::-;8091:1;8105:154;8119:6;8116:1;8113:13;8105:154;;;8193:7;8187:14;8183:1;8178:3;8174:11;8167:35;8243:1;8234:7;8230:15;8219:26;;8141:4;8138:1;8134:12;8129:17;;8105:154;;;8288:6;8283:3;8279:16;8272:23;;7971:334;;7785:520;;7573:738;;;;;;:::o;8317:330::-;;8480:67;8544:2;8539:3;8480:67;:::i;:::-;8473:74;;8577:34;8573:1;8568:3;8564:11;8557:55;8638:2;8633:3;8629:12;8622:19;;8463:184;;;:::o;8653:375::-;;8816:67;8880:2;8875:3;8816:67;:::i;:::-;8809:74;;8913:34;8909:1;8904:3;8900:11;8893:55;8979:13;8974:2;8969:3;8965:12;8958:35;9019:2;9014:3;9010:12;9003:19;;8799:229;;;:::o;9034:382::-;;9197:67;9261:2;9256:3;9197:67;:::i;:::-;9190:74;;9294:34;9290:1;9285:3;9281:11;9274:55;9360:20;9355:2;9350:3;9346:12;9339:42;9407:2;9402:3;9398:12;9391:19;;9180:236;;;:::o;9422:370::-;;9585:67;9649:2;9644:3;9585:67;:::i;:::-;9578:74;;9682:34;9678:1;9673:3;9669:11;9662:55;9748:8;9743:2;9738:3;9734:12;9727:30;9783:2;9778:3;9774:12;9767:19;;9568:224;;;:::o;9798:379::-;;9961:67;10025:2;10020:3;9961:67;:::i;:::-;9954:74;;10058:34;10054:1;10049:3;10045:11;10038:55;10124:17;10119:2;10114:3;10110:12;10103:39;10168:2;10163:3;10159:12;10152:19;;9944:233;;;:::o;10183:326::-;;10346:67;10410:2;10405:3;10346:67;:::i;:::-;10339:74;;10443:30;10439:1;10434:3;10430:11;10423:51;10500:2;10495:3;10491:12;10484:19;;10329:180;;;:::o;10515:370::-;;10678:67;10742:2;10737:3;10678:67;:::i;:::-;10671:74;;10775:34;10771:1;10766:3;10762:11;10755:55;10841:8;10836:2;10831:3;10827:12;10820:30;10876:2;10871:3;10867:12;10860:19;;10661:224;;;:::o;10891:368::-;;11054:67;11118:2;11113:3;11054:67;:::i;:::-;11047:74;;11151:34;11147:1;11142:3;11138:11;11131:55;11217:6;11212:2;11207:3;11203:12;11196:28;11250:2;11245:3;11241:12;11234:19;;11037:222;;;:::o;11265:323::-;;11428:67;11492:2;11487:3;11428:67;:::i;:::-;11421:74;;11525:27;11521:1;11516:3;11512:11;11505:48;11579:2;11574:3;11570:12;11563:19;;11411:177;;;:::o;11594:329::-;;11757:67;11821:2;11816:3;11757:67;:::i;:::-;11750:74;;11854:33;11850:1;11845:3;11841:11;11834:54;11914:2;11909:3;11905:12;11898:19;;11740:183;;;:::o;11929:325::-;;12092:67;12156:2;12151:3;12092:67;:::i;:::-;12085:74;;12189:29;12185:1;12180:3;12176:11;12169:50;12245:2;12240:3;12236:12;12229:19;;12075:179;;;:::o;12260:376::-;;12423:67;12487:2;12482:3;12423:67;:::i;:::-;12416:74;;12520:34;12516:1;12511:3;12507:11;12500:55;12586:14;12581:2;12576:3;12572:12;12565:36;12627:2;12622:3;12618:12;12611:19;;12406:230;;;:::o;12642:371::-;;12805:67;12869:2;12864:3;12805:67;:::i;:::-;12798:74;;12902:34;12898:1;12893:3;12889:11;12882:55;12968:9;12963:2;12958:3;12954:12;12947:31;13004:2;12999:3;12995:12;12988:19;;12788:225;;;:::o;13019:388::-;;13182:67;13246:2;13241:3;13182:67;:::i;:::-;13175:74;;13279:34;13275:1;13270:3;13266:11;13259:55;13345:26;13340:2;13335:3;13331:12;13324:48;13398:2;13393:3;13389:12;13382:19;;13165:242;;;:::o;13413:374::-;;13576:67;13640:2;13635:3;13576:67;:::i;:::-;13569:74;;13673:34;13669:1;13664:3;13660:11;13653:55;13739:12;13734:2;13729:3;13725:12;13718:34;13778:2;13773:3;13769:12;13762:19;;13559:228;;;:::o;13793:373::-;;13956:67;14020:2;14015:3;13956:67;:::i;:::-;13949:74;;14053:34;14049:1;14044:3;14040:11;14033:55;14119:11;14114:2;14109:3;14105:12;14098:33;14157:2;14152:3;14148:12;14141:19;;13939:227;;;:::o;14172:330::-;;14335:67;14399:2;14394:3;14335:67;:::i;:::-;14328:74;;14432:34;14428:1;14423:3;14419:11;14412:55;14493:2;14488:3;14484:12;14477:19;;14318:184;;;:::o;14508:330::-;;14671:67;14735:2;14730:3;14671:67;:::i;:::-;14664:74;;14768:34;14764:1;14759:3;14755:11;14748:55;14829:2;14824:3;14820:12;14813:19;;14654:184;;;:::o;14844:376::-;;15007:67;15071:2;15066:3;15007:67;:::i;:::-;15000:74;;15104:34;15100:1;15095:3;15091:11;15084:55;15170:14;15165:2;15160:3;15156:12;15149:36;15211:2;15206:3;15202:12;15195:19;;14990:230;;;:::o;15226:330::-;;15389:67;15453:2;15448:3;15389:67;:::i;:::-;15382:74;;15486:34;15482:1;15477:3;15473:11;15466:55;15547:2;15542:3;15538:12;15531:19;;15372:184;;;:::o;15562:390::-;;15725:67;15789:2;15784:3;15725:67;:::i;:::-;15718:74;;15822:34;15818:1;15813:3;15809:11;15802:55;15888:28;15883:2;15878:3;15874:12;15867:50;15943:2;15938:3;15934:12;15927:19;;15708:244;;;:::o;15958:373::-;;16121:67;16185:2;16180:3;16121:67;:::i;:::-;16114:74;;16218:34;16214:1;16209:3;16205:11;16198:55;16284:11;16279:2;16274:3;16270:12;16263:33;16322:2;16317:3;16313:12;16306:19;;16104:227;;;:::o;16337:379::-;;16500:67;16564:2;16559:3;16500:67;:::i;:::-;16493:74;;16597:34;16593:1;16588:3;16584:11;16577:55;16663:17;16658:2;16653:3;16649:12;16642:39;16707:2;16702:3;16698:12;16691:19;;16483:233;;;:::o;16722:365::-;;16885:67;16949:2;16944:3;16885:67;:::i;:::-;16878:74;;16982:34;16978:1;16973:3;16969:11;16962:55;17048:3;17043:2;17038:3;17034:12;17027:25;17078:2;17073:3;17069:12;17062:19;;16868:219;;;:::o;17093:325::-;;17256:67;17320:2;17315:3;17256:67;:::i;:::-;17249:74;;17353:29;17349:1;17344:3;17340:11;17333:50;17409:2;17404:3;17400:12;17393:19;;17239:179;;;:::o;17424:328::-;;17587:67;17651:2;17646:3;17587:67;:::i;:::-;17580:74;;17684:32;17680:1;17675:3;17671:11;17664:53;17743:2;17738:3;17734:12;17727:19;;17570:182;;;:::o;17758:381::-;;17921:67;17985:2;17980:3;17921:67;:::i;:::-;17914:74;;18018:34;18014:1;18009:3;18005:11;17998:55;18084:19;18079:2;18074:3;18070:12;18063:41;18130:2;18125:3;18121:12;18114:19;;17904:235;;;:::o;18145:376::-;;18308:67;18372:2;18367:3;18308:67;:::i;:::-;18301:74;;18405:34;18401:1;18396:3;18392:11;18385:55;18471:14;18466:2;18461:3;18457:12;18450:36;18512:2;18507:3;18503:12;18496:19;;18291:230;;;:::o;18527:118::-;18614:24;18632:5;18614:24;:::i;:::-;18609:3;18602:37;18592:53;;:::o;18651:589::-;;18898:95;18989:3;18980:6;18898:95;:::i;:::-;18891:102;;19010:95;19101:3;19092:6;19010:95;:::i;:::-;19003:102;;19122:92;19210:3;19201:6;19122:92;:::i;:::-;19115:99;;19231:3;19224:10;;18880:360;;;;;;:::o;19246:222::-;;19377:2;19366:9;19362:18;19354:26;;19390:71;19458:1;19447:9;19443:17;19434:6;19390:71;:::i;:::-;19344:124;;;;:::o;19474:640::-;;19707:3;19696:9;19692:19;19684:27;;19721:71;19789:1;19778:9;19774:17;19765:6;19721:71;:::i;:::-;19802:72;19870:2;19859:9;19855:18;19846:6;19802:72;:::i;:::-;19884;19952:2;19941:9;19937:18;19928:6;19884:72;:::i;:::-;20003:9;19997:4;19993:20;19988:2;19977:9;19973:18;19966:48;20031:76;20102:4;20093:6;20031:76;:::i;:::-;20023:84;;19674:440;;;;;;;:::o;20120:210::-;;20245:2;20234:9;20230:18;20222:26;;20258:65;20320:1;20309:9;20305:17;20296:6;20258:65;:::i;:::-;20212:118;;;;:::o;20336:313::-;;20487:2;20476:9;20472:18;20464:26;;20536:9;20530:4;20526:20;20522:1;20511:9;20507:17;20500:47;20564:78;20637:4;20628:6;20564:78;:::i;:::-;20556:86;;20454:195;;;;:::o;20655:419::-;;20859:2;20848:9;20844:18;20836:26;;20908:9;20902:4;20898:20;20894:1;20883:9;20879:17;20872:47;20936:131;21062:4;20936:131;:::i;:::-;20928:139;;20826:248;;;:::o;21080:419::-;;21284:2;21273:9;21269:18;21261:26;;21333:9;21327:4;21323:20;21319:1;21308:9;21304:17;21297:47;21361:131;21487:4;21361:131;:::i;:::-;21353:139;;21251:248;;;:::o;21505:419::-;;21709:2;21698:9;21694:18;21686:26;;21758:9;21752:4;21748:20;21744:1;21733:9;21729:17;21722:47;21786:131;21912:4;21786:131;:::i;:::-;21778:139;;21676:248;;;:::o;21930:419::-;;22134:2;22123:9;22119:18;22111:26;;22183:9;22177:4;22173:20;22169:1;22158:9;22154:17;22147:47;22211:131;22337:4;22211:131;:::i;:::-;22203:139;;22101:248;;;:::o;22355:419::-;;22559:2;22548:9;22544:18;22536:26;;22608:9;22602:4;22598:20;22594:1;22583:9;22579:17;22572:47;22636:131;22762:4;22636:131;:::i;:::-;22628:139;;22526:248;;;:::o;22780:419::-;;22984:2;22973:9;22969:18;22961:26;;23033:9;23027:4;23023:20;23019:1;23008:9;23004:17;22997:47;23061:131;23187:4;23061:131;:::i;:::-;23053:139;;22951:248;;;:::o;23205:419::-;;23409:2;23398:9;23394:18;23386:26;;23458:9;23452:4;23448:20;23444:1;23433:9;23429:17;23422:47;23486:131;23612:4;23486:131;:::i;:::-;23478:139;;23376:248;;;:::o;23630:419::-;;23834:2;23823:9;23819:18;23811:26;;23883:9;23877:4;23873:20;23869:1;23858:9;23854:17;23847:47;23911:131;24037:4;23911:131;:::i;:::-;23903:139;;23801:248;;;:::o;24055:419::-;;24259:2;24248:9;24244:18;24236:26;;24308:9;24302:4;24298:20;24294:1;24283:9;24279:17;24272:47;24336:131;24462:4;24336:131;:::i;:::-;24328:139;;24226:248;;;:::o;24480:419::-;;24684:2;24673:9;24669:18;24661:26;;24733:9;24727:4;24723:20;24719:1;24708:9;24704:17;24697:47;24761:131;24887:4;24761:131;:::i;:::-;24753:139;;24651:248;;;:::o;24905:419::-;;25109:2;25098:9;25094:18;25086:26;;25158:9;25152:4;25148:20;25144:1;25133:9;25129:17;25122:47;25186:131;25312:4;25186:131;:::i;:::-;25178:139;;25076:248;;;:::o;25330:419::-;;25534:2;25523:9;25519:18;25511:26;;25583:9;25577:4;25573:20;25569:1;25558:9;25554:17;25547:47;25611:131;25737:4;25611:131;:::i;:::-;25603:139;;25501:248;;;:::o;25755:419::-;;25959:2;25948:9;25944:18;25936:26;;26008:9;26002:4;25998:20;25994:1;25983:9;25979:17;25972:47;26036:131;26162:4;26036:131;:::i;:::-;26028:139;;25926:248;;;:::o;26180:419::-;;26384:2;26373:9;26369:18;26361:26;;26433:9;26427:4;26423:20;26419:1;26408:9;26404:17;26397:47;26461:131;26587:4;26461:131;:::i;:::-;26453:139;;26351:248;;;:::o;26605:419::-;;26809:2;26798:9;26794:18;26786:26;;26858:9;26852:4;26848:20;26844:1;26833:9;26829:17;26822:47;26886:131;27012:4;26886:131;:::i;:::-;26878:139;;26776:248;;;:::o;27030:419::-;;27234:2;27223:9;27219:18;27211:26;;27283:9;27277:4;27273:20;27269:1;27258:9;27254:17;27247:47;27311:131;27437:4;27311:131;:::i;:::-;27303:139;;27201:248;;;:::o;27455:419::-;;27659:2;27648:9;27644:18;27636:26;;27708:9;27702:4;27698:20;27694:1;27683:9;27679:17;27672:47;27736:131;27862:4;27736:131;:::i;:::-;27728:139;;27626:248;;;:::o;27880:419::-;;28084:2;28073:9;28069:18;28061:26;;28133:9;28127:4;28123:20;28119:1;28108:9;28104:17;28097:47;28161:131;28287:4;28161:131;:::i;:::-;28153:139;;28051:248;;;:::o;28305:419::-;;28509:2;28498:9;28494:18;28486:26;;28558:9;28552:4;28548:20;28544:1;28533:9;28529:17;28522:47;28586:131;28712:4;28586:131;:::i;:::-;28578:139;;28476:248;;;:::o;28730:419::-;;28934:2;28923:9;28919:18;28911:26;;28983:9;28977:4;28973:20;28969:1;28958:9;28954:17;28947:47;29011:131;29137:4;29011:131;:::i;:::-;29003:139;;28901:248;;;:::o;29155:419::-;;29359:2;29348:9;29344:18;29336:26;;29408:9;29402:4;29398:20;29394:1;29383:9;29379:17;29372:47;29436:131;29562:4;29436:131;:::i;:::-;29428:139;;29326:248;;;:::o;29580:419::-;;29784:2;29773:9;29769:18;29761:26;;29833:9;29827:4;29823:20;29819:1;29808:9;29804:17;29797:47;29861:131;29987:4;29861:131;:::i;:::-;29853:139;;29751:248;;;:::o;30005:419::-;;30209:2;30198:9;30194:18;30186:26;;30258:9;30252:4;30248:20;30244:1;30233:9;30229:17;30222:47;30286:131;30412:4;30286:131;:::i;:::-;30278:139;;30176:248;;;:::o;30430:419::-;;30634:2;30623:9;30619:18;30611:26;;30683:9;30677:4;30673:20;30669:1;30658:9;30654:17;30647:47;30711:131;30837:4;30711:131;:::i;:::-;30703:139;;30601:248;;;:::o;30855:419::-;;31059:2;31048:9;31044:18;31036:26;;31108:9;31102:4;31098:20;31094:1;31083:9;31079:17;31072:47;31136:131;31262:4;31136:131;:::i;:::-;31128:139;;31026:248;;;:::o;31280:419::-;;31484:2;31473:9;31469:18;31461:26;;31533:9;31527:4;31523:20;31519:1;31508:9;31504:17;31497:47;31561:131;31687:4;31561:131;:::i;:::-;31553:139;;31451:248;;;:::o;31705:419::-;;31909:2;31898:9;31894:18;31886:26;;31958:9;31952:4;31948:20;31944:1;31933:9;31929:17;31922:47;31986:131;32112:4;31986:131;:::i;:::-;31978:139;;31876:248;;;:::o;32130:419::-;;32334:2;32323:9;32319:18;32311:26;;32383:9;32377:4;32373:20;32369:1;32358:9;32354:17;32347:47;32411:131;32537:4;32411:131;:::i;:::-;32403:139;;32301:248;;;:::o;32555:222::-;;32686:2;32675:9;32671:18;32663:26;;32699:71;32767:1;32756:9;32752:17;32743:6;32699:71;:::i;:::-;32653:124;;;;:::o;32783:283::-;;32849:2;32843:9;32833:19;;32891:4;32883:6;32879:17;32998:6;32986:10;32983:22;32962:18;32950:10;32947:34;32944:62;32941:2;;;33009:18;;:::i;:::-;32941:2;33049:10;33045:2;33038:22;32823:243;;;;:::o;33072:331::-;;33223:18;33215:6;33212:30;33209:2;;;33245:18;;:::i;:::-;33209:2;33330:4;33326:9;33319:4;33311:6;33307:17;33303:33;33295:41;;33391:4;33385;33381:15;33373:23;;33138:265;;;:::o;33409:332::-;;33561:18;33553:6;33550:30;33547:2;;;33583:18;;:::i;:::-;33547:2;33668:4;33664:9;33657:4;33649:6;33645:17;33641:33;33633:41;;33729:4;33723;33719:15;33711:23;;33476:265;;;:::o;33747:141::-;;33819:3;33811:11;;33842:3;33839:1;33832:14;33876:4;33873:1;33863:18;33855:26;;33801:87;;;:::o;33894:98::-;;33979:5;33973:12;33963:22;;33952:40;;;:::o;33998:99::-;;34084:5;34078:12;34068:22;;34057:40;;;:::o;34103:168::-;;34220:6;34215:3;34208:19;34260:4;34255:3;34251:14;34236:29;;34198:73;;;;:::o;34277:169::-;;34395:6;34390:3;34383:19;34435:4;34430:3;34426:14;34411:29;;34373:73;;;;:::o;34452:148::-;;34591:3;34576:18;;34566:34;;;;:::o;34606:305::-;;34665:20;34683:1;34665:20;:::i;:::-;34660:25;;34699:20;34717:1;34699:20;:::i;:::-;34694:25;;34853:1;34785:66;34781:74;34778:1;34775:81;34772:2;;;34859:18;;:::i;:::-;34772:2;34903:1;34900;34896:9;34889:16;;34650:261;;;;:::o;34917:185::-;;34974:20;34992:1;34974:20;:::i;:::-;34969:25;;35008:20;35026:1;35008:20;:::i;:::-;35003:25;;35047:1;35037:2;;35052:18;;:::i;:::-;35037:2;35094:1;35091;35087:9;35082:14;;34959:143;;;;:::o;35108:348::-;;35171:20;35189:1;35171:20;:::i;:::-;35166:25;;35205:20;35223:1;35205:20;:::i;:::-;35200:25;;35393:1;35325:66;35321:74;35318:1;35315:81;35310:1;35303:9;35296:17;35292:105;35289:2;;;35400:18;;:::i;:::-;35289:2;35448:1;35445;35441:9;35430:20;;35156:300;;;;:::o;35462:191::-;;35522:20;35540:1;35522:20;:::i;:::-;35517:25;;35556:20;35574:1;35556:20;:::i;:::-;35551:25;;35595:1;35592;35589:8;35586:2;;;35600:18;;:::i;:::-;35586:2;35645:1;35642;35638:9;35630:17;;35507:146;;;;:::o;35659:96::-;;35725:24;35743:5;35725:24;:::i;:::-;35714:35;;35704:51;;;:::o;35761:90::-;;35838:5;35831:13;35824:21;35813:32;;35803:48;;;:::o;35857:149::-;;35933:66;35926:5;35922:78;35911:89;;35901:105;;;:::o;36012:126::-;;36089:42;36082:5;36078:54;36067:65;;36057:81;;;:::o;36144:77::-;;36210:5;36199:16;;36189:32;;;:::o;36227:154::-;36311:6;36306:3;36301;36288:30;36373:1;36364:6;36359:3;36355:16;36348:27;36278:103;;;:::o;36387:307::-;36455:1;36465:113;36479:6;36476:1;36473:13;36465:113;;;36564:1;36559:3;36555:11;36549:18;36545:1;36540:3;36536:11;36529:39;36501:2;36498:1;36494:10;36489:15;;36465:113;;;36596:6;36593:1;36590:13;36587:2;;;36676:1;36667:6;36662:3;36658:16;36651:27;36587:2;36436:258;;;;:::o;36700:320::-;;36781:1;36775:4;36771:12;36761:22;;36828:1;36822:4;36818:12;36849:18;36839:2;;36905:4;36897:6;36893:17;36883:27;;36839:2;36967;36959:6;36956:14;36936:18;36933:38;36930:2;;;36986:18;;:::i;:::-;36930:2;36751:269;;;;:::o;37026:233::-;;37088:24;37106:5;37088:24;:::i;:::-;37079:33;;37134:66;37127:5;37124:77;37121:2;;;37204:18;;:::i;:::-;37121:2;37251:1;37244:5;37240:13;37233:20;;37069:190;;;:::o;37265:176::-;;37314:20;37332:1;37314:20;:::i;:::-;37309:25;;37348:20;37366:1;37348:20;:::i;:::-;37343:25;;37387:1;37377:2;;37392:18;;:::i;:::-;37377:2;37433:1;37430;37426:9;37421:14;;37299:142;;;;:::o;37447:180::-;37495:77;37492:1;37485:88;37592:4;37589:1;37582:15;37616:4;37613:1;37606:15;37633:180;37681:77;37678:1;37671:88;37778:4;37775:1;37768:15;37802:4;37799:1;37792:15;37819:180;37867:77;37864:1;37857:88;37964:4;37961:1;37954:15;37988:4;37985:1;37978:15;38005:180;38053:77;38050:1;38043:88;38150:4;38147:1;38140:15;38174:4;38171:1;38164:15;38191:102;;38283:2;38279:7;38274:2;38267:5;38263:14;38259:28;38249:38;;38239:54;;;:::o;38299:122::-;38372:24;38390:5;38372:24;:::i;:::-;38365:5;38362:35;38352:2;;38411:1;38408;38401:12;38352:2;38342:79;:::o;38427:116::-;38497:21;38512:5;38497:21;:::i;:::-;38490:5;38487:32;38477:2;;38533:1;38530;38523:12;38477:2;38467:76;:::o;38549:120::-;38621:23;38638:5;38621:23;:::i;:::-;38614:5;38611:34;38601:2;;38659:1;38656;38649:12;38601:2;38591:78;:::o;38675:122::-;38748:24;38766:5;38748:24;:::i;:::-;38741:5;38738:35;38728:2;;38787:1;38784;38777:12;38728:2;38718:79;:::o

Swarm Source

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