ETH Price: $3,419.83 (-1.04%)
Gas: 8 Gwei

Token

COOL PENGUINS (PENGS)
 

Overview

Max Total Supply

466 PENGS

Holders

138

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
luckyjoe.eth
Balance
1 PENGS
0xEa4AC3B51e75ff58de93d3ed6531D45C28a4C6C7
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:
COOLPENGUINS

Compiler Version
v0.7.6+commit.7338295f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-08-15
*/

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

pragma solidity >=0.6.0 <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 GSN 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 payable) {
        return msg.sender;
    }

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

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



pragma solidity >=0.6.0 <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/IERC721.sol



pragma solidity >=0.6.2 <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/IERC721Metadata.sol



pragma solidity >=0.6.2 <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/token/ERC721/IERC721Enumerable.sol



pragma solidity >=0.6.2 <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/IERC721Receiver.sol



pragma solidity >=0.6.0 <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/introspection/ERC165.sol



pragma solidity >=0.6.0 <0.8.0;


/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts may inherit from this and call {_registerInterface} to declare
 * their support of an interface.
 */
abstract contract ERC165 is IERC165 {
    /*
     * bytes4(keccak256('supportsInterface(bytes4)')) == 0x01ffc9a7
     */
    bytes4 private constant _INTERFACE_ID_ERC165 = 0x01ffc9a7;

    /**
     * @dev Mapping of interface ids to whether or not it's supported.
     */
    mapping(bytes4 => bool) private _supportedInterfaces;

    constructor () internal {
        // Derived contracts need only register support for their own interfaces,
        // we register support for ERC165 itself here
        _registerInterface(_INTERFACE_ID_ERC165);
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     *
     * Time complexity O(1), guaranteed to always use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return _supportedInterfaces[interfaceId];
    }

    /**
     * @dev Registers the contract as an implementer of the interface defined by
     * `interfaceId`. Support of the actual ERC165 interface is automatic and
     * registering its interface id is not required.
     *
     * See {IERC165-supportsInterface}.
     *
     * Requirements:
     *
     * - `interfaceId` cannot be the ERC165 invalid interface (`0xffffffff`).
     */
    function _registerInterface(bytes4 interfaceId) internal virtual {
        require(interfaceId != 0xffffffff, "ERC165: invalid interface id");
        _supportedInterfaces[interfaceId] = true;
    }
}

// File: @openzeppelin/contracts/math/SafeMath.sol



pragma solidity >=0.6.0 <0.8.0;

/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
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) {
        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) {
        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) {
        // 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) {
        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) {
        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) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");
        return c;
    }

    /**
     * @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) {
        require(b <= a, "SafeMath: subtraction overflow");
        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) {
        if (a == 0) return 0;
        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");
        return c;
    }

    /**
     * @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. 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) internal pure returns (uint256) {
        require(b > 0, "SafeMath: division by zero");
        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) {
        require(b > 0, "SafeMath: modulo by zero");
        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) {
        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.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryDiv}.
     *
     * 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) {
        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) {
        require(b > 0, errorMessage);
        return a % b;
    }
}

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



pragma solidity >=0.6.2 <0.8.0;

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

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

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

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (bool success, ) = recipient.call{ value: amount }("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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



pragma solidity >=0.6.0 <0.8.0;

/**
 * @dev Library for managing
 * https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive
 * types.
 *
 * Sets have the following properties:
 *
 * - Elements are added, removed, and checked for existence in constant time
 * (O(1)).
 * - Elements are enumerated in O(n). No guarantees are made on the ordering.
 *
 * ```
 * contract Example {
 *     // Add the library methods
 *     using EnumerableSet for EnumerableSet.AddressSet;
 *
 *     // Declare a set state variable
 *     EnumerableSet.AddressSet private mySet;
 * }
 * ```
 *
 * As of v3.3.0, sets of type `bytes32` (`Bytes32Set`), `address` (`AddressSet`)
 * and `uint256` (`UintSet`) are supported.
 */
library EnumerableSet {
    // To implement this library for multiple types with as little code
    // repetition as possible, we write it in terms of a generic Set type with
    // bytes32 values.
    // The Set implementation uses private functions, and user-facing
    // implementations (such as AddressSet) are just wrappers around the
    // underlying Set.
    // This means that we can only create new EnumerableSets for types that fit
    // in bytes32.

    struct Set {
        // Storage of set values
        bytes32[] _values;

        // Position of the value in the `values` array, plus 1 because index 0
        // means a value is not in the set.
        mapping (bytes32 => uint256) _indexes;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function _add(Set storage set, bytes32 value) private returns (bool) {
        if (!_contains(set, value)) {
            set._values.push(value);
            // The value is stored at length-1, but we add 1 to all indexes
            // and use 0 as a sentinel value
            set._indexes[value] = set._values.length;
            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function _remove(Set storage set, bytes32 value) private returns (bool) {
        // We read and store the value's index to prevent multiple reads from the same storage slot
        uint256 valueIndex = set._indexes[value];

        if (valueIndex != 0) { // Equivalent to contains(set, value)
            // To delete an element from the _values array in O(1), we swap the element to delete with the last one in
            // the array, and then remove the last element (sometimes called as 'swap and pop').
            // This modifies the order of the array, as noted in {at}.

            uint256 toDeleteIndex = valueIndex - 1;
            uint256 lastIndex = set._values.length - 1;

            // When the value to delete is the last one, the swap operation is unnecessary. However, since this occurs
            // so rarely, we still do the swap anyway to avoid the gas cost of adding an 'if' statement.

            bytes32 lastvalue = set._values[lastIndex];

            // Move the last value to the index where the value to delete is
            set._values[toDeleteIndex] = lastvalue;
            // Update the index for the moved value
            set._indexes[lastvalue] = toDeleteIndex + 1; // All indexes are 1-based

            // Delete the slot where the moved value was stored
            set._values.pop();

            // Delete the index for the deleted slot
            delete set._indexes[value];

            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function _contains(Set storage set, bytes32 value) private view returns (bool) {
        return set._indexes[value] != 0;
    }

    /**
     * @dev Returns the number of values on the set. O(1).
     */
    function _length(Set storage set) private view returns (uint256) {
        return set._values.length;
    }

   /**
    * @dev Returns the value stored at position `index` in the set. O(1).
    *
    * Note that there are no guarantees on the ordering of values inside the
    * array, and it may change when more values are added or removed.
    *
    * Requirements:
    *
    * - `index` must be strictly less than {length}.
    */
    function _at(Set storage set, uint256 index) private view returns (bytes32) {
        require(set._values.length > index, "EnumerableSet: index out of bounds");
        return set._values[index];
    }

    // Bytes32Set

    struct Bytes32Set {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(Bytes32Set storage set, bytes32 value) internal returns (bool) {
        return _add(set._inner, value);
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(Bytes32Set storage set, bytes32 value) internal returns (bool) {
        return _remove(set._inner, value);
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(Bytes32Set storage set, bytes32 value) internal view returns (bool) {
        return _contains(set._inner, value);
    }

    /**
     * @dev Returns the number of values in the set. O(1).
     */
    function length(Bytes32Set storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

   /**
    * @dev Returns the value stored at position `index` in the set. O(1).
    *
    * Note that there are no guarantees on the ordering of values inside the
    * array, and it may change when more values are added or removed.
    *
    * Requirements:
    *
    * - `index` must be strictly less than {length}.
    */
    function at(Bytes32Set storage set, uint256 index) internal view returns (bytes32) {
        return _at(set._inner, index);
    }

    // AddressSet

    struct AddressSet {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(AddressSet storage set, address value) internal returns (bool) {
        return _add(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(AddressSet storage set, address value) internal returns (bool) {
        return _remove(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(AddressSet storage set, address value) internal view returns (bool) {
        return _contains(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Returns the number of values in the set. O(1).
     */
    function length(AddressSet storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

   /**
    * @dev Returns the value stored at position `index` in the set. O(1).
    *
    * Note that there are no guarantees on the ordering of values inside the
    * array, and it may change when more values are added or removed.
    *
    * Requirements:
    *
    * - `index` must be strictly less than {length}.
    */
    function at(AddressSet storage set, uint256 index) internal view returns (address) {
        return address(uint160(uint256(_at(set._inner, index))));
    }


    // UintSet

    struct UintSet {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(UintSet storage set, uint256 value) internal returns (bool) {
        return _add(set._inner, bytes32(value));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(UintSet storage set, uint256 value) internal returns (bool) {
        return _remove(set._inner, bytes32(value));
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(UintSet storage set, uint256 value) internal view returns (bool) {
        return _contains(set._inner, bytes32(value));
    }

    /**
     * @dev Returns the number of values on the set. O(1).
     */
    function length(UintSet storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

   /**
    * @dev Returns the value stored at position `index` in the set. O(1).
    *
    * Note that there are no guarantees on the ordering of values inside the
    * array, and it may change when more values are added or removed.
    *
    * Requirements:
    *
    * - `index` must be strictly less than {length}.
    */
    function at(UintSet storage set, uint256 index) internal view returns (uint256) {
        return uint256(_at(set._inner, index));
    }
}

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



pragma solidity >=0.6.0 <0.8.0;

/**
 * @dev Library for managing an enumerable variant of Solidity's
 * https://solidity.readthedocs.io/en/latest/types.html#mapping-types[`mapping`]
 * type.
 *
 * Maps have the following properties:
 *
 * - Entries are added, removed, and checked for existence in constant time
 * (O(1)).
 * - Entries are enumerated in O(n). No guarantees are made on the ordering.
 *
 * ```
 * contract Example {
 *     // Add the library methods
 *     using EnumerableMap for EnumerableMap.UintToAddressMap;
 *
 *     // Declare a set state variable
 *     EnumerableMap.UintToAddressMap private myMap;
 * }
 * ```
 *
 * As of v3.0.0, only maps of type `uint256 -> address` (`UintToAddressMap`) are
 * supported.
 */
library EnumerableMap {
    // To implement this library for multiple types with as little code
    // repetition as possible, we write it in terms of a generic Map type with
    // bytes32 keys and values.
    // The Map implementation uses private functions, and user-facing
    // implementations (such as Uint256ToAddressMap) are just wrappers around
    // the underlying Map.
    // This means that we can only create new EnumerableMaps for types that fit
    // in bytes32.

    struct MapEntry {
        bytes32 _key;
        bytes32 _value;
    }

    struct Map {
        // Storage of map keys and values
        MapEntry[] _entries;

        // Position of the entry defined by a key in the `entries` array, plus 1
        // because index 0 means a key is not in the map.
        mapping (bytes32 => uint256) _indexes;
    }

    /**
     * @dev Adds a key-value pair to a map, or updates the value for an existing
     * key. O(1).
     *
     * Returns true if the key was added to the map, that is if it was not
     * already present.
     */
    function _set(Map storage map, bytes32 key, bytes32 value) private returns (bool) {
        // We read and store the key's index to prevent multiple reads from the same storage slot
        uint256 keyIndex = map._indexes[key];

        if (keyIndex == 0) { // Equivalent to !contains(map, key)
            map._entries.push(MapEntry({ _key: key, _value: value }));
            // The entry is stored at length-1, but we add 1 to all indexes
            // and use 0 as a sentinel value
            map._indexes[key] = map._entries.length;
            return true;
        } else {
            map._entries[keyIndex - 1]._value = value;
            return false;
        }
    }

    /**
     * @dev Removes a key-value pair from a map. O(1).
     *
     * Returns true if the key was removed from the map, that is if it was present.
     */
    function _remove(Map storage map, bytes32 key) private returns (bool) {
        // We read and store the key's index to prevent multiple reads from the same storage slot
        uint256 keyIndex = map._indexes[key];

        if (keyIndex != 0) { // Equivalent to contains(map, key)
            // To delete a key-value pair from the _entries array in O(1), we swap the entry to delete with the last one
            // in the array, and then remove the last entry (sometimes called as 'swap and pop').
            // This modifies the order of the array, as noted in {at}.

            uint256 toDeleteIndex = keyIndex - 1;
            uint256 lastIndex = map._entries.length - 1;

            // When the entry to delete is the last one, the swap operation is unnecessary. However, since this occurs
            // so rarely, we still do the swap anyway to avoid the gas cost of adding an 'if' statement.

            MapEntry storage lastEntry = map._entries[lastIndex];

            // Move the last entry to the index where the entry to delete is
            map._entries[toDeleteIndex] = lastEntry;
            // Update the index for the moved entry
            map._indexes[lastEntry._key] = toDeleteIndex + 1; // All indexes are 1-based

            // Delete the slot where the moved entry was stored
            map._entries.pop();

            // Delete the index for the deleted slot
            delete map._indexes[key];

            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Returns true if the key is in the map. O(1).
     */
    function _contains(Map storage map, bytes32 key) private view returns (bool) {
        return map._indexes[key] != 0;
    }

    /**
     * @dev Returns the number of key-value pairs in the map. O(1).
     */
    function _length(Map storage map) private view returns (uint256) {
        return map._entries.length;
    }

   /**
    * @dev Returns the key-value pair stored at position `index` in the map. O(1).
    *
    * Note that there are no guarantees on the ordering of entries inside the
    * array, and it may change when more entries are added or removed.
    *
    * Requirements:
    *
    * - `index` must be strictly less than {length}.
    */
    function _at(Map storage map, uint256 index) private view returns (bytes32, bytes32) {
        require(map._entries.length > index, "EnumerableMap: index out of bounds");

        MapEntry storage entry = map._entries[index];
        return (entry._key, entry._value);
    }

    /**
     * @dev Tries to returns the value associated with `key`.  O(1).
     * Does not revert if `key` is not in the map.
     */
    function _tryGet(Map storage map, bytes32 key) private view returns (bool, bytes32) {
        uint256 keyIndex = map._indexes[key];
        if (keyIndex == 0) return (false, 0); // Equivalent to contains(map, key)
        return (true, map._entries[keyIndex - 1]._value); // All indexes are 1-based
    }

    /**
     * @dev Returns the value associated with `key`.  O(1).
     *
     * Requirements:
     *
     * - `key` must be in the map.
     */
    function _get(Map storage map, bytes32 key) private view returns (bytes32) {
        uint256 keyIndex = map._indexes[key];
        require(keyIndex != 0, "EnumerableMap: nonexistent key"); // Equivalent to contains(map, key)
        return map._entries[keyIndex - 1]._value; // All indexes are 1-based
    }

    /**
     * @dev Same as {_get}, with a custom error message when `key` is not in the map.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {_tryGet}.
     */
    function _get(Map storage map, bytes32 key, string memory errorMessage) private view returns (bytes32) {
        uint256 keyIndex = map._indexes[key];
        require(keyIndex != 0, errorMessage); // Equivalent to contains(map, key)
        return map._entries[keyIndex - 1]._value; // All indexes are 1-based
    }

    // UintToAddressMap

    struct UintToAddressMap {
        Map _inner;
    }

    /**
     * @dev Adds a key-value pair to a map, or updates the value for an existing
     * key. O(1).
     *
     * Returns true if the key was added to the map, that is if it was not
     * already present.
     */
    function set(UintToAddressMap storage map, uint256 key, address value) internal returns (bool) {
        return _set(map._inner, bytes32(key), bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the key was removed from the map, that is if it was present.
     */
    function remove(UintToAddressMap storage map, uint256 key) internal returns (bool) {
        return _remove(map._inner, bytes32(key));
    }

    /**
     * @dev Returns true if the key is in the map. O(1).
     */
    function contains(UintToAddressMap storage map, uint256 key) internal view returns (bool) {
        return _contains(map._inner, bytes32(key));
    }

    /**
     * @dev Returns the number of elements in the map. O(1).
     */
    function length(UintToAddressMap storage map) internal view returns (uint256) {
        return _length(map._inner);
    }

   /**
    * @dev Returns the element stored at position `index` in the set. O(1).
    * Note that there are no guarantees on the ordering of values inside the
    * array, and it may change when more values are added or removed.
    *
    * Requirements:
    *
    * - `index` must be strictly less than {length}.
    */
    function at(UintToAddressMap storage map, uint256 index) internal view returns (uint256, address) {
        (bytes32 key, bytes32 value) = _at(map._inner, index);
        return (uint256(key), address(uint160(uint256(value))));
    }

    /**
     * @dev Tries to returns the value associated with `key`.  O(1).
     * Does not revert if `key` is not in the map.
     *
     * _Available since v3.4._
     */
    function tryGet(UintToAddressMap storage map, uint256 key) internal view returns (bool, address) {
        (bool success, bytes32 value) = _tryGet(map._inner, bytes32(key));
        return (success, address(uint160(uint256(value))));
    }

    /**
     * @dev Returns the value associated with `key`.  O(1).
     *
     * Requirements:
     *
     * - `key` must be in the map.
     */
    function get(UintToAddressMap storage map, uint256 key) internal view returns (address) {
        return address(uint160(uint256(_get(map._inner, bytes32(key)))));
    }

    /**
     * @dev Same as {get}, with a custom error message when `key` is not in the map.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryGet}.
     */
    function get(UintToAddressMap storage map, uint256 key, string memory errorMessage) internal view returns (address) {
        return address(uint160(uint256(_get(map._inner, bytes32(key), errorMessage))));
    }
}

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



pragma solidity >=0.6.0 <0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    /**
     * @dev Converts a `uint256` to its ASCII `string` 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);
        uint256 index = digits - 1;
        temp = value;
        while (temp != 0) {
            buffer[index--] = bytes1(uint8(48 + temp % 10));
            temp /= 10;
        }
        return string(buffer);
    }
}

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



pragma solidity >=0.6.0 <0.8.0;

/**
 * @title ERC721 Non-Fungible Token Standard basic implementation
 * @dev see https://eips.ethereum.org/EIPS/eip-721
 */
 
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable {
    using SafeMath for uint256;
    using Address for address;
    using EnumerableSet for EnumerableSet.UintSet;
    using EnumerableMap for EnumerableMap.UintToAddressMap;
    using Strings for uint256;

    // Equals to `bytes4(keccak256("onERC721Received(address,address,uint256,bytes)"))`
    // which can be also obtained as `IERC721Receiver(0).onERC721Received.selector`
    bytes4 private constant _ERC721_RECEIVED = 0x150b7a02;

    // Mapping from holder address to their (enumerable) set of owned tokens
    mapping (address => EnumerableSet.UintSet) private _holderTokens;

    // Enumerable mapping from token ids to their owners
    EnumerableMap.UintToAddressMap private _tokenOwners;

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Optional mapping for token URIs
    mapping (uint256 => string) private _tokenURIs;

    // Base URI
    string private _baseURI;

    /*
     *     bytes4(keccak256('balanceOf(address)')) == 0x70a08231
     *     bytes4(keccak256('ownerOf(uint256)')) == 0x6352211e
     *     bytes4(keccak256('approve(address,uint256)')) == 0x095ea7b3
     *     bytes4(keccak256('getApproved(uint256)')) == 0x081812fc
     *     bytes4(keccak256('setApprovalForAll(address,bool)')) == 0xa22cb465
     *     bytes4(keccak256('isApprovedForAll(address,address)')) == 0xe985e9c5
     *     bytes4(keccak256('transferFrom(address,address,uint256)')) == 0x23b872dd
     *     bytes4(keccak256('safeTransferFrom(address,address,uint256)')) == 0x42842e0e
     *     bytes4(keccak256('safeTransferFrom(address,address,uint256,bytes)')) == 0xb88d4fde
     *
     *     => 0x70a08231 ^ 0x6352211e ^ 0x095ea7b3 ^ 0x081812fc ^
     *        0xa22cb465 ^ 0xe985e9c5 ^ 0x23b872dd ^ 0x42842e0e ^ 0xb88d4fde == 0x80ac58cd
     */
    bytes4 private constant _INTERFACE_ID_ERC721 = 0x80ac58cd;

    /*
     *     bytes4(keccak256('name()')) == 0x06fdde03
     *     bytes4(keccak256('symbol()')) == 0x95d89b41
     *     bytes4(keccak256('tokenURI(uint256)')) == 0xc87b56dd
     *
     *     => 0x06fdde03 ^ 0x95d89b41 ^ 0xc87b56dd == 0x5b5e139f
     */
    bytes4 private constant _INTERFACE_ID_ERC721_METADATA = 0x5b5e139f;

    /*
     *     bytes4(keccak256('totalSupply()')) == 0x18160ddd
     *     bytes4(keccak256('tokenOfOwnerByIndex(address,uint256)')) == 0x2f745c59
     *     bytes4(keccak256('tokenByIndex(uint256)')) == 0x4f6ccce7
     *
     *     => 0x18160ddd ^ 0x2f745c59 ^ 0x4f6ccce7 == 0x780e9d63
     */
    bytes4 private constant _INTERFACE_ID_ERC721_ENUMERABLE = 0x780e9d63;

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

        // register the supported interfaces to conform to ERC721 via ERC165
        _registerInterface(_INTERFACE_ID_ERC721);
        _registerInterface(_INTERFACE_ID_ERC721_METADATA);
        _registerInterface(_INTERFACE_ID_ERC721_ENUMERABLE);
    }

    /**
     * @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 _holderTokens[owner].length();
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        return _tokenOwners.get(tokenId, "ERC721: owner query for nonexistent token");
    }

    /**
     * @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 _tokenURI = _tokenURIs[tokenId];
        string memory base = baseURI();

        // If there is no base URI, return the token URI.
        if (bytes(base).length == 0) {
            return _tokenURI;
        }
        // If both are set, concatenate the baseURI and tokenURI (via abi.encodePacked).
        if (bytes(_tokenURI).length > 0) {
            return string(abi.encodePacked(base, _tokenURI));
        }
        // If there is a baseURI but no tokenURI, concatenate the tokenID to the baseURI.
        return string(abi.encodePacked(base, tokenId.toString()));
    }

    /**
    * @dev Returns the base URI set via {_setBaseURI}. This will be
    * automatically added as a prefix in {tokenURI} to each token's URI, or
    * to the token ID if no specific URI is set for that token ID.
    */
    function baseURI() public view virtual returns (string memory) {
        return _baseURI;
    }

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        return _holderTokens[owner].at(index);
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        // _tokenOwners are indexed by tokenIds, so .length() returns the number of tokenIds
        return _tokenOwners.length();
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
        (uint256 tokenId, ) = _tokenOwners.at(index);
        return tokenId;
    }

    /**
     * @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 || ERC721.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 _tokenOwners.contains(tokenId);
    }

    /**
     * @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 || ERC721.isApprovedForAll(owner, spender));
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     d*
     * - `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);

        _holderTokens[to].add(tokenId);

        _tokenOwners.set(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); // internal owner

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

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

        // Clear metadata (if any)
        if (bytes(_tokenURIs[tokenId]).length != 0) {
            delete _tokenURIs[tokenId];
        }

        _holderTokens[owner].remove(tokenId);

        _tokenOwners.remove(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"); // internal owner
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

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

        _holderTokens[from].remove(tokenId);
        _holderTokens[to].add(tokenId);

        _tokenOwners.set(tokenId, to);

        emit Transfer(from, to, tokenId);
    }

    /**
     * @dev Sets `_tokenURI` as the tokenURI of `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _setTokenURI(uint256 tokenId, string memory _tokenURI) internal virtual {
        require(_exists(tokenId), "ERC721Metadata: URI set of nonexistent token");
        _tokenURIs[tokenId] = _tokenURI;
    }

    /**
     * @dev Internal function to set the base URI for all token IDs. It is
     * automatically added as a prefix to the value returned in {tokenURI},
     * or to the token ID if {tokenURI} is empty.
     */
    function _setBaseURI(string memory baseURI_) internal virtual {
        _baseURI = baseURI_;
    }

    /**
     * @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()) {
            return true;
        }
        bytes memory returndata = to.functionCall(abi.encodeWithSelector(
            IERC721Receiver(to).onERC721Received.selector,
            _msgSender(),
            from,
            tokenId,
            _data
        ), "ERC721: transfer to non ERC721Receiver implementer");
        bytes4 retval = abi.decode(returndata, (bytes4));
        return (retval == _ERC721_RECEIVED);
    }

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

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

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



pragma solidity >=0.6.0 <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 () internal {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

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

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

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

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


// Genetically modified for blockchain . Some wear hats, some wear sweaters and some even smoke!
// 10,000 have been adapted on blockchain


// Website - https://www.coolpenguins.club

// Core DEV - @wasithedev



pragma solidity ^0.7.0;
pragma abicoder v2;

contract COOLPENGUINS is ERC721, Ownable {
    
    using SafeMath for uint256;

    string public COOLPENGS_PROVENANCE = ""; 

    uint256 public COOLPENGSPRICE = 25000000000000000; // 0.025 ETH

    uint public constant MAXCOOLPENGSPURCHASE = 20;

    uint256 public constant MAX_COOLPENGS = 10000;

    bool public saleIsActive = false;

    
    // Reserve up to 100 COOLPENGS for DEV AND GIVEAWAYS
    uint public COOLPENGSRESERVE = 100;

    constructor() ERC721("COOL PENGUINS", "PENGS") { }
    
    function withdraw() public onlyOwner {
        uint balance = address(this).balance;
        msg.sender.transfer(balance);
        
    }
    
    function RESERVEPENGS(address _to, uint256 _reserveAmount) public onlyOwner {        
        uint supply = totalSupply();
        require(_reserveAmount > 0 && _reserveAmount <= COOLPENGSRESERVE, "Oh No");
        for (uint i = 0; i < _reserveAmount; i++) {
            _safeMint(_to, supply + i);
        }
		COOLPENGSRESERVE = COOLPENGSRESERVE.sub(_reserveAmount);
      
    }

  function setPengsPrice(uint256 NewPengsPrice) public onlyOwner {
        COOLPENGSPRICE = NewPengsPrice;
    }
  function getPrice() public view returns (uint256){
        return COOLPENGSPRICE;
    }
	
    function setProvenanceHash(string memory provenanceHash) public onlyOwner {
        COOLPENGS_PROVENANCE = provenanceHash;
    }

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


    function flipSaleState() public onlyOwner {
        saleIsActive = !saleIsActive;
    }
    
    
    function tokensOfOwner(address _owner) external view returns(uint256[] memory ) {
        uint256 tokenCount = balanceOf(_owner);
        if (tokenCount == 0) {
            // Return an empty array
            return new uint256[](0);
        } else {
            uint256[] memory result = new uint256[](tokenCount);
            uint256 index;
            for (index = 0; index < tokenCount; index++) {
                result[index] = tokenOfOwnerByIndex(_owner, index);
            }
            return result;
        }
    }
    
    function MINTCOOLPENGS(uint numberOfTokens) public payable {
        require(saleIsActive, "Sale must be active to mint a COOLPENGUIN");
        require(numberOfTokens > 0 && numberOfTokens <= MAXCOOLPENGSPURCHASE, "You can only mint 20 PENGS at a time");
        require(totalSupply().add(numberOfTokens) <= MAX_COOLPENGS, "Purchase would exceed max supply of CoolPengs");
        require(msg.value >= COOLPENGSPRICE.mul(numberOfTokens), "Ether value sent is not correct");
        
        for(uint i = 0; i < numberOfTokens; i++) {
            uint mintIndex = totalSupply();
            if (totalSupply() < MAX_COOLPENGS) {
                _safeMint(msg.sender, mintIndex);
            }
        }

    } 
    
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"COOLPENGSPRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"COOLPENGSRESERVE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"COOLPENGS_PROVENANCE","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAXCOOLPENGSPURCHASE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_COOLPENGS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"MINTCOOLPENGS","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_reserveAmount","type":"uint256"}],"name":"RESERVEPENGS","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":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","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":[],"name":"getPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"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":"uint256","name":"NewPengsPrice","type":"uint256"}],"name":"setPengsPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"provenanceHash","type":"string"}],"name":"setProvenanceHash","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"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"}]

608060405260405180602001604052806000815250600b90805190602001906200002b929190620002fc565b506658d15e17628000600c556000600d60006101000a81548160ff0219169083151502179055506064600e553480156200006457600080fd5b506040518060400160405280600d81526020017f434f4f4c2050454e4755494e53000000000000000000000000000000000000008152506040518060400160405280600581526020017f50454e4753000000000000000000000000000000000000000000000000000000815250620000e96301ffc9a760e01b6200021c60201b60201c565b816006908051906020019062000101929190620002fc565b5080600790805190602001906200011a929190620002fc565b50620001336380ac58cd60e01b6200021c60201b60201c565b6200014b635b5e139f60e01b6200021c60201b60201c565b6200016363780e9d6360e01b6200021c60201b60201c565b5050600062000177620002f460201b60201c565b905080600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35062000427565b63ffffffff60e01b817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916141562000288576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200027f90620003f4565b60405180910390fd5b6001600080837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600033905090565b828054600181600116156101000203166002900490600052602060002090601f01602090048101928262000334576000855562000380565b82601f106200034f57805160ff191683800117855562000380565b8280016001018555821562000380579182015b828111156200037f57825182559160200191906001019062000362565b5b5090506200038f919062000393565b5090565b5b80821115620003ae57600081600090555060010162000394565b5090565b6000620003c1601c8362000416565b91507f4552433136353a20696e76616c696420696e74657266616365206964000000006000830152602082019050919050565b600060208201905081810360008301526200040f81620003b2565b9050919050565b600082825260208201905092915050565b61445080620004376000396000f3fe6080604052600436106102045760003560e01c806370a0823111610118578063b5fa045b116100a0578063e045ec0b1161006f578063e045ec0b14610748578063e985e9c514610773578063eb8d2444146107b0578063eeee7026146107db578063f2fde38b1461080457610204565b8063b5fa045b1461068e578063b88d4fde146106b9578063c87b56dd146106e2578063d9d7e8c31461071f57610204565b80638da5cb5b116100e75780638da5cb5b146105c857806395d89b41146105f357806397313f501461061e57806398d5fdca1461063a578063a22cb4651461066557610204565b806370a082311461050c578063715018a614610549578063768482ef146105605780638462151c1461058b57610204565b80632f745c591161019b5780634f6ccce71161016a5780634f6ccce71461041357806355f804b3146104505780636104dfb7146104795780636352211e146104a45780636c0360eb146104e157610204565b80632f745c591461037f57806334918dfd146103bc5780633ccfd60b146103d357806342842e0e146103ea57610204565b806310969523116101d757806310969523146102d7578063125391331461030057806318160ddd1461032b57806323b872dd1461035657610204565b806301ffc9a71461020957806306fdde0314610246578063081812fc14610271578063095ea7b3146102ae575b600080fd5b34801561021557600080fd5b50610230600480360381019061022b9190613137565b61082d565b60405161023d9190613db8565b60405180910390f35b34801561025257600080fd5b5061025b610894565b6040516102689190613dd3565b60405180910390f35b34801561027d57600080fd5b50610298600480360381019061029391906131ca565b610936565b6040516102a59190613d2f565b60405180910390f35b3480156102ba57600080fd5b506102d560048036038101906102d091906130fb565b6109bb565b005b3480156102e357600080fd5b506102fe60048036038101906102f99190613189565b610ad3565b005b34801561030c57600080fd5b50610315610b69565b6040516103229190614155565b60405180910390f35b34801561033757600080fd5b50610340610b6e565b60405161034d9190614155565b60405180910390f35b34801561036257600080fd5b5061037d60048036038101906103789190612ff5565b610b7f565b005b34801561038b57600080fd5b506103a660048036038101906103a191906130fb565b610bdf565b6040516103b39190614155565b60405180910390f35b3480156103c857600080fd5b506103d1610c3a565b005b3480156103df57600080fd5b506103e8610ce2565b005b3480156103f657600080fd5b50610411600480360381019061040c9190612ff5565b610dad565b005b34801561041f57600080fd5b5061043a600480360381019061043591906131ca565b610dcd565b6040516104479190614155565b60405180910390f35b34801561045c57600080fd5b5061047760048036038101906104729190613189565b610df0565b005b34801561048557600080fd5b5061048e610e78565b60405161049b9190614155565b60405180910390f35b3480156104b057600080fd5b506104cb60048036038101906104c691906131ca565b610e7e565b6040516104d89190613d2f565b60405180910390f35b3480156104ed57600080fd5b506104f6610eb5565b6040516105039190613dd3565b60405180910390f35b34801561051857600080fd5b50610533600480360381019061052e9190612f90565b610f57565b6040516105409190614155565b60405180910390f35b34801561055557600080fd5b5061055e611016565b005b34801561056c57600080fd5b50610575611153565b6040516105829190613dd3565b60405180910390f35b34801561059757600080fd5b506105b260048036038101906105ad9190612f90565b6111f1565b6040516105bf9190613d96565b60405180910390f35b3480156105d457600080fd5b506105dd6112ea565b6040516105ea9190613d2f565b60405180910390f35b3480156105ff57600080fd5b50610608611314565b6040516106159190613dd3565b60405180910390f35b610638600480360381019061063391906131ca565b6113b6565b005b34801561064657600080fd5b5061064f61154f565b60405161065c9190614155565b60405180910390f35b34801561067157600080fd5b5061068c600480360381019061068791906130bf565b611559565b005b34801561069a57600080fd5b506106a36116da565b6040516106b09190614155565b60405180910390f35b3480156106c557600080fd5b506106e060048036038101906106db9190613044565b6116e0565b005b3480156106ee57600080fd5b50610709600480360381019061070491906131ca565b611742565b6040516107169190613dd3565b60405180910390f35b34801561072b57600080fd5b50610746600480360381019061074191906131ca565b6118c5565b005b34801561075457600080fd5b5061075d61194b565b60405161076a9190614155565b60405180910390f35b34801561077f57600080fd5b5061079a60048036038101906107959190612fb9565b611951565b6040516107a79190613db8565b60405180910390f35b3480156107bc57600080fd5b506107c56119e5565b6040516107d29190613db8565b60405180910390f35b3480156107e757600080fd5b5061080260048036038101906107fd91906130fb565b6119f8565b005b34801561081057600080fd5b5061082b60048036038101906108269190612f90565b611b16565b005b6000806000837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff169050919050565b606060068054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561092c5780601f106109015761010080835404028352916020019161092c565b820191906000526020600020905b81548152906001019060200180831161090f57829003601f168201915b5050505050905090565b600061094182611cc2565b610980576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161097790614055565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109c682610e7e565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2e906140f5565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a56611cdf565b73ffffffffffffffffffffffffffffffffffffffff161480610a855750610a8481610a7f611cdf565b611951565b5b610ac4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610abb90613fb5565b60405180910390fd5b610ace8383611ce7565b505050565b610adb611cdf565b73ffffffffffffffffffffffffffffffffffffffff16610af96112ea565b73ffffffffffffffffffffffffffffffffffffffff1614610b4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4690614095565b60405180910390fd5b80600b9080519060200190610b65929190612dac565b5050565b601481565b6000610b7a6002611da0565b905090565b610b90610b8a611cdf565b82611db5565b610bcf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc690614115565b60405180910390fd5b610bda838383611e93565b505050565b6000610c3282600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206120aa90919063ffffffff16565b905092915050565b610c42611cdf565b73ffffffffffffffffffffffffffffffffffffffff16610c606112ea565b73ffffffffffffffffffffffffffffffffffffffff1614610cb6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cad90614095565b60405180910390fd5b600d60009054906101000a900460ff1615600d60006101000a81548160ff021916908315150217905550565b610cea611cdf565b73ffffffffffffffffffffffffffffffffffffffff16610d086112ea565b73ffffffffffffffffffffffffffffffffffffffff1614610d5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5590614095565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610da9573d6000803e3d6000fd5b5050565b610dc8838383604051806020016040528060008152506116e0565b505050565b600080610de48360026120c490919063ffffffff16565b50905080915050919050565b610df8611cdf565b73ffffffffffffffffffffffffffffffffffffffff16610e166112ea565b73ffffffffffffffffffffffffffffffffffffffff1614610e6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6390614095565b60405180910390fd5b610e75816120f0565b50565b61271081565b6000610eae826040518060600160405280602981526020016143f260299139600261210a9092919063ffffffff16565b9050919050565b606060098054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610f4d5780601f10610f2257610100808354040283529160200191610f4d565b820191906000526020600020905b815481529060010190602001808311610f3057829003601f168201915b5050505050905090565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610fc8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fbf90613fd5565b60405180910390fd5b61100f600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020612129565b9050919050565b61101e611cdf565b73ffffffffffffffffffffffffffffffffffffffff1661103c6112ea565b73ffffffffffffffffffffffffffffffffffffffff1614611092576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108990614095565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b600b8054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156111e95780601f106111be576101008083540402835291602001916111e9565b820191906000526020600020905b8154815290600101906020018083116111cc57829003601f168201915b505050505081565b606060006111fe83610f57565b9050600081141561125957600067ffffffffffffffff8111801561122157600080fd5b506040519080825280602002602001820160405280156112505781602001602082028036833780820191505090505b509150506112e5565b60008167ffffffffffffffff8111801561127257600080fd5b506040519080825280602002602001820160405280156112a15781602001602082028036833780820191505090505b50905060005b828110156112de576112b98582610bdf565b8282815181106112c557fe5b60200260200101818152505080806001019150506112a7565b8193505050505b919050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060078054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156113ac5780601f10611381576101008083540402835291602001916113ac565b820191906000526020600020905b81548152906001019060200180831161138f57829003601f168201915b5050505050905090565b600d60009054906101000a900460ff16611405576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113fc90614075565b60405180910390fd5b600081118015611416575060148111155b611455576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144c90613f95565b60405180910390fd5b61271061147282611464610b6e565b61213e90919063ffffffff16565b11156114b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114aa90613e75565b60405180910390fd5b6114c881600c5461219390919063ffffffff16565b34101561150a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150190613f15565b60405180910390fd5b60005b8181101561154b57600061151f610b6e565b905061271061152c610b6e565b101561153d5761153c3382612203565b5b50808060010191505061150d565b5050565b6000600c54905090565b611561611cdf565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c690613ef5565b60405180910390fd5b80600560006115dc611cdf565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611689611cdf565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516116ce9190613db8565b60405180910390a35050565b600e5481565b6116f16116eb611cdf565b83611db5565b611730576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172790614115565b60405180910390fd5b61173c84848484612221565b50505050565b606061174d82611cc2565b61178c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611783906140d5565b60405180910390fd5b6000600860008481526020019081526020016000208054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156118355780601f1061180a57610100808354040283529160200191611835565b820191906000526020600020905b81548152906001019060200180831161181857829003601f168201915b505050505090506000611846610eb5565b905060008151141561185c5781925050506118c0565b600082511115611891578082604051602001611879929190613d0b565b604051602081830303815290604052925050506118c0565b8061189b8561227d565b6040516020016118ac929190613d0b565b604051602081830303815290604052925050505b919050565b6118cd611cdf565b73ffffffffffffffffffffffffffffffffffffffff166118eb6112ea565b73ffffffffffffffffffffffffffffffffffffffff1614611941576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193890614095565b60405180910390fd5b80600c8190555050565b600c5481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600d60009054906101000a900460ff1681565b611a00611cdf565b73ffffffffffffffffffffffffffffffffffffffff16611a1e6112ea565b73ffffffffffffffffffffffffffffffffffffffff1614611a74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6b90614095565b60405180910390fd5b6000611a7e610b6e565b9050600082118015611a925750600e548211155b611ad1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac890613e15565b60405180910390fd5b60005b82811015611af557611ae884828401612203565b8080600101915050611ad4565b50611b0b82600e546123c490919063ffffffff16565b600e81905550505050565b611b1e611cdf565b73ffffffffffffffffffffffffffffffffffffffff16611b3c6112ea565b73ffffffffffffffffffffffffffffffffffffffff1614611b92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8990614095565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611c02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bf990613e55565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000611cd882600261241490919063ffffffff16565b9050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611d5a83610e7e565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611dae8260000161242e565b9050919050565b6000611dc082611cc2565b611dff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611df690613f75565b60405180910390fd5b6000611e0a83610e7e565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611e7957508373ffffffffffffffffffffffffffffffffffffffff16611e6184610936565b73ffffffffffffffffffffffffffffffffffffffff16145b80611e8a5750611e898185611951565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611eb382610e7e565b73ffffffffffffffffffffffffffffffffffffffff1614611f09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f00906140b5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611f79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f7090613ed5565b60405180910390fd5b611f8483838361243f565b611f8f600082611ce7565b611fe081600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061244490919063ffffffff16565b5061203281600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061245e90919063ffffffff16565b50612049818360026124789092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60006120b983600001836124ad565b60001c905092915050565b6000806000806120d7866000018661251a565b915091508160001c8160001c9350935050509250929050565b8060099080519060200190612106929190612dac565b5050565b600061211d846000018460001b8461259d565b60001c90509392505050565b60006121378260000161262e565b9050919050565b600080828401905083811015612189576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161218090613eb5565b60405180910390fd5b8091505092915050565b6000808314156121a657600090506121fd565b60008284029050828482816121b757fe5b04146121f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121ef90614035565b60405180910390fd5b809150505b92915050565b61221d82826040518060200160405280600081525061263f565b5050565b61222c848484611e93565b6122388484848461269a565b612277576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161226e90613e35565b60405180910390fd5b50505050565b606060008214156122c5576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506123bf565b600082905060005b600082146122ef578080600101915050600a82816122e757fe5b0491506122cd565b60008167ffffffffffffffff8111801561230857600080fd5b506040519080825280601f01601f19166020018201604052801561233b5781602001600182028036833780820191505090505b50905060006001830390508593505b600084146123b757600a848161235c57fe5b0660300160f81b8282806001900393508151811061237657fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a84816123af57fe5b04935061234a565b819450505050505b919050565b600082821115612409576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161240090613f35565b60405180910390fd5b818303905092915050565b6000612426836000018360001b6127fe565b905092915050565b600081600001805490509050919050565b505050565b6000612456836000018360001b612821565b905092915050565b6000612470836000018360001b612909565b905092915050565b60006124a4846000018460001b8473ffffffffffffffffffffffffffffffffffffffff1660001b612979565b90509392505050565b6000818360000180549050116124f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124ef90613df5565b60405180910390fd5b82600001828154811061250757fe5b9060005260206000200154905092915050565b60008082846000018054905011612566576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161255d90613ff5565b60405180910390fd5b600084600001848154811061257757fe5b906000526020600020906002020190508060000154816001015492509250509250929050565b600080846001016000858152602001908152602001600020549050600081141583906125ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125f69190613dd3565b60405180910390fd5b5084600001600182038154811061261257fe5b9060005260206000209060020201600101549150509392505050565b600081600001805490509050919050565b6126498383612a55565b612656600084848461269a565b612695576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161268c90613e35565b60405180910390fd5b505050565b60006126bb8473ffffffffffffffffffffffffffffffffffffffff16612be3565b6126c857600190506127f6565b600061278f63150b7a0260e01b6126dd611cdf565b8887876040516024016126f39493929190613d4a565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff83818316178352505050506040518060600160405280603281526020016143c0603291398773ffffffffffffffffffffffffffffffffffffffff16612bf69092919063ffffffff16565b90506000818060200190518101906127a79190613160565b905063150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614925050505b949350505050565b600080836001016000848152602001908152602001600020541415905092915050565b600080836001016000848152602001908152602001600020549050600081146128fd576000600182039050600060018660000180549050039050600086600001828154811061286c57fe5b906000526020600020015490508087600001848154811061288957fe5b90600052602060002001819055506001830187600101600083815260200190815260200160002081905550866000018054806128c157fe5b60019003818190600052602060002001600090559055866001016000878152602001908152602001600020600090556001945050505050612903565b60009150505b92915050565b60006129158383612c0e565b61296e578260000182908060018154018082558091505060019003906000526020600020016000909190919091505582600001805490508360010160008481526020019081526020016000208190555060019050612973565b600090505b92915050565b6000808460010160008581526020019081526020016000205490506000811415612a2057846000016040518060400160405280868152602001858152509080600181540180825580915050600190039060005260206000209060020201600090919091909150600082015181600001556020820151816001015550508460000180549050856001016000868152602001908152602001600020819055506001915050612a4e565b82856000016001830381548110612a3357fe5b90600052602060002090600202016001018190555060009150505b9392505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612ac5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612abc90614015565b60405180910390fd5b612ace81611cc2565b15612b0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b0590613e95565b60405180910390fd5b612b1a6000838361243f565b612b6b81600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061245e90919063ffffffff16565b50612b82818360026124789092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b6060612c058484600085612c31565b90509392505050565b600080836001016000848152602001908152602001600020541415905092915050565b606082471015612c76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c6d90613f55565b60405180910390fd5b612c7f85612be3565b612cbe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cb590614135565b60405180910390fd5b6000808673ffffffffffffffffffffffffffffffffffffffff168587604051612ce79190613cf4565b60006040518083038185875af1925050503d8060008114612d24576040519150601f19603f3d011682016040523d82523d6000602084013e612d29565b606091505b5091509150612d39828286612d45565b92505050949350505050565b60608315612d5557829050612da5565b600083511115612d685782518084602001fd5b816040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d9c9190613dd3565b60405180910390fd5b9392505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282612de25760008555612e29565b82601f10612dfb57805160ff1916838001178555612e29565b82800160010185558215612e29579182015b82811115612e28578251825591602001919060010190612e0d565b5b509050612e369190612e3a565b5090565b5b80821115612e53576000816000905550600101612e3b565b5090565b6000612e6a612e65846141a1565b614170565b905082815260208101848484011115612e8257600080fd5b612e8d84828561430e565b509392505050565b6000612ea8612ea3846141d1565b614170565b905082815260208101848484011115612ec057600080fd5b612ecb84828561430e565b509392505050565b600081359050612ee281614363565b92915050565b600081359050612ef78161437a565b92915050565b600081359050612f0c81614391565b92915050565b600081519050612f2181614391565b92915050565b600082601f830112612f3857600080fd5b8135612f48848260208601612e57565b91505092915050565b600082601f830112612f6257600080fd5b8135612f72848260208601612e95565b91505092915050565b600081359050612f8a816143a8565b92915050565b600060208284031215612fa257600080fd5b6000612fb084828501612ed3565b91505092915050565b60008060408385031215612fcc57600080fd5b6000612fda85828601612ed3565b9250506020612feb85828601612ed3565b9150509250929050565b60008060006060848603121561300a57600080fd5b600061301886828701612ed3565b935050602061302986828701612ed3565b925050604061303a86828701612f7b565b9150509250925092565b6000806000806080858703121561305a57600080fd5b600061306887828801612ed3565b945050602061307987828801612ed3565b935050604061308a87828801612f7b565b925050606085013567ffffffffffffffff8111156130a757600080fd5b6130b387828801612f27565b91505092959194509250565b600080604083850312156130d257600080fd5b60006130e085828601612ed3565b92505060206130f185828601612ee8565b9150509250929050565b6000806040838503121561310e57600080fd5b600061311c85828601612ed3565b925050602061312d85828601612f7b565b9150509250929050565b60006020828403121561314957600080fd5b600061315784828501612efd565b91505092915050565b60006020828403121561317257600080fd5b600061318084828501612f12565b91505092915050565b60006020828403121561319b57600080fd5b600082013567ffffffffffffffff8111156131b557600080fd5b6131c184828501612f51565b91505092915050565b6000602082840312156131dc57600080fd5b60006131ea84828501612f7b565b91505092915050565b60006131ff8383613cd6565b60208301905092915050565b6132148161429a565b82525050565b61322381614288565b82525050565b600061323482614211565b61323e818561423f565b935061324983614201565b8060005b8381101561327a57815161326188826131f3565b975061326c83614232565b92505060018101905061324d565b5085935050505092915050565b613290816142ac565b82525050565b60006132a18261421c565b6132ab8185614250565b93506132bb81856020860161431d565b6132c481614352565b840191505092915050565b60006132da8261421c565b6132e48185614261565b93506132f481856020860161431d565b80840191505092915050565b600061330b82614227565b613315818561426c565b935061332581856020860161431d565b61332e81614352565b840191505092915050565b600061334482614227565b61334e818561427d565b935061335e81856020860161431d565b80840191505092915050565b600061337760228361426c565b91507f456e756d657261626c655365743a20696e646578206f7574206f6620626f756e60008301527f64730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006133dd60058361426c565b91507f4f68204e6f0000000000000000000000000000000000000000000000000000006000830152602082019050919050565b600061341d60328361426c565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b600061348360268361426c565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006134e9602d8361426c565b91507f507572636861736520776f756c6420657863656564206d617820737570706c7960008301527f206f6620436f6f6c50656e6773000000000000000000000000000000000000006020830152604082019050919050565b600061354f601c8361426c565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b600061358f601b8361426c565b91507f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006000830152602082019050919050565b60006135cf60248361426c565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061363560198361426c565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b6000613675601f8361426c565b91507f45746865722076616c75652073656e74206973206e6f7420636f7272656374006000830152602082019050919050565b60006136b5601e8361426c565b91507f536166654d6174683a207375627472616374696f6e206f766572666c6f7700006000830152602082019050919050565b60006136f560268361426c565b91507f416464726573733a20696e73756666696369656e742062616c616e636520666f60008301527f722063616c6c00000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061375b602c8361426c565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b60006137c160248361426c565b91507f596f752063616e206f6e6c79206d696e742032302050454e475320617420612060008301527f74696d65000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061382760388361426c565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b600061388d602a8361426c565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b60006138f360228361426c565b91507f456e756d657261626c654d61703a20696e646578206f7574206f6620626f756e60008301527f64730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061395960208361426c565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b600061399960218361426c565b91507f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60008301527f77000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006139ff602c8361426c565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000613a6560298361426c565b91507f53616c65206d7573742062652061637469766520746f206d696e74206120434f60008301527f4f4c50454e4755494e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000613acb60208361426c565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000613b0b60298361426c565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000613b71602f8361426c565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b6000613bd760218361426c565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613c3d60318361426c565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b6000613ca3601d8361426c565b91507f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006000830152602082019050919050565b613cdf81614304565b82525050565b613cee81614304565b82525050565b6000613d0082846132cf565b915081905092915050565b6000613d178285613339565b9150613d238284613339565b91508190509392505050565b6000602082019050613d44600083018461321a565b92915050565b6000608082019050613d5f600083018761320b565b613d6c602083018661321a565b613d796040830185613ce5565b8181036060830152613d8b8184613296565b905095945050505050565b60006020820190508181036000830152613db08184613229565b905092915050565b6000602082019050613dcd6000830184613287565b92915050565b60006020820190508181036000830152613ded8184613300565b905092915050565b60006020820190508181036000830152613e0e8161336a565b9050919050565b60006020820190508181036000830152613e2e816133d0565b9050919050565b60006020820190508181036000830152613e4e81613410565b9050919050565b60006020820190508181036000830152613e6e81613476565b9050919050565b60006020820190508181036000830152613e8e816134dc565b9050919050565b60006020820190508181036000830152613eae81613542565b9050919050565b60006020820190508181036000830152613ece81613582565b9050919050565b60006020820190508181036000830152613eee816135c2565b9050919050565b60006020820190508181036000830152613f0e81613628565b9050919050565b60006020820190508181036000830152613f2e81613668565b9050919050565b60006020820190508181036000830152613f4e816136a8565b9050919050565b60006020820190508181036000830152613f6e816136e8565b9050919050565b60006020820190508181036000830152613f8e8161374e565b9050919050565b60006020820190508181036000830152613fae816137b4565b9050919050565b60006020820190508181036000830152613fce8161381a565b9050919050565b60006020820190508181036000830152613fee81613880565b9050919050565b6000602082019050818103600083015261400e816138e6565b9050919050565b6000602082019050818103600083015261402e8161394c565b9050919050565b6000602082019050818103600083015261404e8161398c565b9050919050565b6000602082019050818103600083015261406e816139f2565b9050919050565b6000602082019050818103600083015261408e81613a58565b9050919050565b600060208201905081810360008301526140ae81613abe565b9050919050565b600060208201905081810360008301526140ce81613afe565b9050919050565b600060208201905081810360008301526140ee81613b64565b9050919050565b6000602082019050818103600083015261410e81613bca565b9050919050565b6000602082019050818103600083015261412e81613c30565b9050919050565b6000602082019050818103600083015261414e81613c96565b9050919050565b600060208201905061416a6000830184613ce5565b92915050565b6000604051905081810181811067ffffffffffffffff8211171561419757614196614350565b5b8060405250919050565b600067ffffffffffffffff8211156141bc576141bb614350565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff8211156141ec576141eb614350565b5b601f19601f8301169050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000614293826142e4565b9050919050565b60006142a5826142e4565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561433b578082015181840152602081019050614320565b8381111561434a576000848401525b50505050565bfe5b6000601f19601f8301169050919050565b61436c81614288565b811461437757600080fd5b50565b614383816142ac565b811461438e57600080fd5b50565b61439a816142b8565b81146143a557600080fd5b50565b6143b181614304565b81146143bc57600080fd5b5056fe4552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465724552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656ea26469706673582212209cc305c710276d076c0d32bf29387e6a73dad1e4327fed517257a1ea48b4047964736f6c63430007060033

Deployed Bytecode

0x6080604052600436106102045760003560e01c806370a0823111610118578063b5fa045b116100a0578063e045ec0b1161006f578063e045ec0b14610748578063e985e9c514610773578063eb8d2444146107b0578063eeee7026146107db578063f2fde38b1461080457610204565b8063b5fa045b1461068e578063b88d4fde146106b9578063c87b56dd146106e2578063d9d7e8c31461071f57610204565b80638da5cb5b116100e75780638da5cb5b146105c857806395d89b41146105f357806397313f501461061e57806398d5fdca1461063a578063a22cb4651461066557610204565b806370a082311461050c578063715018a614610549578063768482ef146105605780638462151c1461058b57610204565b80632f745c591161019b5780634f6ccce71161016a5780634f6ccce71461041357806355f804b3146104505780636104dfb7146104795780636352211e146104a45780636c0360eb146104e157610204565b80632f745c591461037f57806334918dfd146103bc5780633ccfd60b146103d357806342842e0e146103ea57610204565b806310969523116101d757806310969523146102d7578063125391331461030057806318160ddd1461032b57806323b872dd1461035657610204565b806301ffc9a71461020957806306fdde0314610246578063081812fc14610271578063095ea7b3146102ae575b600080fd5b34801561021557600080fd5b50610230600480360381019061022b9190613137565b61082d565b60405161023d9190613db8565b60405180910390f35b34801561025257600080fd5b5061025b610894565b6040516102689190613dd3565b60405180910390f35b34801561027d57600080fd5b50610298600480360381019061029391906131ca565b610936565b6040516102a59190613d2f565b60405180910390f35b3480156102ba57600080fd5b506102d560048036038101906102d091906130fb565b6109bb565b005b3480156102e357600080fd5b506102fe60048036038101906102f99190613189565b610ad3565b005b34801561030c57600080fd5b50610315610b69565b6040516103229190614155565b60405180910390f35b34801561033757600080fd5b50610340610b6e565b60405161034d9190614155565b60405180910390f35b34801561036257600080fd5b5061037d60048036038101906103789190612ff5565b610b7f565b005b34801561038b57600080fd5b506103a660048036038101906103a191906130fb565b610bdf565b6040516103b39190614155565b60405180910390f35b3480156103c857600080fd5b506103d1610c3a565b005b3480156103df57600080fd5b506103e8610ce2565b005b3480156103f657600080fd5b50610411600480360381019061040c9190612ff5565b610dad565b005b34801561041f57600080fd5b5061043a600480360381019061043591906131ca565b610dcd565b6040516104479190614155565b60405180910390f35b34801561045c57600080fd5b5061047760048036038101906104729190613189565b610df0565b005b34801561048557600080fd5b5061048e610e78565b60405161049b9190614155565b60405180910390f35b3480156104b057600080fd5b506104cb60048036038101906104c691906131ca565b610e7e565b6040516104d89190613d2f565b60405180910390f35b3480156104ed57600080fd5b506104f6610eb5565b6040516105039190613dd3565b60405180910390f35b34801561051857600080fd5b50610533600480360381019061052e9190612f90565b610f57565b6040516105409190614155565b60405180910390f35b34801561055557600080fd5b5061055e611016565b005b34801561056c57600080fd5b50610575611153565b6040516105829190613dd3565b60405180910390f35b34801561059757600080fd5b506105b260048036038101906105ad9190612f90565b6111f1565b6040516105bf9190613d96565b60405180910390f35b3480156105d457600080fd5b506105dd6112ea565b6040516105ea9190613d2f565b60405180910390f35b3480156105ff57600080fd5b50610608611314565b6040516106159190613dd3565b60405180910390f35b610638600480360381019061063391906131ca565b6113b6565b005b34801561064657600080fd5b5061064f61154f565b60405161065c9190614155565b60405180910390f35b34801561067157600080fd5b5061068c600480360381019061068791906130bf565b611559565b005b34801561069a57600080fd5b506106a36116da565b6040516106b09190614155565b60405180910390f35b3480156106c557600080fd5b506106e060048036038101906106db9190613044565b6116e0565b005b3480156106ee57600080fd5b50610709600480360381019061070491906131ca565b611742565b6040516107169190613dd3565b60405180910390f35b34801561072b57600080fd5b50610746600480360381019061074191906131ca565b6118c5565b005b34801561075457600080fd5b5061075d61194b565b60405161076a9190614155565b60405180910390f35b34801561077f57600080fd5b5061079a60048036038101906107959190612fb9565b611951565b6040516107a79190613db8565b60405180910390f35b3480156107bc57600080fd5b506107c56119e5565b6040516107d29190613db8565b60405180910390f35b3480156107e757600080fd5b5061080260048036038101906107fd91906130fb565b6119f8565b005b34801561081057600080fd5b5061082b60048036038101906108269190612f90565b611b16565b005b6000806000837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff169050919050565b606060068054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561092c5780601f106109015761010080835404028352916020019161092c565b820191906000526020600020905b81548152906001019060200180831161090f57829003601f168201915b5050505050905090565b600061094182611cc2565b610980576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161097790614055565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109c682610e7e565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2e906140f5565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a56611cdf565b73ffffffffffffffffffffffffffffffffffffffff161480610a855750610a8481610a7f611cdf565b611951565b5b610ac4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610abb90613fb5565b60405180910390fd5b610ace8383611ce7565b505050565b610adb611cdf565b73ffffffffffffffffffffffffffffffffffffffff16610af96112ea565b73ffffffffffffffffffffffffffffffffffffffff1614610b4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4690614095565b60405180910390fd5b80600b9080519060200190610b65929190612dac565b5050565b601481565b6000610b7a6002611da0565b905090565b610b90610b8a611cdf565b82611db5565b610bcf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc690614115565b60405180910390fd5b610bda838383611e93565b505050565b6000610c3282600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206120aa90919063ffffffff16565b905092915050565b610c42611cdf565b73ffffffffffffffffffffffffffffffffffffffff16610c606112ea565b73ffffffffffffffffffffffffffffffffffffffff1614610cb6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cad90614095565b60405180910390fd5b600d60009054906101000a900460ff1615600d60006101000a81548160ff021916908315150217905550565b610cea611cdf565b73ffffffffffffffffffffffffffffffffffffffff16610d086112ea565b73ffffffffffffffffffffffffffffffffffffffff1614610d5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5590614095565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610da9573d6000803e3d6000fd5b5050565b610dc8838383604051806020016040528060008152506116e0565b505050565b600080610de48360026120c490919063ffffffff16565b50905080915050919050565b610df8611cdf565b73ffffffffffffffffffffffffffffffffffffffff16610e166112ea565b73ffffffffffffffffffffffffffffffffffffffff1614610e6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6390614095565b60405180910390fd5b610e75816120f0565b50565b61271081565b6000610eae826040518060600160405280602981526020016143f260299139600261210a9092919063ffffffff16565b9050919050565b606060098054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610f4d5780601f10610f2257610100808354040283529160200191610f4d565b820191906000526020600020905b815481529060010190602001808311610f3057829003601f168201915b5050505050905090565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610fc8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fbf90613fd5565b60405180910390fd5b61100f600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020612129565b9050919050565b61101e611cdf565b73ffffffffffffffffffffffffffffffffffffffff1661103c6112ea565b73ffffffffffffffffffffffffffffffffffffffff1614611092576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108990614095565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b600b8054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156111e95780601f106111be576101008083540402835291602001916111e9565b820191906000526020600020905b8154815290600101906020018083116111cc57829003601f168201915b505050505081565b606060006111fe83610f57565b9050600081141561125957600067ffffffffffffffff8111801561122157600080fd5b506040519080825280602002602001820160405280156112505781602001602082028036833780820191505090505b509150506112e5565b60008167ffffffffffffffff8111801561127257600080fd5b506040519080825280602002602001820160405280156112a15781602001602082028036833780820191505090505b50905060005b828110156112de576112b98582610bdf565b8282815181106112c557fe5b60200260200101818152505080806001019150506112a7565b8193505050505b919050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060078054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156113ac5780601f10611381576101008083540402835291602001916113ac565b820191906000526020600020905b81548152906001019060200180831161138f57829003601f168201915b5050505050905090565b600d60009054906101000a900460ff16611405576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113fc90614075565b60405180910390fd5b600081118015611416575060148111155b611455576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144c90613f95565b60405180910390fd5b61271061147282611464610b6e565b61213e90919063ffffffff16565b11156114b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114aa90613e75565b60405180910390fd5b6114c881600c5461219390919063ffffffff16565b34101561150a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150190613f15565b60405180910390fd5b60005b8181101561154b57600061151f610b6e565b905061271061152c610b6e565b101561153d5761153c3382612203565b5b50808060010191505061150d565b5050565b6000600c54905090565b611561611cdf565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c690613ef5565b60405180910390fd5b80600560006115dc611cdf565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611689611cdf565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516116ce9190613db8565b60405180910390a35050565b600e5481565b6116f16116eb611cdf565b83611db5565b611730576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172790614115565b60405180910390fd5b61173c84848484612221565b50505050565b606061174d82611cc2565b61178c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611783906140d5565b60405180910390fd5b6000600860008481526020019081526020016000208054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156118355780601f1061180a57610100808354040283529160200191611835565b820191906000526020600020905b81548152906001019060200180831161181857829003601f168201915b505050505090506000611846610eb5565b905060008151141561185c5781925050506118c0565b600082511115611891578082604051602001611879929190613d0b565b604051602081830303815290604052925050506118c0565b8061189b8561227d565b6040516020016118ac929190613d0b565b604051602081830303815290604052925050505b919050565b6118cd611cdf565b73ffffffffffffffffffffffffffffffffffffffff166118eb6112ea565b73ffffffffffffffffffffffffffffffffffffffff1614611941576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193890614095565b60405180910390fd5b80600c8190555050565b600c5481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600d60009054906101000a900460ff1681565b611a00611cdf565b73ffffffffffffffffffffffffffffffffffffffff16611a1e6112ea565b73ffffffffffffffffffffffffffffffffffffffff1614611a74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6b90614095565b60405180910390fd5b6000611a7e610b6e565b9050600082118015611a925750600e548211155b611ad1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac890613e15565b60405180910390fd5b60005b82811015611af557611ae884828401612203565b8080600101915050611ad4565b50611b0b82600e546123c490919063ffffffff16565b600e81905550505050565b611b1e611cdf565b73ffffffffffffffffffffffffffffffffffffffff16611b3c6112ea565b73ffffffffffffffffffffffffffffffffffffffff1614611b92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8990614095565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611c02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bf990613e55565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000611cd882600261241490919063ffffffff16565b9050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611d5a83610e7e565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611dae8260000161242e565b9050919050565b6000611dc082611cc2565b611dff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611df690613f75565b60405180910390fd5b6000611e0a83610e7e565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611e7957508373ffffffffffffffffffffffffffffffffffffffff16611e6184610936565b73ffffffffffffffffffffffffffffffffffffffff16145b80611e8a5750611e898185611951565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611eb382610e7e565b73ffffffffffffffffffffffffffffffffffffffff1614611f09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f00906140b5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611f79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f7090613ed5565b60405180910390fd5b611f8483838361243f565b611f8f600082611ce7565b611fe081600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061244490919063ffffffff16565b5061203281600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061245e90919063ffffffff16565b50612049818360026124789092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60006120b983600001836124ad565b60001c905092915050565b6000806000806120d7866000018661251a565b915091508160001c8160001c9350935050509250929050565b8060099080519060200190612106929190612dac565b5050565b600061211d846000018460001b8461259d565b60001c90509392505050565b60006121378260000161262e565b9050919050565b600080828401905083811015612189576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161218090613eb5565b60405180910390fd5b8091505092915050565b6000808314156121a657600090506121fd565b60008284029050828482816121b757fe5b04146121f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121ef90614035565b60405180910390fd5b809150505b92915050565b61221d82826040518060200160405280600081525061263f565b5050565b61222c848484611e93565b6122388484848461269a565b612277576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161226e90613e35565b60405180910390fd5b50505050565b606060008214156122c5576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506123bf565b600082905060005b600082146122ef578080600101915050600a82816122e757fe5b0491506122cd565b60008167ffffffffffffffff8111801561230857600080fd5b506040519080825280601f01601f19166020018201604052801561233b5781602001600182028036833780820191505090505b50905060006001830390508593505b600084146123b757600a848161235c57fe5b0660300160f81b8282806001900393508151811061237657fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a84816123af57fe5b04935061234a565b819450505050505b919050565b600082821115612409576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161240090613f35565b60405180910390fd5b818303905092915050565b6000612426836000018360001b6127fe565b905092915050565b600081600001805490509050919050565b505050565b6000612456836000018360001b612821565b905092915050565b6000612470836000018360001b612909565b905092915050565b60006124a4846000018460001b8473ffffffffffffffffffffffffffffffffffffffff1660001b612979565b90509392505050565b6000818360000180549050116124f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124ef90613df5565b60405180910390fd5b82600001828154811061250757fe5b9060005260206000200154905092915050565b60008082846000018054905011612566576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161255d90613ff5565b60405180910390fd5b600084600001848154811061257757fe5b906000526020600020906002020190508060000154816001015492509250509250929050565b600080846001016000858152602001908152602001600020549050600081141583906125ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125f69190613dd3565b60405180910390fd5b5084600001600182038154811061261257fe5b9060005260206000209060020201600101549150509392505050565b600081600001805490509050919050565b6126498383612a55565b612656600084848461269a565b612695576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161268c90613e35565b60405180910390fd5b505050565b60006126bb8473ffffffffffffffffffffffffffffffffffffffff16612be3565b6126c857600190506127f6565b600061278f63150b7a0260e01b6126dd611cdf565b8887876040516024016126f39493929190613d4a565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff83818316178352505050506040518060600160405280603281526020016143c0603291398773ffffffffffffffffffffffffffffffffffffffff16612bf69092919063ffffffff16565b90506000818060200190518101906127a79190613160565b905063150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614925050505b949350505050565b600080836001016000848152602001908152602001600020541415905092915050565b600080836001016000848152602001908152602001600020549050600081146128fd576000600182039050600060018660000180549050039050600086600001828154811061286c57fe5b906000526020600020015490508087600001848154811061288957fe5b90600052602060002001819055506001830187600101600083815260200190815260200160002081905550866000018054806128c157fe5b60019003818190600052602060002001600090559055866001016000878152602001908152602001600020600090556001945050505050612903565b60009150505b92915050565b60006129158383612c0e565b61296e578260000182908060018154018082558091505060019003906000526020600020016000909190919091505582600001805490508360010160008481526020019081526020016000208190555060019050612973565b600090505b92915050565b6000808460010160008581526020019081526020016000205490506000811415612a2057846000016040518060400160405280868152602001858152509080600181540180825580915050600190039060005260206000209060020201600090919091909150600082015181600001556020820151816001015550508460000180549050856001016000868152602001908152602001600020819055506001915050612a4e565b82856000016001830381548110612a3357fe5b90600052602060002090600202016001018190555060009150505b9392505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612ac5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612abc90614015565b60405180910390fd5b612ace81611cc2565b15612b0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b0590613e95565b60405180910390fd5b612b1a6000838361243f565b612b6b81600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061245e90919063ffffffff16565b50612b82818360026124789092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b6060612c058484600085612c31565b90509392505050565b600080836001016000848152602001908152602001600020541415905092915050565b606082471015612c76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c6d90613f55565b60405180910390fd5b612c7f85612be3565b612cbe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cb590614135565b60405180910390fd5b6000808673ffffffffffffffffffffffffffffffffffffffff168587604051612ce79190613cf4565b60006040518083038185875af1925050503d8060008114612d24576040519150601f19603f3d011682016040523d82523d6000602084013e612d29565b606091505b5091509150612d39828286612d45565b92505050949350505050565b60608315612d5557829050612da5565b600083511115612d685782518084602001fd5b816040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d9c9190613dd3565b60405180910390fd5b9392505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282612de25760008555612e29565b82601f10612dfb57805160ff1916838001178555612e29565b82800160010185558215612e29579182015b82811115612e28578251825591602001919060010190612e0d565b5b509050612e369190612e3a565b5090565b5b80821115612e53576000816000905550600101612e3b565b5090565b6000612e6a612e65846141a1565b614170565b905082815260208101848484011115612e8257600080fd5b612e8d84828561430e565b509392505050565b6000612ea8612ea3846141d1565b614170565b905082815260208101848484011115612ec057600080fd5b612ecb84828561430e565b509392505050565b600081359050612ee281614363565b92915050565b600081359050612ef78161437a565b92915050565b600081359050612f0c81614391565b92915050565b600081519050612f2181614391565b92915050565b600082601f830112612f3857600080fd5b8135612f48848260208601612e57565b91505092915050565b600082601f830112612f6257600080fd5b8135612f72848260208601612e95565b91505092915050565b600081359050612f8a816143a8565b92915050565b600060208284031215612fa257600080fd5b6000612fb084828501612ed3565b91505092915050565b60008060408385031215612fcc57600080fd5b6000612fda85828601612ed3565b9250506020612feb85828601612ed3565b9150509250929050565b60008060006060848603121561300a57600080fd5b600061301886828701612ed3565b935050602061302986828701612ed3565b925050604061303a86828701612f7b565b9150509250925092565b6000806000806080858703121561305a57600080fd5b600061306887828801612ed3565b945050602061307987828801612ed3565b935050604061308a87828801612f7b565b925050606085013567ffffffffffffffff8111156130a757600080fd5b6130b387828801612f27565b91505092959194509250565b600080604083850312156130d257600080fd5b60006130e085828601612ed3565b92505060206130f185828601612ee8565b9150509250929050565b6000806040838503121561310e57600080fd5b600061311c85828601612ed3565b925050602061312d85828601612f7b565b9150509250929050565b60006020828403121561314957600080fd5b600061315784828501612efd565b91505092915050565b60006020828403121561317257600080fd5b600061318084828501612f12565b91505092915050565b60006020828403121561319b57600080fd5b600082013567ffffffffffffffff8111156131b557600080fd5b6131c184828501612f51565b91505092915050565b6000602082840312156131dc57600080fd5b60006131ea84828501612f7b565b91505092915050565b60006131ff8383613cd6565b60208301905092915050565b6132148161429a565b82525050565b61322381614288565b82525050565b600061323482614211565b61323e818561423f565b935061324983614201565b8060005b8381101561327a57815161326188826131f3565b975061326c83614232565b92505060018101905061324d565b5085935050505092915050565b613290816142ac565b82525050565b60006132a18261421c565b6132ab8185614250565b93506132bb81856020860161431d565b6132c481614352565b840191505092915050565b60006132da8261421c565b6132e48185614261565b93506132f481856020860161431d565b80840191505092915050565b600061330b82614227565b613315818561426c565b935061332581856020860161431d565b61332e81614352565b840191505092915050565b600061334482614227565b61334e818561427d565b935061335e81856020860161431d565b80840191505092915050565b600061337760228361426c565b91507f456e756d657261626c655365743a20696e646578206f7574206f6620626f756e60008301527f64730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006133dd60058361426c565b91507f4f68204e6f0000000000000000000000000000000000000000000000000000006000830152602082019050919050565b600061341d60328361426c565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b600061348360268361426c565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006134e9602d8361426c565b91507f507572636861736520776f756c6420657863656564206d617820737570706c7960008301527f206f6620436f6f6c50656e6773000000000000000000000000000000000000006020830152604082019050919050565b600061354f601c8361426c565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b600061358f601b8361426c565b91507f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006000830152602082019050919050565b60006135cf60248361426c565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061363560198361426c565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b6000613675601f8361426c565b91507f45746865722076616c75652073656e74206973206e6f7420636f7272656374006000830152602082019050919050565b60006136b5601e8361426c565b91507f536166654d6174683a207375627472616374696f6e206f766572666c6f7700006000830152602082019050919050565b60006136f560268361426c565b91507f416464726573733a20696e73756666696369656e742062616c616e636520666f60008301527f722063616c6c00000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061375b602c8361426c565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b60006137c160248361426c565b91507f596f752063616e206f6e6c79206d696e742032302050454e475320617420612060008301527f74696d65000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061382760388361426c565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b600061388d602a8361426c565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b60006138f360228361426c565b91507f456e756d657261626c654d61703a20696e646578206f7574206f6620626f756e60008301527f64730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061395960208361426c565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b600061399960218361426c565b91507f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60008301527f77000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006139ff602c8361426c565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000613a6560298361426c565b91507f53616c65206d7573742062652061637469766520746f206d696e74206120434f60008301527f4f4c50454e4755494e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000613acb60208361426c565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000613b0b60298361426c565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000613b71602f8361426c565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b6000613bd760218361426c565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613c3d60318361426c565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b6000613ca3601d8361426c565b91507f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006000830152602082019050919050565b613cdf81614304565b82525050565b613cee81614304565b82525050565b6000613d0082846132cf565b915081905092915050565b6000613d178285613339565b9150613d238284613339565b91508190509392505050565b6000602082019050613d44600083018461321a565b92915050565b6000608082019050613d5f600083018761320b565b613d6c602083018661321a565b613d796040830185613ce5565b8181036060830152613d8b8184613296565b905095945050505050565b60006020820190508181036000830152613db08184613229565b905092915050565b6000602082019050613dcd6000830184613287565b92915050565b60006020820190508181036000830152613ded8184613300565b905092915050565b60006020820190508181036000830152613e0e8161336a565b9050919050565b60006020820190508181036000830152613e2e816133d0565b9050919050565b60006020820190508181036000830152613e4e81613410565b9050919050565b60006020820190508181036000830152613e6e81613476565b9050919050565b60006020820190508181036000830152613e8e816134dc565b9050919050565b60006020820190508181036000830152613eae81613542565b9050919050565b60006020820190508181036000830152613ece81613582565b9050919050565b60006020820190508181036000830152613eee816135c2565b9050919050565b60006020820190508181036000830152613f0e81613628565b9050919050565b60006020820190508181036000830152613f2e81613668565b9050919050565b60006020820190508181036000830152613f4e816136a8565b9050919050565b60006020820190508181036000830152613f6e816136e8565b9050919050565b60006020820190508181036000830152613f8e8161374e565b9050919050565b60006020820190508181036000830152613fae816137b4565b9050919050565b60006020820190508181036000830152613fce8161381a565b9050919050565b60006020820190508181036000830152613fee81613880565b9050919050565b6000602082019050818103600083015261400e816138e6565b9050919050565b6000602082019050818103600083015261402e8161394c565b9050919050565b6000602082019050818103600083015261404e8161398c565b9050919050565b6000602082019050818103600083015261406e816139f2565b9050919050565b6000602082019050818103600083015261408e81613a58565b9050919050565b600060208201905081810360008301526140ae81613abe565b9050919050565b600060208201905081810360008301526140ce81613afe565b9050919050565b600060208201905081810360008301526140ee81613b64565b9050919050565b6000602082019050818103600083015261410e81613bca565b9050919050565b6000602082019050818103600083015261412e81613c30565b9050919050565b6000602082019050818103600083015261414e81613c96565b9050919050565b600060208201905061416a6000830184613ce5565b92915050565b6000604051905081810181811067ffffffffffffffff8211171561419757614196614350565b5b8060405250919050565b600067ffffffffffffffff8211156141bc576141bb614350565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff8211156141ec576141eb614350565b5b601f19601f8301169050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000614293826142e4565b9050919050565b60006142a5826142e4565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561433b578082015181840152602081019050614320565b8381111561434a576000848401525b50505050565bfe5b6000601f19601f8301169050919050565b61436c81614288565b811461437757600080fd5b50565b614383816142ac565b811461438e57600080fd5b50565b61439a816142b8565b81146143a557600080fd5b50565b6143b181614304565b81146143bc57600080fd5b5056fe4552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465724552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656ea26469706673582212209cc305c710276d076c0d32bf29387e6a73dad1e4327fed517257a1ea48b4047964736f6c63430007060033

Deployed Bytecode Sourcemap

67057:2926:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10233:150;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51518:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54304:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53834:404;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;68346:130;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;67266:46;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53312:211;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55194:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53074:162;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68593:89;;;;;;;;;;;;;:::i;:::-;;67585:141;;;;;;;;;;;;;:::i;:::-;;55570:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53600:172;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68484:99;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;67321:45;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51274:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52893:97;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50991:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66229:148;;;;;;;;;;;;;:::i;:::-;;67146:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68700:540;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65578:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51687:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;69252:721;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;68248:89;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54597:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;67480:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55792:285;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51862:792;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68132:112;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;67195:49;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54963:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67375:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67738:388;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;66532:244;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10233:150;10318:4;10342:20;:33;10363:11;10342:33;;;;;;;;;;;;;;;;;;;;;;;;;;;10335:40;;10233:150;;;:::o;51518:100::-;51572:13;51605:5;51598:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51518:100;:::o;54304:221::-;54380:7;54408:16;54416:7;54408;:16::i;:::-;54400:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;54493:15;:24;54509:7;54493:24;;;;;;;;;;;;;;;;;;;;;54486:31;;54304:221;;;:::o;53834:404::-;53915:13;53931:23;53946:7;53931:14;:23::i;:::-;53915:39;;53979:5;53973:11;;:2;:11;;;;53965:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;54059:5;54043:21;;:12;:10;:12::i;:::-;:21;;;:69;;;;54068:44;54092:5;54099:12;:10;:12::i;:::-;54068:23;:44::i;:::-;54043:69;54035:161;;;;;;;;;;;;:::i;:::-;;;;;;;;;54209:21;54218:2;54222:7;54209:8;:21::i;:::-;53834:404;;;:::o;68346:130::-;65809:12;:10;:12::i;:::-;65798:23;;:7;:5;:7::i;:::-;:23;;;65790:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;68454:14:::1;68431:20;:37;;;;;;;;;;;;:::i;:::-;;68346:130:::0;:::o;67266:46::-;67310:2;67266:46;:::o;53312:211::-;53373:7;53494:21;:12;:19;:21::i;:::-;53487:28;;53312:211;:::o;55194:305::-;55355:41;55374:12;:10;:12::i;:::-;55388:7;55355:18;:41::i;:::-;55347:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;55463:28;55473:4;55479:2;55483:7;55463:9;:28::i;:::-;55194:305;;;:::o;53074:162::-;53171:7;53198:30;53222:5;53198:13;:20;53212:5;53198:20;;;;;;;;;;;;;;;:23;;:30;;;;:::i;:::-;53191:37;;53074:162;;;;:::o;68593:89::-;65809:12;:10;:12::i;:::-;65798:23;;:7;:5;:7::i;:::-;:23;;;65790:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;68662:12:::1;;;;;;;;;;;68661:13;68646:12;;:28;;;;;;;;;;;;;;;;;;68593:89::o:0;67585:141::-;65809:12;:10;:12::i;:::-;65798:23;;:7;:5;:7::i;:::-;:23;;;65790:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;67633:12:::1;67648:21;67633:36;;67680:10;:19;;:28;67700:7;67680:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;65869:1;67585:141::o:0;55570:151::-;55674:39;55691:4;55697:2;55701:7;55674:39;;;;;;;;;;;;:16;:39::i;:::-;55570:151;;;:::o;53600:172::-;53675:7;53696:15;53717:22;53733:5;53717:12;:15;;:22;;;;:::i;:::-;53695:44;;;53757:7;53750:14;;;53600:172;;;:::o;68484:99::-;65809:12;:10;:12::i;:::-;65798:23;;:7;:5;:7::i;:::-;:23;;;65790:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;68555:20:::1;68567:7;68555:11;:20::i;:::-;68484:99:::0;:::o;67321:45::-;67361:5;67321:45;:::o;51274:177::-;51346:7;51373:70;51390:7;51373:70;;;;;;;;;;;;;;;;;:12;:16;;:70;;;;;:::i;:::-;51366:77;;51274:177;;;:::o;52893:97::-;52941:13;52974:8;52967:15;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52893:97;:::o;50991:221::-;51063:7;51108:1;51091:19;;:5;:19;;;;51083:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;51175:29;:13;:20;51189:5;51175:20;;;;;;;;;;;;;;;:27;:29::i;:::-;51168:36;;50991:221;;;:::o;66229:148::-;65809:12;:10;:12::i;:::-;65798:23;;:7;:5;:7::i;:::-;:23;;;65790:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;66336:1:::1;66299:40;;66320:6;;;;;;;;;;;66299:40;;;;;;;;;;;;66367:1;66350:6;;:19;;;;;;;;;;;;;;;;;;66229:148::o:0;67146:39::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;68700:540::-;68761:16;68791:18;68812:17;68822:6;68812:9;:17::i;:::-;68791:38;;68858:1;68844:10;:15;68840:393;;;68935:1;68921:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68914:23;;;;;68840:393;68970:23;69010:10;68996:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68970:51;;69036:13;69064:130;69088:10;69080:5;:18;69064:130;;;69144:34;69164:6;69172:5;69144:19;:34::i;:::-;69128:6;69135:5;69128:13;;;;;;;;;;;;;:50;;;;;69100:7;;;;;;;69064:130;;;69215:6;69208:13;;;;;68700:540;;;;:::o;65578:87::-;65624:7;65651:6;;;;;;;;;;;65644:13;;65578:87;:::o;51687:104::-;51743:13;51776:7;51769:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51687:104;:::o;69252:721::-;69330:12;;;;;;;;;;;69322:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;69424:1;69407:14;:18;:60;;;;;67310:2;69429:14;:38;;69407:60;69399:109;;;;;;;;;;;;:::i;:::-;;;;;;;;;67361:5;69527:33;69545:14;69527:13;:11;:13::i;:::-;:17;;:33;;;;:::i;:::-;:50;;69519:108;;;;;;;;;;;;:::i;:::-;;;;;;;;;69659:34;69678:14;69659;;:18;;:34;;;;:::i;:::-;69646:9;:47;;69638:91;;;;;;;;;;;;:::i;:::-;;;;;;;;;69754:6;69750:214;69770:14;69766:1;:18;69750:214;;;69806:14;69823:13;:11;:13::i;:::-;69806:30;;67361:5;69855:13;:11;:13::i;:::-;:29;69851:102;;;69905:32;69915:10;69927:9;69905;:32::i;:::-;69851:102;69750:214;69786:3;;;;;;;69750:214;;;;69252:721;:::o;68248:89::-;68289:7;68315:14;;68308:21;;68248:89;:::o;54597:295::-;54712:12;:10;:12::i;:::-;54700:24;;:8;:24;;;;54692:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;54812:8;54767:18;:32;54786:12;:10;:12::i;:::-;54767:32;;;;;;;;;;;;;;;:42;54800:8;54767:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;54865:8;54836:48;;54851:12;:10;:12::i;:::-;54836:48;;;54875:8;54836:48;;;;;;:::i;:::-;;;;;;;;54597:295;;:::o;67480:34::-;;;;:::o;55792:285::-;55924:41;55943:12;:10;:12::i;:::-;55957:7;55924:18;:41::i;:::-;55916:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;56030:39;56044:4;56050:2;56054:7;56063:5;56030:13;:39::i;:::-;55792:285;;;;:::o;51862:792::-;51935:13;51969:16;51977:7;51969;:16::i;:::-;51961:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;52050:23;52076:10;:19;52087:7;52076:19;;;;;;;;;;;52050:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52106:18;52127:9;:7;:9::i;:::-;52106:30;;52234:1;52218:4;52212:18;:23;52208:72;;;52259:9;52252:16;;;;;;52208:72;52410:1;52390:9;52384:23;:27;52380:108;;;52459:4;52465:9;52442:33;;;;;;;;;:::i;:::-;;;;;;;;;;;;;52428:48;;;;;;52380:108;52620:4;52626:18;:7;:16;:18::i;:::-;52603:42;;;;;;;;;:::i;:::-;;;;;;;;;;;;;52589:57;;;;51862:792;;;;:::o;68132:112::-;65809:12;:10;:12::i;:::-;65798:23;;:7;:5;:7::i;:::-;:23;;;65790:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;68223:13:::1;68206:14;:30;;;;68132:112:::0;:::o;67195:49::-;;;;:::o;54963:164::-;55060:4;55084:18;:25;55103:5;55084:25;;;;;;;;;;;;;;;:35;55110:8;55084:35;;;;;;;;;;;;;;;;;;;;;;;;;55077:42;;54963:164;;;;:::o;67375:32::-;;;;;;;;;;;;;:::o;67738:388::-;65809:12;:10;:12::i;:::-;65798:23;;:7;:5;:7::i;:::-;:23;;;65790:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;67833:11:::1;67847:13;:11;:13::i;:::-;67833:27;;67896:1;67879:14;:18;:56;;;;;67919:16;;67901:14;:34;;67879:56;67871:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;67961:6;67956:95;67977:14;67973:1;:18;67956:95;;;68013:26;68023:3;68037:1;68028:6;:10;68013:9;:26::i;:::-;67993:3;;;;;;;67956:95;;;;68074:36;68095:14;68074:16;;:20;;:36;;;;:::i;:::-;68055:16;:55;;;;65869:1;67738:388:::0;;:::o;66532:244::-;65809:12;:10;:12::i;:::-;65798:23;;:7;:5;:7::i;:::-;:23;;;65790:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;66641:1:::1;66621:22;;:8;:22;;;;66613:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;66731:8;66702:38;;66723:6;;;;;;;;;;;66702:38;;;;;;;;;;;;66760:8;66751:6;;:17;;;;;;;;;;;;;;;;;;66532:244:::0;:::o;57544:127::-;57609:4;57633:30;57655:7;57633:12;:21;;:30;;;;:::i;:::-;57626:37;;57544:127;;;:::o;665:106::-;718:15;753:10;746:17;;665:106;:::o;63562:192::-;63664:2;63637:15;:24;63653:7;63637:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;63720:7;63716:2;63682:46;;63691:23;63706:7;63691:14;:23::i;:::-;63682:46;;;;;;;;;;;;63562:192;;:::o;44276:123::-;44345:7;44372:19;44380:3;:10;;44372:7;:19::i;:::-;44365:26;;44276:123;;;:::o;57838:355::-;57931:4;57956:16;57964:7;57956;:16::i;:::-;57948:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;58032:13;58048:23;58063:7;58048:14;:23::i;:::-;58032:39;;58101:5;58090:16;;:7;:16;;;:51;;;;58134:7;58110:31;;:20;58122:7;58110:11;:20::i;:::-;:31;;;58090:51;:94;;;;58145:39;58169:5;58176:7;58145:23;:39::i;:::-;58090:94;58082:103;;;57838:355;;;;:::o;60974:599::-;61099:4;61072:31;;:23;61087:7;61072:14;:23::i;:::-;:31;;;61064:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;61200:1;61186:16;;:2;:16;;;;61178:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;61256:39;61277:4;61283:2;61287:7;61256:20;:39::i;:::-;61360:29;61377:1;61381:7;61360:8;:29::i;:::-;61402:35;61429:7;61402:13;:19;61416:4;61402:19;;;;;;;;;;;;;;;:26;;:35;;;;:::i;:::-;;61448:30;61470:7;61448:13;:17;61462:2;61448:17;;;;;;;;;;;;;;;:21;;:30;;;;:::i;:::-;;61491:29;61508:7;61517:2;61491:12;:16;;:29;;;;;:::i;:::-;;61557:7;61553:2;61538:27;;61547:4;61538:27;;;;;;;;;;;;60974:599;;;:::o;36067:137::-;36138:7;36173:22;36177:3;:10;;36189:5;36173:3;:22::i;:::-;36165:31;;36158:38;;36067:137;;;;:::o;44738:236::-;44818:7;44827;44848:11;44861:13;44878:22;44882:3;:10;;44894:5;44878:3;:22::i;:::-;44847:53;;;;44927:3;44919:12;;44957:5;44949:14;;44911:55;;;;;;44738:236;;;;;:::o;62174:100::-;62258:8;62247;:19;;;;;;;;;;;;:::i;:::-;;62174:100;:::o;46024:213::-;46131:7;46182:44;46187:3;:10;;46207:3;46199:12;;46213;46182:4;:44::i;:::-;46174:53;;46151:78;;46024:213;;;;;:::o;35609:114::-;35669:7;35696:19;35704:3;:10;;35696:7;:19::i;:::-;35689:26;;35609:114;;;:::o;13795:179::-;13853:7;13873:9;13889:1;13885;:5;13873:17;;13914:1;13909;:6;;13901:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;13965:1;13958:8;;;13795:179;;;;:::o;14674:220::-;14732:7;14761:1;14756;:6;14752:20;;;14771:1;14764:8;;;;14752:20;14783:9;14799:1;14795;:5;14783:17;;14828:1;14823;14819;:5;;;;;;:10;14811:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;14885:1;14878:8;;;14674:220;;;;;:::o;58536:110::-;58612:26;58622:2;58626:7;58612:26;;;;;;;;;;;;:9;:26::i;:::-;58536:110;;:::o;56959:272::-;57073:28;57083:4;57089:2;57093:7;57073:9;:28::i;:::-;57120:48;57143:4;57149:2;57153:7;57162:5;57120:22;:48::i;:::-;57112:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;56959:272;;;;:::o;46488:746::-;46544:13;46774:1;46765:5;:10;46761:53;;;46792:10;;;;;;;;;;;;;;;;;;;;;46761:53;46824:12;46839:5;46824:20;;46855:14;46880:78;46895:1;46887:4;:9;46880:78;;46913:8;;;;;;;46944:2;46936:10;;;;;;;;;46880:78;;;46968:19;47000:6;46990:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46968:39;;47018:13;47043:1;47034:6;:10;47018:26;;47062:5;47055:12;;47078:117;47093:1;47085:4;:9;47078:117;;47154:2;47147:4;:9;;;;;;47142:2;:14;47129:29;;47111:6;47118:7;;;;;;;47111:15;;;;;;;;;;;:47;;;;;;;;;;;47181:2;47173:10;;;;;;;;;47078:117;;;47219:6;47205:21;;;;;;46488:746;;;;:::o;14257:158::-;14315:7;14348:1;14343;:6;;14335:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;14406:1;14402;:5;14395:12;;14257:158;;;;:::o;44037:151::-;44121:4;44145:35;44155:3;:10;;44175:3;44167:12;;44145:9;:35::i;:::-;44138:42;;44037:151;;;;:::o;40855:110::-;40911:7;40938:3;:12;;:19;;;;40931:26;;40855:110;;;:::o;64367:93::-;;;;:::o;35154:137::-;35224:4;35248:35;35256:3;:10;;35276:5;35268:14;;35248:7;:35::i;:::-;35241:42;;35154:137;;;;:::o;34847:131::-;34914:4;34938:32;34943:3;:10;;34963:5;34955:14;;34938:4;:32::i;:::-;34931:39;;34847:131;;;;:::o;43460:185::-;43549:4;43573:64;43578:3;:10;;43598:3;43590:12;;43628:5;43612:23;;43604:32;;43573:4;:64::i;:::-;43566:71;;43460:185;;;;;:::o;31105:204::-;31172:7;31221:5;31200:3;:11;;:18;;;;:26;31192:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;31283:3;:11;;31295:5;31283:18;;;;;;;;;;;;;;;;31276:25;;31105:204;;;;:::o;41320:279::-;41387:7;41396;41446:5;41424:3;:12;;:19;;;;:27;41416:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;41503:22;41528:3;:12;;41541:5;41528:19;;;;;;;;;;;;;;;;;;41503:44;;41566:5;:10;;;41578:5;:12;;;41558:33;;;;;41320:279;;;;;:::o;42817:319::-;42911:7;42931:16;42950:3;:12;;:17;42963:3;42950:17;;;;;;;;;;;;42931:36;;42998:1;42986:8;:13;;43001:12;42978:36;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;43068:3;:12;;43092:1;43081:8;:12;43068:26;;;;;;;;;;;;;;;;;;:33;;;43061:40;;;42817:319;;;;;:::o;30652:109::-;30708:7;30735:3;:11;;:18;;;;30728:25;;30652:109;;;:::o;58873:250::-;58969:18;58975:2;58979:7;58969:5;:18::i;:::-;59006:54;59037:1;59041:2;59045:7;59054:5;59006:22;:54::i;:::-;58998:117;;;;;;;;;;;;:::i;:::-;;;;;;;;;58873:250;;;:::o;62839:604::-;62960:4;62987:15;:2;:13;;;:15::i;:::-;62982:60;;63026:4;63019:11;;;;62982:60;63052:23;63078:252;63131:45;;;63191:12;:10;:12::i;:::-;63218:4;63237:7;63259:5;63094:181;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63078:252;;;;;;;;;;;;;;;;;:2;:15;;;;:252;;;;;:::i;:::-;63052:278;;63341:13;63368:10;63357:32;;;;;;;;;;;;:::i;:::-;63341:48;;47988:10;63418:16;;63408:26;;;:6;:26;;;;63400:35;;;;62839:604;;;;;;;:::o;40635:125::-;40706:4;40751:1;40730:3;:12;;:17;40743:3;40730:17;;;;;;;;;;;;:22;;40723:29;;40635:125;;;;:::o;28807:1544::-;28873:4;28991:18;29012:3;:12;;:19;29025:5;29012:19;;;;;;;;;;;;28991:40;;29062:1;29048:10;:15;29044:1300;;29410:21;29447:1;29434:10;:14;29410:38;;29463:17;29504:1;29483:3;:11;;:18;;;;:22;29463:42;;29750:17;29770:3;:11;;29782:9;29770:22;;;;;;;;;;;;;;;;29750:42;;29916:9;29887:3;:11;;29899:13;29887:26;;;;;;;;;;;;;;;:38;;;;30035:1;30019:13;:17;29993:3;:12;;:23;30006:9;29993:23;;;;;;;;;;;:43;;;;30145:3;:11;;:17;;;;;;;;;;;;;;;;;;;;;;;;30240:3;:12;;:19;30253:5;30240:19;;;;;;;;;;;30233:26;;;30283:4;30276:11;;;;;;;;29044:1300;30327:5;30320:12;;;28807:1544;;;;;:::o;28217:414::-;28280:4;28302:21;28312:3;28317:5;28302:9;:21::i;:::-;28297:327;;28340:3;:11;;28357:5;28340:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28523:3;:11;;:18;;;;28501:3;:12;;:19;28514:5;28501:19;;;;;;;;;;;:40;;;;28563:4;28556:11;;;;28297:327;28607:5;28600:12;;28217:414;;;;;:::o;38135:692::-;38211:4;38327:16;38346:3;:12;;:17;38359:3;38346:17;;;;;;;;;;;;38327:36;;38392:1;38380:8;:13;38376:444;;;38447:3;:12;;38465:38;;;;;;;;38482:3;38465:38;;;;38495:5;38465:38;;;38447:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38662:3;:12;;:19;;;;38642:3;:12;;:17;38655:3;38642:17;;;;;;;;;;;:39;;;;38703:4;38696:11;;;;;38376:444;38776:5;38740:3;:12;;38764:1;38753:8;:12;38740:26;;;;;;;;;;;;;;;;;;:33;;:41;;;;38803:5;38796:12;;;38135:692;;;;;;:::o;59459:404::-;59553:1;59539:16;;:2;:16;;;;59531:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;59612:16;59620:7;59612;:16::i;:::-;59611:17;59603:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;59674:45;59703:1;59707:2;59711:7;59674:20;:45::i;:::-;59732:30;59754:7;59732:13;:17;59746:2;59732:17;;;;;;;;;;;;;;;:21;;:30;;;;:::i;:::-;;59775:29;59792:7;59801:2;59775:12;:16;;:29;;;;;:::i;:::-;;59847:7;59843:2;59822:33;;59839:1;59822:33;;;;;;;;;;;;59459:404;;:::o;19236:422::-;19296:4;19504:12;19615:7;19603:20;19595:28;;19649:1;19642:4;:8;19635:15;;;19236:422;;;:::o;22154:195::-;22257:12;22289:52;22311:6;22319:4;22325:1;22328:12;22289:21;:52::i;:::-;22282:59;;22154:195;;;;;:::o;30437:129::-;30510:4;30557:1;30534:3;:12;;:19;30547:5;30534:19;;;;;;;;;;;;:24;;30527:31;;30437:129;;;;:::o;23206:530::-;23333:12;23391:5;23366:21;:30;;23358:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;23458:18;23469:6;23458:10;:18::i;:::-;23450:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;23584:12;23598:23;23625:6;:11;;23645:5;23653:4;23625:33;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23583:75;;;;23676:52;23694:7;23703:10;23715:12;23676:17;:52::i;:::-;23669:59;;;;23206:530;;;;;;:::o;25746:742::-;25861:12;25890:7;25886:595;;;25921:10;25914:17;;;;25886:595;26055:1;26035:10;:17;:21;26031:439;;;26298:10;26292:17;26359:15;26346:10;26342:2;26338:19;26331:44;26246:148;26441:12;26434:20;;;;;;;;;;;:::i;:::-;;;;;;;;25746:742;;;;;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::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:179::-;;6174:46;6216:3;6208:6;6174:46;:::i;:::-;6252:4;6247:3;6243:14;6229:28;;6164:99;;;;:::o;6269:142::-;6372:32;6398:5;6372:32;:::i;:::-;6367:3;6360:45;6350:61;;:::o;6417:118::-;6504:24;6522:5;6504:24;:::i;:::-;6499:3;6492:37;6482:53;;:::o;6571:732::-;;6719:54;6767:5;6719:54;:::i;:::-;6789:86;6868:6;6863:3;6789:86;:::i;:::-;6782:93;;6899:56;6949:5;6899:56;:::i;:::-;6978:7;7009:1;6994:284;7019:6;7016:1;7013:13;6994:284;;;7095:6;7089:13;7122:63;7181:3;7166:13;7122:63;:::i;:::-;7115:70;;7208:60;7261:6;7208:60;:::i;:::-;7198:70;;7054:224;7041:1;7038;7034:9;7029:14;;6994:284;;;6998:14;7294:3;7287:10;;6695:608;;;;;;;:::o;7309:109::-;7390:21;7405:5;7390:21;:::i;:::-;7385:3;7378:34;7368:50;;:::o;7424:360::-;;7538:38;7570:5;7538:38;:::i;:::-;7592:70;7655:6;7650:3;7592:70;:::i;:::-;7585:77;;7671:52;7716:6;7711:3;7704:4;7697:5;7693:16;7671:52;:::i;:::-;7748:29;7770:6;7748:29;:::i;:::-;7743:3;7739:39;7732:46;;7514:270;;;;;:::o;7790:373::-;;7922:38;7954:5;7922:38;:::i;:::-;7976:88;8057:6;8052:3;7976:88;:::i;:::-;7969:95;;8073:52;8118:6;8113:3;8106:4;8099:5;8095:16;8073:52;:::i;:::-;8150:6;8145:3;8141:16;8134:23;;7898:265;;;;;:::o;8169:364::-;;8285:39;8318:5;8285:39;:::i;:::-;8340:71;8404:6;8399:3;8340:71;:::i;:::-;8333:78;;8420:52;8465:6;8460:3;8453:4;8446:5;8442:16;8420:52;:::i;:::-;8497:29;8519:6;8497:29;:::i;:::-;8492:3;8488:39;8481:46;;8261:272;;;;;:::o;8539:377::-;;8673:39;8706:5;8673:39;:::i;:::-;8728:89;8810:6;8805:3;8728:89;:::i;:::-;8721:96;;8826:52;8871:6;8866:3;8859:4;8852:5;8848:16;8826:52;:::i;:::-;8903:6;8898:3;8894:16;8887:23;;8649:267;;;;;:::o;8922:366::-;;9085:67;9149:2;9144:3;9085:67;:::i;:::-;9078:74;;9182:34;9178:1;9173:3;9169:11;9162:55;9248:4;9243:2;9238:3;9234:12;9227:26;9279:2;9274:3;9270:12;9263:19;;9068:220;;;:::o;9294:302::-;;9457:66;9521:1;9516:3;9457:66;:::i;:::-;9450:73;;9553:7;9549:1;9544:3;9540:11;9533:28;9587:2;9582:3;9578:12;9571:19;;9440:156;;;:::o;9602:382::-;;9765:67;9829:2;9824:3;9765:67;:::i;:::-;9758:74;;9862:34;9858:1;9853:3;9849:11;9842:55;9928:20;9923:2;9918:3;9914:12;9907:42;9975:2;9970:3;9966:12;9959:19;;9748:236;;;:::o;9990:370::-;;10153:67;10217:2;10212:3;10153:67;:::i;:::-;10146:74;;10250:34;10246:1;10241:3;10237:11;10230:55;10316:8;10311:2;10306:3;10302:12;10295:30;10351:2;10346:3;10342:12;10335:19;;10136:224;;;:::o;10366:377::-;;10529:67;10593:2;10588:3;10529:67;:::i;:::-;10522:74;;10626:34;10622:1;10617:3;10613:11;10606:55;10692:15;10687:2;10682:3;10678:12;10671:37;10734:2;10729:3;10725:12;10718:19;;10512:231;;;:::o;10749:326::-;;10912:67;10976:2;10971:3;10912:67;:::i;:::-;10905:74;;11009:30;11005:1;11000:3;10996:11;10989:51;11066:2;11061:3;11057:12;11050:19;;10895:180;;;:::o;11081:325::-;;11244:67;11308:2;11303:3;11244:67;:::i;:::-;11237:74;;11341:29;11337:1;11332:3;11328:11;11321:50;11397:2;11392:3;11388:12;11381:19;;11227:179;;;:::o;11412:368::-;;11575:67;11639:2;11634:3;11575:67;:::i;:::-;11568:74;;11672:34;11668:1;11663:3;11659:11;11652:55;11738:6;11733:2;11728:3;11724:12;11717:28;11771:2;11766:3;11762:12;11755:19;;11558:222;;;:::o;11786:323::-;;11949:67;12013:2;12008:3;11949:67;:::i;:::-;11942:74;;12046:27;12042:1;12037:3;12033:11;12026:48;12100:2;12095:3;12091:12;12084:19;;11932:177;;;:::o;12115:329::-;;12278:67;12342:2;12337:3;12278:67;:::i;:::-;12271:74;;12375:33;12371:1;12366:3;12362:11;12355:54;12435:2;12430:3;12426:12;12419:19;;12261:183;;;:::o;12450:328::-;;12613:67;12677:2;12672:3;12613:67;:::i;:::-;12606:74;;12710:32;12706:1;12701:3;12697:11;12690:53;12769:2;12764:3;12760:12;12753:19;;12596:182;;;:::o;12784:370::-;;12947:67;13011:2;13006:3;12947:67;:::i;:::-;12940:74;;13044:34;13040:1;13035:3;13031:11;13024:55;13110:8;13105:2;13100:3;13096:12;13089:30;13145:2;13140:3;13136:12;13129:19;;12930:224;;;:::o;13160:376::-;;13323:67;13387:2;13382:3;13323:67;:::i;:::-;13316:74;;13420:34;13416:1;13411:3;13407:11;13400:55;13486:14;13481:2;13476:3;13472:12;13465:36;13527:2;13522:3;13518:12;13511:19;;13306:230;;;:::o;13542:368::-;;13705:67;13769:2;13764:3;13705:67;:::i;:::-;13698:74;;13802:34;13798:1;13793:3;13789:11;13782:55;13868:6;13863:2;13858:3;13854:12;13847:28;13901:2;13896:3;13892:12;13885:19;;13688:222;;;:::o;13916:388::-;;14079:67;14143:2;14138:3;14079:67;:::i;:::-;14072:74;;14176:34;14172:1;14167:3;14163:11;14156:55;14242:26;14237:2;14232:3;14228:12;14221:48;14295:2;14290:3;14286:12;14279:19;;14062:242;;;:::o;14310:374::-;;14473:67;14537:2;14532:3;14473:67;:::i;:::-;14466:74;;14570:34;14566:1;14561:3;14557:11;14550:55;14636:12;14631:2;14626:3;14622:12;14615:34;14675:2;14670:3;14666:12;14659:19;;14456:228;;;:::o;14690:366::-;;14853:67;14917:2;14912:3;14853:67;:::i;:::-;14846:74;;14950:34;14946:1;14941:3;14937:11;14930:55;15016:4;15011:2;15006:3;15002:12;14995:26;15047:2;15042:3;15038:12;15031:19;;14836:220;;;:::o;15062:330::-;;15225:67;15289:2;15284:3;15225:67;:::i;:::-;15218:74;;15322:34;15318:1;15313:3;15309:11;15302:55;15383:2;15378:3;15374:12;15367:19;;15208:184;;;:::o;15398:365::-;;15561:67;15625:2;15620:3;15561:67;:::i;:::-;15554:74;;15658:34;15654:1;15649:3;15645:11;15638:55;15724:3;15719:2;15714:3;15710:12;15703:25;15754:2;15749:3;15745:12;15738:19;;15544:219;;;:::o;15769:376::-;;15932:67;15996:2;15991:3;15932:67;:::i;:::-;15925:74;;16029:34;16025:1;16020:3;16016:11;16009:55;16095:14;16090:2;16085:3;16081:12;16074:36;16136:2;16131:3;16127:12;16120:19;;15915:230;;;:::o;16151:373::-;;16314:67;16378:2;16373:3;16314:67;:::i;:::-;16307:74;;16411:34;16407:1;16402:3;16398:11;16391:55;16477:11;16472:2;16467:3;16463:12;16456:33;16515:2;16510:3;16506:12;16499:19;;16297:227;;;:::o;16530:330::-;;16693:67;16757:2;16752:3;16693:67;:::i;:::-;16686:74;;16790:34;16786:1;16781:3;16777:11;16770:55;16851:2;16846:3;16842:12;16835:19;;16676:184;;;:::o;16866:373::-;;17029:67;17093:2;17088:3;17029:67;:::i;:::-;17022:74;;17126:34;17122:1;17117:3;17113:11;17106:55;17192:11;17187:2;17182:3;17178:12;17171:33;17230:2;17225:3;17221:12;17214:19;;17012:227;;;:::o;17245:379::-;;17408:67;17472:2;17467:3;17408:67;:::i;:::-;17401:74;;17505:34;17501:1;17496:3;17492:11;17485:55;17571:17;17566:2;17561:3;17557:12;17550:39;17615:2;17610:3;17606:12;17599:19;;17391:233;;;:::o;17630:365::-;;17793:67;17857:2;17852:3;17793:67;:::i;:::-;17786:74;;17890:34;17886:1;17881:3;17877:11;17870:55;17956:3;17951:2;17946:3;17942:12;17935:25;17986:2;17981:3;17977:12;17970:19;;17776:219;;;:::o;18001:381::-;;18164:67;18228:2;18223:3;18164:67;:::i;:::-;18157:74;;18261:34;18257:1;18252:3;18248:11;18241:55;18327:19;18322:2;18317:3;18313:12;18306:41;18373:2;18368:3;18364:12;18357:19;;18147:235;;;:::o;18388:327::-;;18551:67;18615:2;18610:3;18551:67;:::i;:::-;18544:74;;18648:31;18644:1;18639:3;18635:11;18628:52;18706:2;18701:3;18697:12;18690:19;;18534:181;;;:::o;18721:108::-;18798:24;18816:5;18798:24;:::i;:::-;18793:3;18786:37;18776:53;;:::o;18835:118::-;18922:24;18940:5;18922:24;:::i;:::-;18917:3;18910:37;18900:53;;:::o;18959:271::-;;19111:93;19200:3;19191:6;19111:93;:::i;:::-;19104:100;;19221:3;19214:10;;19093:137;;;;:::o;19236:435::-;;19438:95;19529:3;19520:6;19438:95;:::i;:::-;19431:102;;19550:95;19641:3;19632:6;19550:95;:::i;:::-;19543:102;;19662:3;19655:10;;19420:251;;;;;:::o;19677:222::-;;19808:2;19797:9;19793:18;19785:26;;19821:71;19889:1;19878:9;19874:17;19865:6;19821:71;:::i;:::-;19775:124;;;;:::o;19905:672::-;;20154:3;20143:9;20139:19;20131:27;;20168:87;20252:1;20241:9;20237:17;20228:6;20168:87;:::i;:::-;20265:72;20333:2;20322:9;20318:18;20309:6;20265:72;:::i;:::-;20347;20415:2;20404:9;20400:18;20391:6;20347:72;:::i;:::-;20466:9;20460:4;20456:20;20451:2;20440:9;20436:18;20429:48;20494:76;20565:4;20556:6;20494:76;:::i;:::-;20486:84;;20121:456;;;;;;;:::o;20583:373::-;;20764:2;20753:9;20749:18;20741:26;;20813:9;20807:4;20803:20;20799:1;20788:9;20784:17;20777:47;20841:108;20944:4;20935:6;20841:108;:::i;:::-;20833:116;;20731:225;;;;:::o;20962:210::-;;21087:2;21076:9;21072:18;21064:26;;21100:65;21162:1;21151:9;21147:17;21138:6;21100:65;:::i;:::-;21054:118;;;;:::o;21178:313::-;;21329:2;21318:9;21314:18;21306:26;;21378:9;21372:4;21368:20;21364:1;21353:9;21349:17;21342:47;21406:78;21479:4;21470:6;21406:78;:::i;:::-;21398:86;;21296:195;;;;:::o;21497:419::-;;21701:2;21690:9;21686:18;21678:26;;21750:9;21744:4;21740:20;21736:1;21725:9;21721:17;21714:47;21778:131;21904:4;21778:131;:::i;:::-;21770:139;;21668:248;;;:::o;21922:419::-;;22126:2;22115:9;22111:18;22103:26;;22175:9;22169:4;22165:20;22161:1;22150:9;22146:17;22139:47;22203:131;22329:4;22203:131;:::i;:::-;22195:139;;22093:248;;;:::o;22347:419::-;;22551:2;22540:9;22536:18;22528:26;;22600:9;22594:4;22590:20;22586:1;22575:9;22571:17;22564:47;22628:131;22754:4;22628:131;:::i;:::-;22620:139;;22518:248;;;:::o;22772:419::-;;22976:2;22965:9;22961:18;22953:26;;23025:9;23019:4;23015:20;23011:1;23000:9;22996:17;22989:47;23053:131;23179:4;23053:131;:::i;:::-;23045:139;;22943:248;;;:::o;23197:419::-;;23401:2;23390:9;23386:18;23378:26;;23450:9;23444:4;23440:20;23436:1;23425:9;23421:17;23414:47;23478:131;23604:4;23478:131;:::i;:::-;23470:139;;23368:248;;;:::o;23622:419::-;;23826:2;23815:9;23811:18;23803:26;;23875:9;23869:4;23865:20;23861:1;23850:9;23846:17;23839:47;23903:131;24029:4;23903:131;:::i;:::-;23895:139;;23793:248;;;:::o;24047:419::-;;24251:2;24240:9;24236:18;24228:26;;24300:9;24294:4;24290:20;24286:1;24275:9;24271:17;24264:47;24328:131;24454:4;24328:131;:::i;:::-;24320:139;;24218:248;;;:::o;24472:419::-;;24676:2;24665:9;24661:18;24653:26;;24725:9;24719:4;24715:20;24711:1;24700:9;24696:17;24689:47;24753:131;24879:4;24753:131;:::i;:::-;24745:139;;24643:248;;;:::o;24897:419::-;;25101:2;25090:9;25086:18;25078:26;;25150:9;25144:4;25140:20;25136:1;25125:9;25121:17;25114:47;25178:131;25304:4;25178:131;:::i;:::-;25170:139;;25068:248;;;:::o;25322:419::-;;25526:2;25515:9;25511:18;25503:26;;25575:9;25569:4;25565:20;25561:1;25550:9;25546:17;25539:47;25603:131;25729:4;25603:131;:::i;:::-;25595:139;;25493:248;;;:::o;25747:419::-;;25951:2;25940:9;25936:18;25928:26;;26000:9;25994:4;25990:20;25986:1;25975:9;25971:17;25964:47;26028:131;26154:4;26028:131;:::i;:::-;26020:139;;25918:248;;;:::o;26172:419::-;;26376:2;26365:9;26361:18;26353:26;;26425:9;26419:4;26415:20;26411:1;26400:9;26396:17;26389:47;26453:131;26579:4;26453:131;:::i;:::-;26445:139;;26343:248;;;:::o;26597:419::-;;26801:2;26790:9;26786:18;26778:26;;26850:9;26844:4;26840:20;26836:1;26825:9;26821:17;26814:47;26878:131;27004:4;26878:131;:::i;:::-;26870:139;;26768:248;;;:::o;27022:419::-;;27226:2;27215:9;27211:18;27203:26;;27275:9;27269:4;27265:20;27261:1;27250:9;27246:17;27239:47;27303:131;27429:4;27303:131;:::i;:::-;27295:139;;27193:248;;;:::o;27447:419::-;;27651:2;27640:9;27636:18;27628:26;;27700:9;27694:4;27690:20;27686:1;27675:9;27671:17;27664:47;27728:131;27854:4;27728:131;:::i;:::-;27720:139;;27618:248;;;:::o;27872:419::-;;28076:2;28065:9;28061:18;28053:26;;28125:9;28119:4;28115:20;28111:1;28100:9;28096:17;28089:47;28153:131;28279:4;28153:131;:::i;:::-;28145:139;;28043:248;;;:::o;28297:419::-;;28501:2;28490:9;28486:18;28478:26;;28550:9;28544:4;28540:20;28536:1;28525:9;28521:17;28514:47;28578:131;28704:4;28578:131;:::i;:::-;28570:139;;28468:248;;;:::o;28722:419::-;;28926:2;28915:9;28911:18;28903:26;;28975:9;28969:4;28965:20;28961:1;28950:9;28946:17;28939:47;29003:131;29129:4;29003:131;:::i;:::-;28995:139;;28893:248;;;:::o;29147:419::-;;29351:2;29340:9;29336:18;29328:26;;29400:9;29394:4;29390:20;29386:1;29375:9;29371:17;29364:47;29428:131;29554:4;29428:131;:::i;:::-;29420:139;;29318:248;;;:::o;29572:419::-;;29776:2;29765:9;29761:18;29753:26;;29825:9;29819:4;29815:20;29811:1;29800:9;29796:17;29789:47;29853:131;29979:4;29853:131;:::i;:::-;29845:139;;29743:248;;;:::o;29997:419::-;;30201:2;30190:9;30186:18;30178:26;;30250:9;30244:4;30240:20;30236:1;30225:9;30221:17;30214:47;30278:131;30404:4;30278:131;:::i;:::-;30270:139;;30168:248;;;:::o;30422:419::-;;30626:2;30615:9;30611:18;30603:26;;30675:9;30669:4;30665:20;30661:1;30650:9;30646:17;30639:47;30703:131;30829:4;30703:131;:::i;:::-;30695:139;;30593:248;;;:::o;30847:419::-;;31051:2;31040:9;31036:18;31028:26;;31100:9;31094:4;31090:20;31086:1;31075:9;31071:17;31064:47;31128:131;31254:4;31128:131;:::i;:::-;31120:139;;31018:248;;;:::o;31272:419::-;;31476:2;31465:9;31461:18;31453:26;;31525:9;31519:4;31515:20;31511:1;31500:9;31496:17;31489:47;31553:131;31679:4;31553:131;:::i;:::-;31545:139;;31443:248;;;:::o;31697:419::-;;31901:2;31890:9;31886:18;31878:26;;31950:9;31944:4;31940:20;31936:1;31925:9;31921:17;31914:47;31978:131;32104:4;31978:131;:::i;:::-;31970:139;;31868:248;;;:::o;32122:419::-;;32326:2;32315:9;32311:18;32303:26;;32375:9;32369:4;32365:20;32361:1;32350:9;32346:17;32339:47;32403:131;32529:4;32403:131;:::i;:::-;32395:139;;32293:248;;;:::o;32547:419::-;;32751:2;32740:9;32736:18;32728:26;;32800:9;32794:4;32790:20;32786:1;32775:9;32771:17;32764:47;32828:131;32954:4;32828:131;:::i;:::-;32820:139;;32718:248;;;:::o;32972:222::-;;33103:2;33092:9;33088:18;33080:26;;33116:71;33184:1;33173:9;33169:17;33160:6;33116:71;:::i;:::-;33070:124;;;;:::o;33200:278::-;;33266:2;33260:9;33250:19;;33308:4;33300:6;33296:17;33415:6;33403:10;33400:22;33379:18;33367:10;33364:34;33361:62;33358:2;;;33426:13;;:::i;:::-;33358:2;33461:10;33457:2;33450:22;33240:238;;;;:::o;33484:326::-;;33635:18;33627:6;33624:30;33621:2;;;33657:13;;:::i;:::-;33621:2;33737:4;33733:9;33726:4;33718:6;33714:17;33710:33;33702:41;;33798:4;33792;33788:15;33780:23;;33550:260;;;:::o;33816:327::-;;33968:18;33960:6;33957:30;33954:2;;;33990:13;;:::i;:::-;33954:2;34070:4;34066:9;34059:4;34051:6;34047:17;34043:33;34035:41;;34131:4;34125;34121:15;34113:23;;33883:260;;;:::o;34149:132::-;;34239:3;34231:11;;34269:4;34264:3;34260:14;34252:22;;34221:60;;;:::o;34287:114::-;;34388:5;34382:12;34372:22;;34361:40;;;:::o;34407:98::-;;34492:5;34486:12;34476:22;;34465:40;;;:::o;34511:99::-;;34597:5;34591:12;34581:22;;34570:40;;;:::o;34616:113::-;;34718:4;34713:3;34709:14;34701:22;;34691:38;;;:::o;34735:184::-;;34868:6;34863:3;34856:19;34908:4;34903:3;34899:14;34884:29;;34846:73;;;;:::o;34925:168::-;;35042:6;35037:3;35030:19;35082:4;35077:3;35073:14;35058:29;;35020:73;;;;:::o;35099:147::-;;35237:3;35222:18;;35212:34;;;;:::o;35252:169::-;;35370:6;35365:3;35358:19;35410:4;35405:3;35401:14;35386:29;;35348:73;;;;:::o;35427:148::-;;35566:3;35551:18;;35541:34;;;;:::o;35581:96::-;;35647:24;35665:5;35647:24;:::i;:::-;35636:35;;35626:51;;;:::o;35683:104::-;;35757:24;35775:5;35757:24;:::i;:::-;35746:35;;35736:51;;;:::o;35793:90::-;;35870:5;35863:13;35856:21;35845:32;;35835:48;;;:::o;35889:149::-;;35965:66;35958:5;35954:78;35943:89;;35933:105;;;:::o;36044:126::-;;36121:42;36114:5;36110:54;36099:65;;36089:81;;;:::o;36176:77::-;;36242:5;36231:16;;36221:32;;;:::o;36259:154::-;36343:6;36338:3;36333;36320:30;36405:1;36396:6;36391:3;36387:16;36380:27;36310:103;;;:::o;36419:307::-;36487:1;36497:113;36511:6;36508:1;36505:13;36497:113;;;36596:1;36591:3;36587:11;36581:18;36577:1;36572:3;36568:11;36561:39;36533:2;36530:1;36526:10;36521:15;;36497:113;;;36628:6;36625:1;36622:13;36619:2;;;36708:1;36699:6;36694:3;36690:16;36683:27;36619:2;36468:258;;;;:::o;36732:48::-;36765:9;36786:102;;36878:2;36874:7;36869:2;36862:5;36858:14;36854:28;36844:38;;36834:54;;;:::o;36894:122::-;36967:24;36985:5;36967:24;:::i;:::-;36960:5;36957:35;36947:2;;37006:1;37003;36996:12;36947:2;36937:79;:::o;37022:116::-;37092:21;37107:5;37092:21;:::i;:::-;37085:5;37082:32;37072:2;;37128:1;37125;37118:12;37072:2;37062:76;:::o;37144:120::-;37216:23;37233:5;37216:23;:::i;:::-;37209:5;37206:34;37196:2;;37254:1;37251;37244:12;37196:2;37186:78;:::o;37270:122::-;37343:24;37361:5;37343:24;:::i;:::-;37336:5;37333:35;37323:2;;37382:1;37379;37372:12;37323:2;37313:79;:::o

Swarm Source

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