ETH Price: $3,383.70 (+5.53%)
Gas: 3.85 Gwei
 

Overview

Max Total Supply

182 MUNI

Holders

50

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
dancube.eth
Balance
3 MUNI
0x40415c1c0e7a8ff3e184b51a94a2fc5b92df9434
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:
MuniGolfClub

Compiler Version
v0.8.8+commit.dddeac2f

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-11-28
*/

//SPDX-License-Identifier: MIT

// File: contracts/Base64.sol

pragma solidity ^0.8.2;

/// [MIT License]
/// @title Base64
/// @notice Provides a function for encoding some bytes in base64
/// @author Brecht Devos <[email protected]>
library Base64 {
  bytes internal constant TABLE = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";

  /// @notice Encodes some bytes to the base64 representation
  function encode(bytes memory data) internal pure returns (string memory) {
    uint256 len = data.length;
    if (len == 0) return "";

    // multiply by 4/3 rounded up
    uint256 encodedLen = 4 * ((len + 2) / 3);

    // Add some extra buffer at the end
    bytes memory result = new bytes(encodedLen + 32);

    bytes memory table = TABLE;

    assembly {
      let tablePtr := add(table, 1)
      let resultPtr := add(result, 32)

      for {
        let i := 0
      } lt(i, len) {

      } {
        i := add(i, 3)
        let input := and(mload(add(data, i)), 0xffffff)

        let out := mload(add(tablePtr, and(shr(18, input), 0x3F)))
        out := shl(8, out)
        out := add(out, and(mload(add(tablePtr, and(shr(12, input), 0x3F))), 0xFF))
        out := shl(8, out)
        out := add(out, and(mload(add(tablePtr, and(shr(6, input), 0x3F))), 0xFF))
        out := shl(8, out)
        out := add(out, and(mload(add(tablePtr, and(input, 0x3F))), 0xFF))
        out := shl(224, out)

        mstore(resultPtr, out)

        resultPtr := add(resultPtr, 4)
      }

      switch mod(len, 3)
      case 1 {
        mstore(sub(resultPtr, 2), shl(240, 0x3d3d))
      }
      case 2 {
        mstore(sub(resultPtr, 1), shl(248, 0x3d))
      }

      mstore(result, encodedLen)
    }

    return string(result);
  }
}
// File: @openzeppelin/contracts/token/ERC20/IERC20.sol


// OpenZeppelin Contracts v4.4.0 (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `sender` to `recipient` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) external returns (bool);

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);
}

// File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol


// OpenZeppelin Contracts v4.4.0 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;


/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

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

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


// OpenZeppelin Contracts v4.4.0 (utils/Address.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts v4.4.0 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


// OpenZeppelin Contracts v4.4.0 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts v4.4.0 (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

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

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

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


// OpenZeppelin Contracts v4.4.0 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;


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

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

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

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


// OpenZeppelin Contracts v4.4.0 (utils/Counters.sol)

pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}

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


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

pragma solidity ^0.8.0;

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

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

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


// OpenZeppelin Contracts v4.4.0 (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;




/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

    mapping(address => mapping(address => uint256)) private _allowances;

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev Returns the name of the token.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5.05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the value {ERC20} uses, unless this function is
     * overridden;
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

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

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual override returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        unchecked {
            _approve(sender, _msgSender(), currentAllowance - amount);
        }

        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue);
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        uint256 currentAllowance = _allowances[_msgSender()][spender];
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(_msgSender(), spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `sender` to `recipient`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal virtual {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(sender, recipient, amount);

        uint256 senderBalance = _balances[sender];
        require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[sender] = senderBalance - amount;
        }
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

        _beforeTokenTransfer(address(0), account, amount);

        _totalSupply += amount;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);

        _afterTokenTransfer(address(0), account, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

        _beforeTokenTransfer(account, address(0), amount);

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
        }
        _totalSupply -= amount;

        emit Transfer(account, address(0), amount);

        _afterTokenTransfer(account, address(0), amount);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

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

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}

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


// OpenZeppelin Contracts v4.4.0 (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;








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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits a {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

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

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

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


// OpenZeppelin Contracts v4.4.0 (token/ERC721/extensions/ERC721Enumerable.sol)

pragma solidity ^0.8.0;



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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

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

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

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

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

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

// File: @openzeppelin/contracts/security/ReentrancyGuard.sol


// OpenZeppelin Contracts v4.4.0 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

// File: contracts/MuniGolfClub.sol

/*
MMMMMMMMMMXo.    'oXMMMMMMMMMMMMMMMMMMMM
MMMMMMMMMK:        :xKMMMMMMMMMMMMMMMMMM
MMMMMMMMWo          .oWMMMMMMMMMMMMMMMMM
MMMMMMMMNc           ;KWMMMMMMMMMMMMMMMM
MMMMMMMMNc         .,,lKMMMMMMMMMMMMMMMM
MMMMMMW0l.       'l0WNXNMMMMMMMMMMMMMMMM
MMMNkc,.      ;dkXMMMMMMMMMMMMMMMMMMMMMM
MMXc          :XMMMMMMMMMMMMMMMMMMMMMMMM
MNl            ,OWMMMMMMMMMMMMMMMMMMMMMM
MO.             .dNMMMMMMMMMMMMMMMMMMMMM
Nc               .lXMMMMMMMMMMMMMMMMMMMM
O'                 l0XMMMMMMMMMMMMMMMMMM
d.                  .lNMMMMMMMMMMMMMMMMM
l                    .oNMMMMMMMMMMMMMMMM
c                     .lXMMMMMMMMMMMMMMM
c                       cXMMMMMMMMMMMMMM
d.             .;,.      cXMMMMMMMMMMMMM
Wx.            ,0NOc,'.   ;0MMMMMMMMMMMM
MK;     ..      oNMWWNXkc''lKMMMMMMMMMMM
MN:     ,o'     .OMMMMMMWNXkokNMMMMMMMMM
MX;     ;0o      lWMMMMMMMMMXxoOWMMMMMMM
Mk.     lNO.     :XMMMMMMMMMMW0ddKWMMMMM
K;     'OMO.     ;XMMMMMMMMMMMMNOoxXMMWW
l     .dWMk.     :XMMMMMMMMMMMMMMXxll:;c
;     .dXNo      oWMMMMMMMMMMMMMMMWKdclx
'       .dx.     :kXNWMMMMMMMMMMMMMMMMMM
occllllod0x.       .;xWMMMMMMMMMMMMMMMMM
MMMMMMMMMWx........,:xWMMMMMMMMMMMMMMMMM
*/


pragma solidity ^0.8.0;








contract MuniGolfClub is ERC721Enumerable, ReentrancyGuard, Ownable {

    using Counters for Counters.Counter;
    uint256 public constant MAX_SUPPLY = 5400;
    uint256 public constant MAX_PUBLIC_MINT = 9;
    uint256 public constant MAX_RESERVE_COUNT = 180;
    uint256 private TOTAL_RESERVED = 0;
    
    uint256 public PRICE_PER_TOKEN = 0.05 ether;

    string private DESCRIPTION = "Randomly generated, fully on-chain golf balls.";

    function getDescription() public view returns (string memory) {
        return DESCRIPTION;
    }

    function setDescription( string memory description ) public onlyOwner {
        DESCRIPTION = description;
    }

    address private _owner;
    string private _seed;

    bool public mintingActive = false;
    bool public contractLocked = false;
    string private _contractURI;

    struct MuniLayerData {
        string name;
        string svgData;
    }

    struct MuniColorData {
        string name;
        string color;
    }

    MuniLayerData private groundBall;
    MuniLayerData private inHoleBall;
    MuniLayerData private distanceBall;
    MuniLayerData private inHoleHole;
    MuniLayerData private ground;

    MuniColorData[] private ballColors;
    MuniColorData[] private groundColors;
    
    MuniLayerData[] private skies;
    MuniLayerData[] private backgrounds;
    MuniLayerData[] private ballLogos;
    MuniLayerData[] private holes;
    MuniLayerData[] private foregrounds;
    MuniLayerData[] private creatures;

     modifier whenContractNotLocked() {
        require(!contractLocked, 'Contract is locked');
        _;
    }


    constructor() ERC721( "Municipal", "MUNI" ) Ownable() {
        _owner = msg.sender;

        _seed = string(abi.encodePacked(block.timestamp));

        loadData();
    }

    function loadData() internal {

        groundBall.name = "Ball on Ground";
        groundBall.svgData = '<circle cx="250.5" cy="250.5" r="137.5" fill="';

        inHoleBall.name = "Ball in Hole";
        inHoleBall.svgData = '<path d="M364 494C330 498 291 500 250 500C209 500 171 498 137 494C162 458 202 434 250 434C298 434 339 458 364 494Z" fill="';

        distanceBall.name = "Ball in the Distance";
        distanceBall.svgData = '<circle cx="346" cy="310" r="78" fill="';

        ground.name = "Ground";
        ground.svgData = '<rect y="388" width="500" height="112" fill="';

        inHoleHole.name = "Hole";
        inHoleHole.svgData = '<ellipse cx="250" cy="444" rx="250" ry="56" fill="#141B19" fill-opacity="0.75"/>';

    }

    function toggleMinting() public onlyOwner {
        mintingActive = !mintingActive;
    }

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

    function contractURI() public view returns ( string memory ) {
        return _contractURI;
    }

    function setContractURI( string memory prefix ) public onlyOwner {
        _contractURI = prefix;
    }

    function setPrice( uint256 newPrice ) public onlyOwner {
        PRICE_PER_TOKEN = newPrice;
    }

    function lockContract() public onlyOwner {
        contractLocked = true; // Cannot be unlocked
    }

    function mint(uint numberOfTokens) public payable {
        uint256 ts = totalSupply();
        require(mintingActive, "Sale must be active to mint tokens.");
        require(numberOfTokens <= MAX_PUBLIC_MINT, "Exceeded max token purchase.");
        require(numberOfTokens > 0, "Cannot mint less than 1 token.");
        require(ts + numberOfTokens <= MAX_SUPPLY, "Purchase would exceed max tokens.");
        require(PRICE_PER_TOKEN * numberOfTokens <= msg.value, "Ether value sent is not correct.");

        for (uint256 i = 0; i < numberOfTokens; i++) {
            _safeMint(msg.sender, ts + i + 1); // Add 1 so we get Ball #1 instead of Ball #0
        }
    }

    function reserve( uint256 numberOfTokens ) public onlyOwner {
        uint256 supply = totalSupply();
        require(supply + numberOfTokens <= MAX_SUPPLY, "Reserve would exceed max tokens");
        require(TOTAL_RESERVED + numberOfTokens <= MAX_RESERVE_COUNT, "Cannot exceed max team reserve allotment");

        for (uint256 i = 0; i < numberOfTokens; i++) {
            _safeMint(msg.sender, supply + i + 1); // Add 1 so we get Ball #1 instead of Ball #0
        }
        TOTAL_RESERVED += numberOfTokens;
    }

    function tokensOfOwner(address _ballowner) external view returns( uint256[] memory ) {
        uint256 tokenCount = balanceOf(_ballowner);
        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(_ballowner, index);
            }
            return result;
        }
    }

    function random(string memory input) internal pure returns ( uint256 ) {
        return uint256(keccak256(abi.encodePacked(input)));
    }

    function withdrawAll() public payable onlyOwner {
        require(payable(msg.sender).send(address(this).balance));
    }

    // Check length functions

    function getNumberOfSkies() public view returns ( uint256 ) {
        return skies.length;
    }

    function getNumberOfBackgrounds() public view returns ( uint256 ) {
        return backgrounds.length;
    }

    function getNumberOfForegrounds() public view returns ( uint256 ) {
        return foregrounds.length;
    }

    function getNumberOfCreatures() public view returns ( uint256 ) {
        return creatures.length;
    }

    function getNumberOfHoles() public view returns ( uint256 ) {
        return holes.length;
    }

    function getNumberOfBallLogos() public view returns ( uint256 ) {
        return ballLogos.length;
    }

    function getNumberOfGroundColors() public view returns ( uint256 ) {
        return groundColors.length;
    }

    function getNumberOfBallColors() public view returns ( uint256 ) {
        return ballColors.length;
    }

    // Register functions

    function registerSkyData( MuniLayerData calldata dataEntry ) public onlyOwner whenContractNotLocked {
        skies.push(dataEntry);
    }

    function registerHoleData( MuniLayerData calldata dataEntry ) public onlyOwner whenContractNotLocked {
        holes.push(dataEntry);
    }

    function registerGroundColor( MuniColorData calldata dataEntry ) public onlyOwner whenContractNotLocked {
        groundColors.push(dataEntry);
    }

    function registerBallColor( MuniColorData calldata dataEntry ) public onlyOwner whenContractNotLocked {
        ballColors.push(dataEntry);
    }

    function registerBackgroundData(MuniLayerData calldata dataEntry ) public onlyOwner whenContractNotLocked {
        backgrounds.push(dataEntry);
    }

    function registerForegroundData(MuniLayerData calldata dataEntry ) public onlyOwner whenContractNotLocked {
        foregrounds.push(dataEntry);
    }

    function registerCreatureData(MuniLayerData calldata dataEntry ) public onlyOwner whenContractNotLocked {
        creatures.push(dataEntry);
    }

    function registerBallLogoData(MuniLayerData calldata dataEntry ) public onlyOwner whenContractNotLocked {
        ballLogos.push(dataEntry);
    }

    // Multiple register functions

    function registerMultipleSkyData(MuniLayerData[] calldata dataEntries) public onlyOwner whenContractNotLocked {
        for (uint256 i = 0; i < dataEntries.length; i++) {
            skies.push(dataEntries[i]);
        }
    }

    function registerMultipleBallColor(MuniColorData[] calldata dataEntries) public onlyOwner whenContractNotLocked {
        for (uint256 i = 0; i < dataEntries.length; i++) {
            ballColors.push(dataEntries[i]);
        }
    }

    function registerMultipleGroundColor(MuniColorData[] calldata dataEntries) public onlyOwner whenContractNotLocked {
        for (uint256 i = 0; i < dataEntries.length; i++) {
            groundColors.push(dataEntries[i]);
        }
    }

    function registerMultipleBackgroundData( MuniLayerData[] calldata dataEntries ) public onlyOwner whenContractNotLocked {
        for (uint256 i = 0; i < dataEntries.length; i++) {
            backgrounds.push(dataEntries[i]);
        }
    }

    function registerHoleBackgroundData( MuniLayerData[] calldata dataEntries ) public onlyOwner whenContractNotLocked {
        for (uint256 i = 0; i < dataEntries.length; i++) {
            holes.push(dataEntries[i]);
        }
    }

    function registerMultipleForegroundData( MuniLayerData[] calldata dataEntries ) public onlyOwner whenContractNotLocked {
        for (uint256 i = 0; i < dataEntries.length; i++) {
            foregrounds.push(dataEntries[i]);
        }
    }

    function registerMultipleCreatureData( MuniLayerData[] calldata dataEntries ) public onlyOwner whenContractNotLocked {
        for (uint256 i = 0; i < dataEntries.length; i++) {
            creatures.push(dataEntries[i]);
        }
    }

    function registerMultipleBallLogoData( MuniLayerData[] calldata dataEntries ) public onlyOwner whenContractNotLocked {
        for (uint256 i = 0; i < dataEntries.length; i++) {
            ballLogos.push(dataEntries[i]);
        }
    }

    // Token Rendering

    function tokenURI( uint256 tokenId ) public view override returns (string memory) {
        require(tokenId <= totalSupply(), "Ball doesn't exist.");
        require(tokenId > 0, "Ball doesn't exist.");
        string memory output;
        string memory attributes;

        string[23] memory parts;
        parts[0]  = '<svg width="500" height="500" viewBox="0 0 500 500" fill="none" xmlns="http://www.w3.org/2000/svg">';
        parts[1]  = getSky(tokenId).svgData;
        parts[2]  = getBackground(tokenId).svgData;
        parts[3]  = ground.svgData;
        parts[4]  = getGround(tokenId).color;
        parts[5]  = '"/>';
        parts[6]  = getHole(tokenId).svgData;
        parts[7]  = getBall(tokenId).svgData;
        parts[8]  = getBallColor(tokenId).color;
        parts[9]  = '"/>';
        parts[10] = getLogo(tokenId).svgData;
        parts[11] = getCreature(tokenId).svgData;
        parts[12] = getForeground(tokenId).svgData;
        parts[13] = '</svg>';

        output = string(abi.encodePacked(parts[0], parts[1], parts[2], parts[3], parts[4], parts[5], parts[6], parts[7]));
        output = string(abi.encodePacked(output, parts[8], parts[9], parts[10], parts[11], parts[12], parts[13]));

        parts[0] = '"attributes" : [{ "trait_type" : "Score", "value" : "';
        parts[1] = getScore(tokenId);
        parts[2] = '" }, { "trait_type" : "Yardage", "value" : "';
        parts[3] = getYardage(tokenId);
        parts[4] = '" }, { "trait_type" : "Sky", "value" : "';
        parts[5] = getSky(tokenId).name;
        parts[6] = '" }, { "trait_type" : "Background", "value" : "';
        parts[7] = getBackground(tokenId).name;
        parts[8] = '" }, { "trait_type" : "Ground", "value" : "';
        parts[9] = getGround(tokenId).name;
        parts[10] = '" }, { "trait_type" : "Ball", "value" : "';
        parts[11] = getBallAttribute(tokenId);
        parts[12] = '" }, { "trait_type" : "Ball Color", "value" : "';
        parts[13] = getBallColor(tokenId).name;
        parts[14] = '" }, { "trait_type" : "Ball Brand", "value" : "';
        parts[15] = getLogo(tokenId).name;
        parts[16] = '" }, { "trait_type" : "Creature", "value" : "';
        parts[17] = getCreature(tokenId).name;
        parts[18] = '" }, { "trait_type" : "Foreground", "value" : "';
        parts[19] = getForeground(tokenId).name;
        parts[20] = '" }, { "trait_type" : "Landed", "value" : "';
        parts[21] = getHole(tokenId).name;
        parts[22] = '"} ]';

        attributes = string(abi.encodePacked(parts[0], parts[1], parts[2], parts[3], parts[4], parts[5], parts[6], parts[7], parts[8]));
        attributes = string(abi.encodePacked(attributes, parts[9], parts[10], parts[11], parts[12], parts[13], parts[14]));
        attributes = string(abi.encodePacked(attributes, parts[15], parts[16], parts[17], parts[18], parts[19], parts[20], parts[21], parts[22]));

        output = Base64.encode(bytes(string(abi.encodePacked('{"name":"Ball #', toString(tokenId), '", "description" : "', DESCRIPTION, '", "image" : "data:image/svg+xml;base64,', Base64.encode(bytes(output)), '", ', attributes, '}'))));
        output = string(abi.encodePacked("data:application/json;base64,", output));

        return output;
    }

    function getYardageInRange(uint256 tokenId, uint256 low, uint256 high) internal view returns ( uint256 ) {
        uint256 rand = random(string(abi.encodePacked("YardageInRange", toString(tokenId), _seed)));
        uint256 gap = high - low;
        uint256 greatness = rand % gap;
        return greatness + low;
    }

    function getYardage(uint256 tokenId) internal view returns (string memory) {
        uint256 rand = random(string(abi.encodePacked("Yardage", toString(tokenId), _seed)));
        uint256 greatness = rand % 1000;
        string memory output;
        output = toString(getYardageInRange(tokenId, 2, 25));
        if (greatness > 100) {
            output = toString(getYardageInRange(tokenId, 25, 50));
        }
        if ( greatness > 200) {
            output = toString(getYardageInRange(tokenId, 50, 75));
        }
        if ( greatness > 400) {
            output = toString(getYardageInRange(tokenId, 75, 150));
        }
        if ( greatness > 850) {
            output = toString(getYardageInRange(tokenId, 150, 225));
        }
        if ( greatness > 900) {
            output = toString(getYardageInRange(tokenId, 225, 275));
        }
        if ( greatness > 990) {
            output = toString(getYardageInRange(tokenId, 275, 350));
        }
        if ( greatness > 998) {
            output = toString(getYardageInRange(tokenId, 350, 475));
        }
        return output;
    }

    function getScore(uint256 tokenId) internal view returns ( string memory) {
        uint256 rand = random(string(abi.encodePacked("Ball", toString(tokenId), _seed)));
        uint256 greatness = rand % 1000;
        string memory output;
        output = "Snowman";
        if (greatness > 100) {
            output = "Double Bogey";
        }
        if ( greatness > 200) {
            output = "Bogey";
        }
        if ( greatness > 400) {
            output = "Par";
        }
        if ( greatness > 700) {
            output = "Birdie";
        }
        if ( greatness > 800) {
            output = "Eagle";
        }
        if ( greatness > 900) {
            output = "Double Eagle";
        }
        if ( greatness > 990) {
            output = "Ace";
        }
        return output;
    }

    // Layer 0 - Sky (flat colour only)
    function getSky(uint256 tokenId) internal view returns (MuniLayerData memory) {
        uint256 rand = random(string(abi.encodePacked("Sky", toString(tokenId), _seed)));
        uint256 greatness = rand % 1000;
        if (greatness > 400) {
            return skies[rand % skies.length];
        }
        return skies[0];
    }

    // Layer 1 - Background
    function getBackground(uint256 tokenId) internal view returns (MuniLayerData memory) {
        return pluck(tokenId, "Backgrounds", backgrounds, 50);
    }

    // Layer 2 - Ground
    function getGround(uint256 tokenId) internal view returns (MuniColorData memory) {
        uint256 rand = random(string(abi.encodePacked("Ground", toString(tokenId), _seed)));
        return groundColors[rand % groundColors.length];
    }

    // Layer 3 - Hole
    function getHole(uint256 tokenId) internal view returns ( MuniLayerData memory ) {
        uint256 rand = random(string(abi.encodePacked("Ball", toString(tokenId), _seed)));
        uint256 greatness = rand % 1000;
        if (greatness > 990) {
            return inHoleHole;
        }
        return holes[rand % holes.length];
    }

    // Layer 4 - Ball
    function getBallColor(uint256 tokenId) internal view returns (MuniColorData memory) {
        uint256 rand = random(string(abi.encodePacked("Ball", toString(tokenId), _seed)));
        uint256 greatness = rand % 1000;
        if (greatness > 400) {
            return ballColors[rand % ballColors.length];
        }
        return ballColors[0];
    }

    function getBall(uint256 tokenId) internal view returns (MuniLayerData memory) {
        uint256 rand = random(string(abi.encodePacked("Ball", toString(tokenId), _seed)));
        uint256 greatness = rand % 1000;
        if (greatness < 100) {
            return distanceBall;
        }
        if (greatness > 990) {
            return inHoleBall;
        }
        return groundBall;
    }

    function getBallAttribute(uint256 tokenId) internal view returns (string memory) {
        uint256 rand = random(string(abi.encodePacked("Ball", toString(tokenId), _seed)));
        uint256 greatness = rand % 1000;
        if (greatness < 100) {
            return "Long Ball";
        }
        if (greatness > 990) {
            return "In Hole";
        }
        return "Standard";
    }

    // Layer 5 - Logo
    function getLogo(uint256 tokenId) internal view returns (MuniLayerData memory) {
        MuniLayerData memory output;

        uint256 rand = random(string(abi.encodePacked("Ball", toString(tokenId), _seed)));
        uint256 greatness = rand % 1000;
        
        output.name = "None";
        output.svgData = '';
        
        if (greatness >= 100 ) {
            output = pluck(tokenId, "Logos", ballLogos, 80);
        }
        
        if ( greatness > 990 ) {
            output.svgData = '';
        }
        
        return output;
    }

    // Layer 6 - Creature
    function getCreature(uint256 tokenId) internal view returns (MuniLayerData memory) {
        return pluck(tokenId, "Creature", creatures, 90);
    }

    // Layer 7 - Foreground
    function getForeground(uint256 tokenId) internal view returns (MuniLayerData memory) {
        return pluck(tokenId, "Foregrounds", foregrounds, 70);
    }

    function pluck(uint256 tokenId, string memory key, MuniLayerData[] memory sourceArray, uint256 threshold) internal view returns (MuniLayerData memory) {
        MuniLayerData memory output;

        if ( sourceArray.length == 0 ) {
            output.name = "None";
            output.svgData = "";

            return output;
        }

        uint256 rand = random(string(abi.encodePacked(key, toString(tokenId), _seed)));
        output = sourceArray[rand % sourceArray.length];
        uint256 greatness = rand % 100;
        
        if (greatness > threshold) {
            return output;
        }

        output.name = "None";
        output.svgData = "";
        
        return output;
    }

    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT license
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

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

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":"MAX_PUBLIC_MINT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_RESERVE_COUNT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE_PER_TOKEN","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractLocked","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getDescription","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getNumberOfBackgrounds","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getNumberOfBallColors","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getNumberOfBallLogos","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getNumberOfCreatures","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getNumberOfForegrounds","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getNumberOfGroundColors","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getNumberOfHoles","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getNumberOfSkies","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":"lockContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintingActive","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":[{"components":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"svgData","type":"string"}],"internalType":"struct MuniGolfClub.MuniLayerData","name":"dataEntry","type":"tuple"}],"name":"registerBackgroundData","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"components":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"color","type":"string"}],"internalType":"struct MuniGolfClub.MuniColorData","name":"dataEntry","type":"tuple"}],"name":"registerBallColor","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"components":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"svgData","type":"string"}],"internalType":"struct MuniGolfClub.MuniLayerData","name":"dataEntry","type":"tuple"}],"name":"registerBallLogoData","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"components":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"svgData","type":"string"}],"internalType":"struct MuniGolfClub.MuniLayerData","name":"dataEntry","type":"tuple"}],"name":"registerCreatureData","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"components":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"svgData","type":"string"}],"internalType":"struct MuniGolfClub.MuniLayerData","name":"dataEntry","type":"tuple"}],"name":"registerForegroundData","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"components":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"color","type":"string"}],"internalType":"struct MuniGolfClub.MuniColorData","name":"dataEntry","type":"tuple"}],"name":"registerGroundColor","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"components":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"svgData","type":"string"}],"internalType":"struct MuniGolfClub.MuniLayerData[]","name":"dataEntries","type":"tuple[]"}],"name":"registerHoleBackgroundData","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"components":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"svgData","type":"string"}],"internalType":"struct MuniGolfClub.MuniLayerData","name":"dataEntry","type":"tuple"}],"name":"registerHoleData","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"components":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"svgData","type":"string"}],"internalType":"struct MuniGolfClub.MuniLayerData[]","name":"dataEntries","type":"tuple[]"}],"name":"registerMultipleBackgroundData","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"components":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"color","type":"string"}],"internalType":"struct MuniGolfClub.MuniColorData[]","name":"dataEntries","type":"tuple[]"}],"name":"registerMultipleBallColor","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"components":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"svgData","type":"string"}],"internalType":"struct MuniGolfClub.MuniLayerData[]","name":"dataEntries","type":"tuple[]"}],"name":"registerMultipleBallLogoData","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"components":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"svgData","type":"string"}],"internalType":"struct MuniGolfClub.MuniLayerData[]","name":"dataEntries","type":"tuple[]"}],"name":"registerMultipleCreatureData","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"components":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"svgData","type":"string"}],"internalType":"struct MuniGolfClub.MuniLayerData[]","name":"dataEntries","type":"tuple[]"}],"name":"registerMultipleForegroundData","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"components":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"color","type":"string"}],"internalType":"struct MuniGolfClub.MuniColorData[]","name":"dataEntries","type":"tuple[]"}],"name":"registerMultipleGroundColor","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"components":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"svgData","type":"string"}],"internalType":"struct MuniGolfClub.MuniLayerData[]","name":"dataEntries","type":"tuple[]"}],"name":"registerMultipleSkyData","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"components":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"svgData","type":"string"}],"internalType":"struct MuniGolfClub.MuniLayerData","name":"dataEntry","type":"tuple"}],"name":"registerSkyData","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"reserve","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":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"prefix","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"description","type":"string"}],"name":"setDescription","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleMinting","outputs":[],"stateMutability":"nonpayable","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":"_ballowner","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":"withdrawAll","outputs":[],"stateMutability":"payable","type":"function"}]

6000600c5566b1a2bc2ec50000600d5560e0604052602e60808181529062005ab960a03980516200003991600e9160209091019062000379565b506011805461ffff191690553480156200005257600080fd5b506040805180820182526009815268135d5b9a58da5c185b60ba1b6020808301918252835180850190945260048452634d554e4960e01b908401528151919291620000a09160009162000379565b508051620000b690600190602084019062000379565b50506001600a5550620000c9336200011d565b600f80546001600160a01b031916331790556040805142602082015201604051602081830303815290604052601090805190602001906200010c92919062000379565b50620001176200016f565b6200045c565b600b80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60408051808201909152600e8082526d10985b1b081bdb8811dc9bdd5b9960921b6020909201918252620001a69160139162000379565b506040518060600160405280602e815260200162005a3b602e91398051620001d79160149160209091019062000379565b5060408051808201909152600c8082526b42616c6c20696e20486f6c6560a01b60209092019182526200020d9160159162000379565b506040518060a00160405280607a815260200162005b3b607a913980516200023e9160169160209091019062000379565b506040805180820190915260148082527f42616c6c20696e207468652044697374616e63650000000000000000000000006020909201918252620002859160179162000379565b5060405180606001604052806027815260200162005b14602791398051620002b69160189160209091019062000379565b506040805180820190915260068082526511dc9bdd5b9960d21b6020909201918252620002e691601b9162000379565b506040518060600160405280602d815260200162005ae7602d913980516200031791601c9160209091019062000379565b5060408051808201909152600480825263486f6c6560e01b6020909201918252620003459160199162000379565b5060405180608001604052806050815260200162005a696050913980516200037691601a9160209091019062000379565b50565b82805462000387906200041f565b90600052602060002090601f016020900481019282620003ab5760008555620003f6565b82601f10620003c657805160ff1916838001178555620003f6565b82800160010185558215620003f6579182015b82811115620003f6578251825591602001919060010190620003d9565b506200040492915062000408565b5090565b5b8082111562000404576000815560010162000409565b600181811c908216806200043457607f821691505b602082108114156200045657634e487b7160e01b600052602260045260246000fd5b50919050565b6155cf806200046c6000396000f3fe6080604052600436106103975760003560e01c8063819b25ba116101dc578063b88d4fde11610102578063e8a3d485116100a0578063efa3708b1161006f578063efa3708b14610a10578063f2fde38b14610a30578063f5d99d3514610a50578063f8812af214610a7057600080fd5b8063e8a3d48514610972578063e985e9c514610987578063eecd82d9146109d0578063ef7cf1b6146109f057600080fd5b8063c87b56dd116100dc578063c87b56dd146108fd578063cb8c3d9e1461091d578063d51033b114610932578063d8affe211461095257600080fd5b8063b88d4fde1461089d578063b8bb4eeb146108bd578063bf7aaf66146108dd57600080fd5b8063938e3d7b1161017a578063a0712d6811610149578063a0712d6814610835578063a22cb46514610848578063ade690de14610868578063b323893c1461087d57600080fd5b8063938e3d7b146107c057806395d89b41146107e05780639ab43da4146107f55780639b5fa4191461081557600080fd5b8063853828b6116101b6578063853828b61461075a5780638da5cb5b1461076257806390c3f38f1461078057806391b7f5ed146107a057600080fd5b8063819b25ba146106f7578063833b9499146107175780638462151c1461072d57600080fd5b806342842e0e116102c15780636352211e1161025f578063715018a61161022e578063715018a6146106a3578063753868e3146106b857806376500c17146106cd5780637d55094d146106e257600080fd5b80636352211e1461063957806365f1309714610659578063696575731461066e57806370a082311461068357600080fd5b80635b01c6a71161029b5780635b01c6a7146105cf5780635b2064d8146105e45780635f0329651461060457806362a0f93c1461062457600080fd5b806342842e0e1461057a578063485be3ed1461059a5780634f6ccce7146105af57600080fd5b80631a0925411161033957806331f9c9191161030857806331f9c9191461050b578063324cb3cb1461052557806332cb6b0c146105445780633d973bda1461055a57600080fd5b80631a092541146104965780631b822268146104ab57806323b872dd146104cb5780632f745c59146104eb57600080fd5b8063095ea7b311610375578063095ea7b31461042b5780630ef589061461044d578063103f397c1461046c57806318160ddd1461048157600080fd5b806301ffc9a71461039c57806306fdde03146103d1578063081812fc146103f3575b600080fd5b3480156103a857600080fd5b506103bc6103b7366004614542565b610a90565b60405190151581526020015b60405180910390f35b3480156103dd57600080fd5b506103e6610abb565b6040516103c891906145be565b3480156103ff57600080fd5b5061041361040e3660046145d1565b610b4d565b6040516001600160a01b0390911681526020016103c8565b34801561043757600080fd5b5061044b610446366004614606565b610be7565b005b34801561045957600080fd5b50601d545b6040519081526020016103c8565b34801561047857600080fd5b5060215461045e565b34801561048d57600080fd5b5060085461045e565b3480156104a257600080fd5b506103e6610cfd565b3480156104b757600080fd5b5061044b6104c6366004614642565b610d0c565b3480156104d757600080fd5b5061044b6104e6366004614677565b610d9f565b3480156104f757600080fd5b5061045e610506366004614606565b610dd0565b34801561051757600080fd5b506011546103bc9060ff1681565b34801561053157600080fd5b506011546103bc90610100900460ff1681565b34801561055057600080fd5b5061045e61151881565b34801561056657600080fd5b5061044b6105753660046146ff565b610e66565b34801561058657600080fd5b5061044b610595366004614677565b610f20565b3480156105a657600080fd5b5060225461045e565b3480156105bb57600080fd5b5061045e6105ca3660046145d1565b610f3b565b3480156105db57600080fd5b5060235461045e565b3480156105f057600080fd5b5061044b6105ff3660046146ff565b610fce565b34801561061057600080fd5b5061044b61061f366004614642565b611088565b34801561063057600080fd5b50601f5461045e565b34801561064557600080fd5b506104136106543660046145d1565b61111b565b34801561066557600080fd5b5061045e600981565b34801561067a57600080fd5b5060205461045e565b34801561068f57600080fd5b5061045e61069e366004614741565b611192565b3480156106af57600080fd5b5061044b611219565b3480156106c457600080fd5b5061044b61124f565b3480156106d957600080fd5b5061045e60b481565b3480156106ee57600080fd5b5061044b61128a565b34801561070357600080fd5b5061044b6107123660046145d1565b6112c8565b34801561072357600080fd5b5061045e600d5481565b34801561073957600080fd5b5061074d610748366004614741565b611420565b6040516103c8919061475c565b61044b6114df565b34801561076e57600080fd5b50600b546001600160a01b0316610413565b34801561078c57600080fd5b5061044b61079b36600461482c565b61152d565b3480156107ac57600080fd5b5061044b6107bb3660046145d1565b61156e565b3480156107cc57600080fd5b5061044b6107db36600461482c565b61159d565b3480156107ec57600080fd5b506103e66115da565b34801561080157600080fd5b5061044b6108103660046146ff565b6115e9565b34801561082157600080fd5b5061044b6108303660046146ff565b6116a3565b61044b6108433660046145d1565b61175d565b34801561085457600080fd5b5061044b610863366004614875565b611957565b34801561087457600080fd5b5060245461045e565b34801561088957600080fd5b5061044b610898366004614642565b611962565b3480156108a957600080fd5b5061044b6108b83660046148b1565b6119f5565b3480156108c957600080fd5b5061044b6108d8366004614642565b611a2d565b3480156108e957600080fd5b5061044b6108f8366004614642565b611ac0565b34801561090957600080fd5b506103e66109183660046145d1565b611b53565b34801561092957600080fd5b50601e5461045e565b34801561093e57600080fd5b5061044b61094d366004614642565b6121cf565b34801561095e57600080fd5b5061044b61096d366004614642565b612262565b34801561097e57600080fd5b506103e66122f5565b34801561099357600080fd5b506103bc6109a236600461492d565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156109dc57600080fd5b5061044b6109eb366004614642565b612304565b3480156109fc57600080fd5b5061044b610a0b3660046146ff565b612397565b348015610a1c57600080fd5b5061044b610a2b3660046146ff565b612451565b348015610a3c57600080fd5b5061044b610a4b366004614741565b61250b565b348015610a5c57600080fd5b5061044b610a6b3660046146ff565b6125a6565b348015610a7c57600080fd5b5061044b610a8b3660046146ff565b612660565b60006001600160e01b0319821663780e9d6360e01b1480610ab55750610ab58261271a565b92915050565b606060008054610aca90614960565b80601f0160208091040260200160405190810160405280929190818152602001828054610af690614960565b8015610b435780601f10610b1857610100808354040283529160200191610b43565b820191906000526020600020905b815481529060010190602001808311610b2657829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610bcb5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b6000610bf28261111b565b9050806001600160a01b0316836001600160a01b03161415610c605760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610bc2565b336001600160a01b0382161480610c7c5750610c7c81336109a2565b610cee5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610bc2565b610cf8838361276a565b505050565b6060600e8054610aca90614960565b600b546001600160a01b03163314610d365760405162461bcd60e51b8152600401610bc290614995565b601154610100900460ff1615610d5e5760405162461bcd60e51b8152600401610bc2906149ca565b6023805460018101825560009190915281906002027fd57b2b5166478fd4318d2acc6cc2c704584312bdd8781b32d5d06abda57f423001610cf88282614c2f565b610da933826127d8565b610dc55760405162461bcd60e51b8152600401610bc290614c39565b610cf88383836128cf565b6000610ddb83611192565b8210610e3d5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610bc2565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600b546001600160a01b03163314610e905760405162461bcd60e51b8152600401610bc290614995565b601154610100900460ff1615610eb85760405162461bcd60e51b8152600401610bc2906149ca565b60005b81811015610cf8576021838383818110610ed757610ed7614c8a565b9050602002810190610ee99190614ca0565b815460018101835560009283526020909220909160020201610f0b8282614c2f565b50508080610f1890614cd6565b915050610ebb565b610cf8838383604051806020016040528060008152506119f5565b6000610f4660085490565b8210610fa95760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610bc2565b60088281548110610fbc57610fbc614c8a565b90600052602060002001549050919050565b600b546001600160a01b03163314610ff85760405162461bcd60e51b8152600401610bc290614995565b601154610100900460ff16156110205760405162461bcd60e51b8152600401610bc2906149ca565b60005b81811015610cf857602083838381811061103f5761103f614c8a565b90506020028101906110519190614ca0565b8154600181018355600092835260209092209091600202016110738282614c2f565b5050808061108090614cd6565b915050611023565b600b546001600160a01b031633146110b25760405162461bcd60e51b8152600401610bc290614995565b601154610100900460ff16156110da5760405162461bcd60e51b8152600401610bc2906149ca565b601f805460018101825560009190915281906002027fa03837a25210ee280c2113ff4b77ca23440b19d4866cca721c801278fd08d80701610cf88282614c2f565b6000818152600260205260408120546001600160a01b031680610ab55760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610bc2565b60006001600160a01b0382166111fd5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610bc2565b506001600160a01b031660009081526003602052604090205490565b600b546001600160a01b031633146112435760405162461bcd60e51b8152600401610bc290614995565b61124d6000612a7a565b565b600b546001600160a01b031633146112795760405162461bcd60e51b8152600401610bc290614995565b6011805461ff001916610100179055565b600b546001600160a01b031633146112b45760405162461bcd60e51b8152600401610bc290614995565b6011805460ff19811660ff90911615179055565b600b546001600160a01b031633146112f25760405162461bcd60e51b8152600401610bc290614995565b60006112fd60085490565b905061151861130c8383614cf1565b111561135a5760405162461bcd60e51b815260206004820152601f60248201527f5265736572766520776f756c6420657863656564206d617820746f6b656e73006044820152606401610bc2565b60b482600c5461136a9190614cf1565b11156113c95760405162461bcd60e51b815260206004820152602860248201527f43616e6e6f7420657863656564206d6178207465616d207265736572766520616044820152671b1b1bdd1b595b9d60c21b6064820152608401610bc2565b60005b82811015611404576113f2336113e28385614cf1565b6113ed906001614cf1565b612acc565b806113fc81614cd6565b9150506113cc565b5081600c60008282546114179190614cf1565b90915550505050565b6060600061142d83611192565b90508061144e5760408051600080825260208201909252905b509392505050565b60008167ffffffffffffffff811115611469576114696147a0565b604051908082528060200260200182016040528015611492578160200160208202803683370190505b50905060005b82811015611446576114aa8582610dd0565b8282815181106114bc576114bc614c8a565b6020908102919091010152806114d181614cd6565b915050611498565b50919050565b600b546001600160a01b031633146115095760405162461bcd60e51b8152600401610bc290614995565b60405133904780156108fc02916000818181858888f1935050505061124d57600080fd5b600b546001600160a01b031633146115575760405162461bcd60e51b8152600401610bc290614995565b805161156a90600e90602084019061446b565b5050565b600b546001600160a01b031633146115985760405162461bcd60e51b8152600401610bc290614995565b600d55565b600b546001600160a01b031633146115c75760405162461bcd60e51b8152600401610bc290614995565b805161156a90601290602084019061446b565b606060018054610aca90614960565b600b546001600160a01b031633146116135760405162461bcd60e51b8152600401610bc290614995565b601154610100900460ff161561163b5760405162461bcd60e51b8152600401610bc2906149ca565b60005b81811015610cf857601d83838381811061165a5761165a614c8a565b905060200281019061166c9190614ca0565b81546001810183556000928352602090922090916002020161168e8282614c2f565b5050808061169b90614cd6565b91505061163e565b600b546001600160a01b031633146116cd5760405162461bcd60e51b8152600401610bc290614995565b601154610100900460ff16156116f55760405162461bcd60e51b8152600401610bc2906149ca565b60005b81811015610cf857601f83838381811061171457611714614c8a565b90506020028101906117269190614ca0565b8154600181018355600092835260209092209091600202016117488282614c2f565b5050808061175590614cd6565b9150506116f8565b600061176860085490565b60115490915060ff166117c95760405162461bcd60e51b815260206004820152602360248201527f53616c65206d7573742062652061637469766520746f206d696e7420746f6b6560448201526237399760e91b6064820152608401610bc2565b600982111561181a5760405162461bcd60e51b815260206004820152601c60248201527f4578636565646564206d617820746f6b656e2070757263686173652e000000006044820152606401610bc2565b6000821161186a5760405162461bcd60e51b815260206004820152601e60248201527f43616e6e6f74206d696e74206c657373207468616e203120746f6b656e2e00006044820152606401610bc2565b6115186118778383614cf1565b11156118cf5760405162461bcd60e51b815260206004820152602160248201527f507572636861736520776f756c6420657863656564206d617820746f6b656e736044820152601760f91b6064820152608401610bc2565b3482600d546118de9190614d09565b111561192c5760405162461bcd60e51b815260206004820181905260248201527f45746865722076616c75652073656e74206973206e6f7420636f72726563742e6044820152606401610bc2565b60005b82811015610cf857611945336113e28385614cf1565b8061194f81614cd6565b91505061192f565b61156a338383612ae6565b600b546001600160a01b0316331461198c5760405162461bcd60e51b8152600401610bc290614995565b601154610100900460ff16156119b45760405162461bcd60e51b8152600401610bc2906149ca565b6022805460018101825560009190915281906002027f61035b26e3e9eee00e0d72fd1ee8ddca6894550dca6916ea2ac6baa90d11e51001610cf88282614c2f565b6119ff33836127d8565b611a1b5760405162461bcd60e51b8152600401610bc290614c39565b611a2784848484612bb5565b50505050565b600b546001600160a01b03163314611a575760405162461bcd60e51b8152600401610bc290614995565b601154610100900460ff1615611a7f5760405162461bcd60e51b8152600401610bc2906149ca565b6021805460018101825560009190915281906002027f3a6357012c1a3ae0a17d304c9920310382d968ebcc4b1771f41c6b304205b57001610cf88282614c2f565b600b546001600160a01b03163314611aea5760405162461bcd60e51b8152600401610bc290614995565b601154610100900460ff1615611b125760405162461bcd60e51b8152600401610bc2906149ca565b6020805460018101825560009190915281906002027fc97bfaf2f8ee708c303a06d134f5ecd8389ae0432af62dc132a24118292866bb01610cf88282614c2f565b6060611b5e60085490565b821115611ba35760405162461bcd60e51b81526020600482015260136024820152722130b636103237b2b9b713ba1032bc34b9ba1760691b6044820152606401610bc2565b60008211611be95760405162461bcd60e51b81526020600482015260136024820152722130b636103237b2b9b713ba1032bc34b9ba1760691b6044820152606401610bc2565b606080611bf46144ef565b6040518060a001604052806063815260200161535e606391398152611c1885612be8565b602001518160016020020152611c2d85612dc5565b602001516040820152601c8054611c4390614960565b80601f0160208091040260200160405190810160405280929190818152602001828054611c6f90614960565b8015611cbc5780601f10611c9157610100808354040283529160200191611cbc565b820191906000526020600020905b815481529060010190602001808311611c9f57829003601f168201915b505050505081600360178110611cd457611cd4614c8a565b6020020152611ce285612f84565b602090810151608083015260408051808201909152600381526211179f60e91b9181019190915260a0820152611d1785613120565b6020015160c0820152611d298561319c565b6020015160e0820152611d3b8561323a565b60209081015161010083015260408051808201909152600381526211179f60e91b91810191909152610120820152611d728561329a565b60200151610140820152611d85856134ea565b60200151610160820152611d98856136a6565b60209081015161018083015260408051808201825260068152651e17b9bb339f60d11b818401526101a0840152825183830151828501516060860151608087015160a088015160c089015160e08a01519751611e039997989697959694959394929391929101614d28565b60408051808303601f19018152908290526101008301516101208401516101408501516101608601516101808701516101a0880151959950611e4a968a9690602001614dcd565b60408051601f1981840301815260608301909152603580835290945061553a60208301398152611e7985613865565b81600160200201819052506040518060600160405280602c81526020016154b2602c91396040820152611eab856139ce565b60608083019190915260408051918201905260288082526153c160208301396080820152611ed885612be8565b5160a08201526040805160608101909152602f80825261550b602083013960c0820152611f0485612dc5565b5160e08201526040805160608101909152602b80825261556f6020830139610100820152611f3185612f84565b51610120820152604080516060810190915260298082526153066020830139610140820152611f5f85613af0565b6101608201526040805160608101909152602f80825261532f6020830139610180820152611f8c8561323a565b516101a08201526040805160608101909152602f80825261541860208301396101c0820152611fba8561329a565b516101e08201526040805160608101909152602d8082526154de6020830139610200820152611fe8856134ea565b516102208201526040805160608101909152602f8082526153e96020830139610240820152612016856136a6565b516102608201526040805160608101909152602b808252615487602083013961028082015261204485613120565b516102a0820152604080518082019091526004815263227d205d60e01b6020820152816016602090810291909101919091528151828201516040808501516060860151608087015160a088015160c089015160e08a01516101008b015196516120b99a96979596949593949293919201614e5f565b60408051808303601f19018152908290526101208301516101408401516101608501516101808601516101a08701516101c088015195985061210096899690602001614dcd565b60408051808303601f19018152908290526101e08301516102008401516102208501516102408601516102608701516102808801516102a08901516102c08a0151979a50612153988b9890602001614e5f565b60405160208183030381529060405291506121a361217086613b9a565b600e61217b86613c98565b8560405160200161218f9493929190614f8f565b604051602081830303815290604052613c98565b9250826040516020016121b69190615071565b60408051601f1981840301815291905295945050505050565b600b546001600160a01b031633146121f95760405162461bcd60e51b8152600401610bc290614995565b601154610100900460ff16156122215760405162461bcd60e51b8152600401610bc2906149ca565b601e805460018101825560009190915281906002027f50bb669a95c7b50b7e8a6f09454034b2b14cf2b85c730dca9a539ca82cb6e35001610cf88282614c2f565b600b546001600160a01b0316331461228c5760405162461bcd60e51b8152600401610bc290614995565b601154610100900460ff16156122b45760405162461bcd60e51b8152600401610bc2906149ca565b6024805460018101825560009190915281906002027f7cd332d19b93bcabe3cce7ca0c18a052f57e5fd03b4758a09f30f5ddc4b22ec401610cf88282614c2f565b606060128054610aca90614960565b600b546001600160a01b0316331461232e5760405162461bcd60e51b8152600401610bc290614995565b601154610100900460ff16156123565760405162461bcd60e51b8152600401610bc2906149ca565b601d805460018101825560009190915281906002027f6d4407e7be21f808e6509aa9fa9143369579dd7d760fe20a2c09680fc146134f01610cf88282614c2f565b600b546001600160a01b031633146123c15760405162461bcd60e51b8152600401610bc290614995565b601154610100900460ff16156123e95760405162461bcd60e51b8152600401610bc2906149ca565b60005b81811015610cf857601e83838381811061240857612408614c8a565b905060200281019061241a9190614ca0565b81546001810183556000928352602090922090916002020161243c8282614c2f565b5050808061244990614cd6565b9150506123ec565b600b546001600160a01b0316331461247b5760405162461bcd60e51b8152600401610bc290614995565b601154610100900460ff16156124a35760405162461bcd60e51b8152600401610bc2906149ca565b60005b81811015610cf85760248383838181106124c2576124c2614c8a565b90506020028101906124d49190614ca0565b8154600181018355600092835260209092209091600202016124f68282614c2f565b5050808061250390614cd6565b9150506124a6565b600b546001600160a01b031633146125355760405162461bcd60e51b8152600401610bc290614995565b6001600160a01b03811661259a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610bc2565b6125a381612a7a565b50565b600b546001600160a01b031633146125d05760405162461bcd60e51b8152600401610bc290614995565b601154610100900460ff16156125f85760405162461bcd60e51b8152600401610bc2906149ca565b60005b81811015610cf857602283838381811061261757612617614c8a565b90506020028101906126299190614ca0565b81546001810183556000928352602090922090916002020161264b8282614c2f565b5050808061265890614cd6565b9150506125fb565b600b546001600160a01b0316331461268a5760405162461bcd60e51b8152600401610bc290614995565b601154610100900460ff16156126b25760405162461bcd60e51b8152600401610bc2906149ca565b60005b81811015610cf85760238383838181106126d1576126d1614c8a565b90506020028101906126e39190614ca0565b8154600181018355600092835260209092209091600202016127058282614c2f565b5050808061271290614cd6565b9150506126b5565b60006001600160e01b031982166380ac58cd60e01b148061274b57506001600160e01b03198216635b5e139f60e01b145b80610ab557506301ffc9a760e01b6001600160e01b0319831614610ab5565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061279f8261111b565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166128515760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610bc2565b600061285c8361111b565b9050806001600160a01b0316846001600160a01b031614806128975750836001600160a01b031661288c84610b4d565b6001600160a01b0316145b806128c757506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166128e28261111b565b6001600160a01b03161461294a5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610bc2565b6001600160a01b0382166129ac5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610bc2565b6129b7838383613dfe565b6129c260008261276a565b6001600160a01b03831660009081526003602052604081208054600192906129eb9084906150b6565b90915550506001600160a01b0382166000908152600360205260408120805460019290612a19908490614cf1565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600b80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61156a828260405180602001604052806000815250613eb6565b816001600160a01b0316836001600160a01b03161415612b485760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610bc2565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b612bc08484846128cf565b612bcc84848484613ee9565b611a275760405162461bcd60e51b8152600401610bc2906150cd565b60408051808201909152606080825260208201526000612c31612c0a84613b9a565b6010604051602001612c1d92919061511f565b604051602081830303815290604052613ff6565b90506000612c416103e883615162565b9050610190811115612db157601f8054612c5b9084615162565b81548110612c6b57612c6b614c8a565b9060005260206000209060020201604051806040016040529081600082018054612c9490614960565b80601f0160208091040260200160405190810160405280929190818152602001828054612cc090614960565b8015612d0d5780601f10612ce257610100808354040283529160200191612d0d565b820191906000526020600020905b815481529060010190602001808311612cf057829003601f168201915b50505050508152602001600182018054612d2690614960565b80601f0160208091040260200160405190810160405280929190818152602001828054612d5290614960565b8015612d9f5780601f10612d7457610100808354040283529160200191612d9f565b820191906000526020600020905b815481529060010190602001808311612d8257829003601f168201915b50505050508152505092505050919050565b601f600081548110612c6b57612c6b614c8a565b6040805180820190915260608082526020820152610ab5826040518060400160405280600b81526020016a4261636b67726f756e647360a81b8152506020805480602002602001604051908101604052809291908181526020016000905b82821015612f795783829060005260206000209060020201604051806040016040529081600082018054612e5690614960565b80601f0160208091040260200160405190810160405280929190818152602001828054612e8290614960565b8015612ecf5780601f10612ea457610100808354040283529160200191612ecf565b820191906000526020600020905b815481529060010190602001808311612eb257829003601f168201915b50505050508152602001600182018054612ee890614960565b80601f0160208091040260200160405190810160405280929190818152602001828054612f1490614960565b8015612f615780601f10612f3657610100808354040283529160200191612f61565b820191906000526020600020905b815481529060010190602001808311612f4457829003601f168201915b50505050508152505081526020019060010190612e23565b505050506032614027565b60408051808201909152606080825260208201526000612fb9612fa684613b9a565b6010604051602001612c1d929190615176565b601e805491925090612fcb9083615162565b81548110612fdb57612fdb614c8a565b906000526020600020906002020160405180604001604052908160008201805461300490614960565b80601f016020809104026020016040519081016040528092919081815260200182805461303090614960565b801561307d5780601f106130525761010080835404028352916020019161307d565b820191906000526020600020905b81548152906001019060200180831161306057829003601f168201915b5050505050815260200160018201805461309690614960565b80601f01602080910402602001604051908101604052809291908181526020018280546130c290614960565b801561310f5780601f106130e45761010080835404028352916020019161310f565b820191906000526020600020905b8154815290600101906020018083116130f257829003601f168201915b505050505081525050915050919050565b6040805180820190915260608082526020820152600061315561314284613b9a565b6010604051602001612c1d9291906151a6565b905060006131656103e883615162565b90506103de81111561318e576019604051806040016040529081600082018054612c9490614960565b60228054612c5b9084615162565b604080518082019091526060808252602082015260006131be61314284613b9a565b905060006131ce6103e883615162565b905060648110156131f6576017604051806040016040529081600082018054612c9490614960565b6103de81111561321d576015604051806040016040529081600082018054612c9490614960565b6013604051806040016040529081600082018054612c9490614960565b6040805180820190915260608082526020820152600061325c61314284613b9a565b9050600061326c6103e883615162565b905061019081111561328657601d8054612c5b9084615162565b601d600081548110612c6b57612c6b614c8a565b6040805180820190915260608082526020820152604080518082019091526060808252602082015260006132d061314285613b9a565b905060006132e06103e883615162565b60408051808201825260048152634e6f6e6560e01b6020808301919091529086528151808201909252600082528501529050606481106134c2576134bf85604051806040016040528060058152602001644c6f676f7360d81b8152506021805480602002602001604051908101604052809291908181526020016000905b828210156134b4578382906000526020600020906002020160405180604001604052908160008201805461339190614960565b80601f01602080910402602001604051908101604052809291908181526020018280546133bd90614960565b801561340a5780601f106133df5761010080835404028352916020019161340a565b820191906000526020600020905b8154815290600101906020018083116133ed57829003601f168201915b5050505050815260200160018201805461342390614960565b80601f016020809104026020016040519081016040528092919081815260200182805461344f90614960565b801561349c5780601f106134715761010080835404028352916020019161349c565b820191906000526020600020905b81548152906001019060200180831161347f57829003601f168201915b5050505050815250508152602001906001019061335e565b505050506050614027565b92505b6103de8111156134e15760408051602080820190925260008152908401525b50909392505050565b6040805180820190915260608082526020820152610ab58260405180604001604052806008815260200167437265617475726560c01b8152506024805480602002602001604051908101604052809291908181526020016000905b8282101561369b578382906000526020600020906002020160405180604001604052908160008201805461357890614960565b80601f01602080910402602001604051908101604052809291908181526020018280546135a490614960565b80156135f15780601f106135c6576101008083540402835291602001916135f1565b820191906000526020600020905b8154815290600101906020018083116135d457829003601f168201915b5050505050815260200160018201805461360a90614960565b80601f016020809104026020016040519081016040528092919081815260200182805461363690614960565b80156136835780601f1061365857610100808354040283529160200191613683565b820191906000526020600020905b81548152906001019060200180831161366657829003601f168201915b50505050508152505081526020019060010190613545565b50505050605a614027565b6040805180820190915260608082526020820152610ab5826040518060400160405280600b81526020016a466f726567726f756e647360a81b8152506023805480602002602001604051908101604052809291908181526020016000905b8282101561385a578382906000526020600020906002020160405180604001604052908160008201805461373790614960565b80601f016020809104026020016040519081016040528092919081815260200182805461376390614960565b80156137b05780601f10613785576101008083540402835291602001916137b0565b820191906000526020600020905b81548152906001019060200180831161379357829003601f168201915b505050505081526020016001820180546137c990614960565b80601f01602080910402602001604051908101604052809291908181526020018280546137f590614960565b80156138425780601f1061381757610100808354040283529160200191613842565b820191906000526020600020905b81548152906001019060200180831161382557829003601f168201915b50505050508152505081526020019060010190613704565b505050506046614027565b6060600061387561314284613b9a565b905060006138856103e883615162565b60408051808201909152600781526629b737bbb6b0b760c91b602082015290915060648211156138d4575060408051808201909152600c81526b446f75626c6520426f67657960a01b60208201525b60c88211156138fb5750604080518082019091526005815264426f67657960d81b60208201525b61019082111561392157506040805180820190915260038152622830b960e91b60208201525b6102bc82111561394a575060408051808201909152600681526542697264696560d01b60208201525b61032082111561397257506040805180820190915260058152644561676c6560d81b60208201525b6103848211156139a1575060408051808201909152600c81526b446f75626c65204561676c6560a01b60208201525b6103de8211156128c7575060408051808201909152600381526241636560e81b6020820152949350505050565b606060006139f16139de84613b9a565b6010604051602001612c1d9291906151d4565b90506000613a016103e883615162565b90506060613a1a613a158660026019614138565b613b9a565b90506064821115613a3857613a35613a158660196032614138565b90505b60c8821115613a5457613a51613a15866032604b614138565b90505b610190821115613a7157613a6e613a1586604b6096614138565b90505b610352821115613a8e57613a8b613a1586609660e1614138565b90505b610384821115613aac57613aa9613a158660e1610113614138565b90505b6103de821115613acb57613ac8613a158661011361015e614138565b90505b6103e68211156128c757613ae7613a158661015e6101db614138565b95945050505050565b60606000613b0061314284613b9a565b90506000613b106103e883615162565b90506064811015613b43575050604080518082019091526009815268131bdb99c810985b1b60ba1b602082015292915050565b6103de811115613b73575050604080518082019091526007815266496e20486f6c6560c81b602082015292915050565b505060408051808201909152600881526714dd185b99185c9960c21b602082015292915050565b606081613bbe5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115613be85780613bd281614cd6565b9150613be19050600a83615205565b9150613bc2565b60008167ffffffffffffffff811115613c0357613c036147a0565b6040519080825280601f01601f191660200182016040528015613c2d576020820181803683370190505b5090505b84156128c757613c426001836150b6565b9150613c4f600a86615162565b613c5a906030614cf1565b60f81b818381518110613c6f57613c6f614c8a565b60200101906001600160f81b031916908160001a905350613c91600a86615205565b9450613c31565b805160609080613cb8575050604080516020810190915260008152919050565b60006003613cc7836002614cf1565b613cd19190615205565b613cdc906004614d09565b90506000613ceb826020614cf1565b67ffffffffffffffff811115613d0357613d036147a0565b6040519080825280601f01601f191660200182016040528015613d2d576020820181803683370190505b5090506000604051806060016040528060408152602001615447604091399050600181016020830160005b86811015613db9576003818a01810151603f601282901c8116860151600c83901c8216870151600684901c831688015192909316870151600891821b60ff94851601821b92841692909201901b91160160e01b835260049092019101613d58565b506003860660018114613dd35760028114613de457613df0565b613d3d60f01b600119830152613df0565b603d60f81b6000198301525b505050918152949350505050565b6001600160a01b038316613e5957613e5481600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b613e7c565b816001600160a01b0316836001600160a01b031614613e7c57613e7c838261418d565b6001600160a01b038216613e9357610cf88161422a565b826001600160a01b0316826001600160a01b031614610cf857610cf882826142d9565b613ec0838361431d565b613ecd6000848484613ee9565b610cf85760405162461bcd60e51b8152600401610bc2906150cd565b60006001600160a01b0384163b15613feb57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290613f2d903390899088908890600401615219565b602060405180830381600087803b158015613f4757600080fd5b505af1925050508015613f77575060408051601f3d908101601f19168201909252613f7491810190615256565b60015b613fd1573d808015613fa5576040519150601f19603f3d011682016040523d82523d6000602084013e613faa565b606091505b508051613fc95760405162461bcd60e51b8152600401610bc2906150cd565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506128c7565b506001949350505050565b6000816040516020016140099190615273565b60408051601f19818403018152919052805160209091012092915050565b60408051808201909152606080825260208201526040805180820190915260608082526020820152835161408c5760408051808201825260048152634e6f6e6560e01b60208083019190915290835281518082019092526000825282015290506128c7565b60006140af8661409b89613b9a565b6010604051602001612c1d93929190615285565b9050848551826140bf9190615162565b815181106140cf576140cf614c8a565b6020026020010151915060006064826140e89190615162565b9050848111156140fd578293505050506128c7565b505060408051808201825260048152634e6f6e6560e01b60208083019190915290835281518082019092526000825282015295945050505050565b60008061415a61414786613b9a565b6010604051602001612c1d9291906152b7565b9050600061416885856150b6565b905060006141768284615162565b90506141828682614cf1565b979650505050505050565b6000600161419a84611192565b6141a491906150b6565b6000838152600760205260409020549091508082146141f7576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061423c906001906150b6565b6000838152600960205260408120546008805493945090928490811061426457614264614c8a565b90600052602060002001549050806008838154811061428557614285614c8a565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806142bd576142bd6152ef565b6001900381819060005260206000200160009055905550505050565b60006142e483611192565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166143735760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610bc2565b6000818152600260205260409020546001600160a01b0316156143d85760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610bc2565b6143e460008383613dfe565b6001600160a01b038216600090815260036020526040812080546001929061440d908490614cf1565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461447790614960565b90600052602060002090601f01602090048101928261449957600085556144df565b82601f106144b257805160ff19168380011785556144df565b828001600101855582156144df579182015b828111156144df5782518255916020019190600101906144c4565b506144eb929150614517565b5090565b604051806102e001604052806017905b60608152602001906001900390816144ff5790505090565b5b808211156144eb5760008155600101614518565b6001600160e01b0319811681146125a357600080fd5b60006020828403121561455457600080fd5b813561455f8161452c565b9392505050565b60005b83811015614581578181015183820152602001614569565b83811115611a275750506000910152565b600081518084526145aa816020860160208601614566565b601f01601f19169290920160200192915050565b60208152600061455f6020830184614592565b6000602082840312156145e357600080fd5b5035919050565b80356001600160a01b038116811461460157600080fd5b919050565b6000806040838503121561461957600080fd5b614622836145ea565b946020939093013593505050565b6000604082840312156114d957600080fd5b60006020828403121561465457600080fd5b813567ffffffffffffffff81111561466b57600080fd5b6128c784828501614630565b60008060006060848603121561468c57600080fd5b614695846145ea565b92506146a3602085016145ea565b9150604084013590509250925092565b60008083601f8401126146c557600080fd5b50813567ffffffffffffffff8111156146dd57600080fd5b6020830191508360208260051b85010111156146f857600080fd5b9250929050565b6000806020838503121561471257600080fd5b823567ffffffffffffffff81111561472957600080fd5b614735858286016146b3565b90969095509350505050565b60006020828403121561475357600080fd5b61455f826145ea565b6020808252825182820181905260009190848201906040850190845b8181101561479457835183529284019291840191600101614778565b50909695505050505050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff808411156147d1576147d16147a0565b604051601f8501601f19908116603f011681019082821181831017156147f9576147f96147a0565b8160405280935085815286868601111561481257600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561483e57600080fd5b813567ffffffffffffffff81111561485557600080fd5b8201601f8101841361486657600080fd5b6128c7848235602084016147b6565b6000806040838503121561488857600080fd5b614891836145ea565b9150602083013580151581146148a657600080fd5b809150509250929050565b600080600080608085870312156148c757600080fd5b6148d0856145ea565b93506148de602086016145ea565b925060408501359150606085013567ffffffffffffffff81111561490157600080fd5b8501601f8101871361491257600080fd5b614921878235602084016147b6565b91505092959194509250565b6000806040838503121561494057600080fd5b614949836145ea565b9150614957602084016145ea565b90509250929050565b600181811c9082168061497457607f821691505b602082108114156114d957634e487b7160e01b600052602260045260246000fd5b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526012908201527110dbdb9d1c9858dd081a5cc81b1bd8dad95960721b604082015260600190565b6000808335601e19843603018112614a0d57600080fd5b83018035915067ffffffffffffffff821115614a2857600080fd5b6020019150368190038213156146f857600080fd5b601f821115610cf857600081815260208120601f850160051c81016020861015614a645750805b601f850160051c820191505b81811015614a8357828155600101614a70565b505050505050565b67ffffffffffffffff831115614aa357614aa36147a0565b614ab783614ab18354614960565b83614a3d565b6000601f841160018114614aeb5760008515614ad35750838201355b600019600387901b1c1916600186901b178355614b45565b600083815260209020601f19861690835b82811015614b1c5786850135825560209485019460019092019101614afc565b5086821015614b395760001960f88860031b161c19848701351681555b505060018560011b0183555b5050505050565b614b5682836149f6565b67ffffffffffffffff811115614b6e57614b6e6147a0565b614b8281614b7c8554614960565b85614a3d565b6000601f821160018114614bb65760008315614b9e5750838201355b600019600385901b1c1916600184901b178555614c10565b600085815260209020601f19841690835b82811015614be75786850135825560209485019460019092019101614bc7565b5084821015614c045760001960f88660031b161c19848701351681555b505060018360011b0185555b50505050614c2160208301836149f6565b611a27818360018601614a8b565b61156a8282614b4c565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b60008235603e19833603018112614cb657600080fd5b9190910192915050565b634e487b7160e01b600052601160045260246000fd5b6000600019821415614cea57614cea614cc0565b5060010190565b60008219821115614d0457614d04614cc0565b500190565b6000816000190483118215151615614d2357614d23614cc0565b500290565b600089516020614d3b8285838f01614566565b8a5191840191614d4e8184848f01614566565b8a51920191614d608184848e01614566565b8951920191614d728184848d01614566565b8851920191614d848184848c01614566565b8751920191614d968184848b01614566565b8651920191614da88184848a01614566565b8551920191614dba8184848901614566565b919091019b9a5050505050505050505050565b600088516020614de08285838e01614566565b895191840191614df38184848e01614566565b8951920191614e058184848d01614566565b8851920191614e178184848c01614566565b8751920191614e298184848b01614566565b8651920191614e3b8184848a01614566565b8551920191614e4d8184848901614566565b919091019a9950505050505050505050565b60008a51614e71818460208f01614566565b8a51614e838183860160208f01614566565b8a519184010190614e98818360208e01614566565b8951614eaa8183850160208e01614566565b8951929091010190614ec0818360208c01614566565b8751614ed28183850160208c01614566565b8751929091010190614ee8818360208a01614566565b8551614efa8183850160208a01614566565b8551929091010190614f10818360208801614566565b019b9a5050505050505050505050565b60008154614f2d81614960565b60018281168015614f455760018114614f5657614f85565b60ff19841687528287019450614f85565b8560005260208060002060005b85811015614f7c5781548a820152908401908201614f63565b50505082870194505b5050505092915050565b6e7b226e616d65223a2242616c6c202360881b81528451600090614fba81600f850160208a01614566565b73111610113232b9b1b934b83a34b7b711101d101160611b600f91840191820152614fe86023820187614f20565b90507f222c2022696d61676522203a2022646174613a696d6167652f7376672b786d6c8152670ed8985cd94d8d0b60c21b60208201528451615031816028840160208901614566565b6201116160ed1b60289290910191820152835161505581602b840160208801614566565b607d60f81b602b9290910191820152602c019695505050505050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c0000008152600082516150a981601d850160208701614566565b91909101601d0192915050565b6000828210156150c8576150c8614cc0565b500390565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b62536b7960e81b81526000835161513d816003850160208801614566565b613ae760038285010185614f20565b634e487b7160e01b600052601260045260246000fd5b6000826151715761517161514c565b500690565b6511dc9bdd5b9960d21b815260008351615197816006850160208801614566565b613ae760068285010185614f20565b6310985b1b60e21b8152600083516151c5816004850160208801614566565b613ae760048285010185614f20565b665961726461676560c81b8152600083516151f6816007850160208801614566565b613ae760078285010185614f20565b6000826152145761521461514c565b500490565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061524c90830184614592565b9695505050505050565b60006020828403121561526857600080fd5b815161455f8161452c565b60008251614cb6818460208701614566565b60008451615297818460208901614566565b8451908301906152ab818360208901614566565b61418281830186614f20565b6d59617264616765496e52616e676560901b8152600083516152e081600e850160208801614566565b613ae7600e8285010185614f20565b634e487b7160e01b600052603160045260246000fdfe22207d2c207b202274726169745f7479706522203a202242616c6c222c202276616c756522203a202222207d2c207b202274726169745f7479706522203a202242616c6c20436f6c6f72222c202276616c756522203a20223c7376672077696474683d2235303022206865696768743d22353030222076696577426f783d223020302035303020353030222066696c6c3d226e6f6e652220786d6c6e733d22687474703a2f2f7777772e77332e6f72672f323030302f737667223e22207d2c207b202274726169745f7479706522203a2022536b79222c202276616c756522203a202222207d2c207b202274726169745f7479706522203a2022466f726567726f756e64222c202276616c756522203a202222207d2c207b202274726169745f7479706522203a202242616c6c204272616e64222c202276616c756522203a20224142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2f22207d2c207b202274726169745f7479706522203a20224c616e646564222c202276616c756522203a202222207d2c207b202274726169745f7479706522203a202259617264616765222c202276616c756522203a202222207d2c207b202274726169745f7479706522203a20224372656174757265222c202276616c756522203a202222207d2c207b202274726169745f7479706522203a20224261636b67726f756e64222c202276616c756522203a2022226174747269627574657322203a205b7b202274726169745f7479706522203a202253636f7265222c202276616c756522203a202222207d2c207b202274726169745f7479706522203a202247726f756e64222c202276616c756522203a2022a2646970667358221220890e79e718c479c4157819e84202060ebcd22a0f1e60971542274cf223bb28a464736f6c634300080800333c636972636c652063783d223235302e35222063793d223235302e352220723d223133372e35222066696c6c3d223c656c6c697073652063783d22323530222063793d22343434222072783d22323530222072793d223536222066696c6c3d2223313431423139222066696c6c2d6f7061636974793d22302e3735222f3e52616e646f6d6c792067656e6572617465642c2066756c6c79206f6e2d636861696e20676f6c662062616c6c732e3c7265637420793d22333838222077696474683d2235303022206865696768743d22313132222066696c6c3d223c636972636c652063783d22333436222063793d223331302220723d223738222066696c6c3d223c7061746820643d224d333634203439344333333020343938203239312035303020323530203530304332303920353030203137312034393820313337203439344331363220343538203230322034333420323530203433344332393820343334203333392034353820333634203439345a222066696c6c3d22

Deployed Bytecode

0x6080604052600436106103975760003560e01c8063819b25ba116101dc578063b88d4fde11610102578063e8a3d485116100a0578063efa3708b1161006f578063efa3708b14610a10578063f2fde38b14610a30578063f5d99d3514610a50578063f8812af214610a7057600080fd5b8063e8a3d48514610972578063e985e9c514610987578063eecd82d9146109d0578063ef7cf1b6146109f057600080fd5b8063c87b56dd116100dc578063c87b56dd146108fd578063cb8c3d9e1461091d578063d51033b114610932578063d8affe211461095257600080fd5b8063b88d4fde1461089d578063b8bb4eeb146108bd578063bf7aaf66146108dd57600080fd5b8063938e3d7b1161017a578063a0712d6811610149578063a0712d6814610835578063a22cb46514610848578063ade690de14610868578063b323893c1461087d57600080fd5b8063938e3d7b146107c057806395d89b41146107e05780639ab43da4146107f55780639b5fa4191461081557600080fd5b8063853828b6116101b6578063853828b61461075a5780638da5cb5b1461076257806390c3f38f1461078057806391b7f5ed146107a057600080fd5b8063819b25ba146106f7578063833b9499146107175780638462151c1461072d57600080fd5b806342842e0e116102c15780636352211e1161025f578063715018a61161022e578063715018a6146106a3578063753868e3146106b857806376500c17146106cd5780637d55094d146106e257600080fd5b80636352211e1461063957806365f1309714610659578063696575731461066e57806370a082311461068357600080fd5b80635b01c6a71161029b5780635b01c6a7146105cf5780635b2064d8146105e45780635f0329651461060457806362a0f93c1461062457600080fd5b806342842e0e1461057a578063485be3ed1461059a5780634f6ccce7146105af57600080fd5b80631a0925411161033957806331f9c9191161030857806331f9c9191461050b578063324cb3cb1461052557806332cb6b0c146105445780633d973bda1461055a57600080fd5b80631a092541146104965780631b822268146104ab57806323b872dd146104cb5780632f745c59146104eb57600080fd5b8063095ea7b311610375578063095ea7b31461042b5780630ef589061461044d578063103f397c1461046c57806318160ddd1461048157600080fd5b806301ffc9a71461039c57806306fdde03146103d1578063081812fc146103f3575b600080fd5b3480156103a857600080fd5b506103bc6103b7366004614542565b610a90565b60405190151581526020015b60405180910390f35b3480156103dd57600080fd5b506103e6610abb565b6040516103c891906145be565b3480156103ff57600080fd5b5061041361040e3660046145d1565b610b4d565b6040516001600160a01b0390911681526020016103c8565b34801561043757600080fd5b5061044b610446366004614606565b610be7565b005b34801561045957600080fd5b50601d545b6040519081526020016103c8565b34801561047857600080fd5b5060215461045e565b34801561048d57600080fd5b5060085461045e565b3480156104a257600080fd5b506103e6610cfd565b3480156104b757600080fd5b5061044b6104c6366004614642565b610d0c565b3480156104d757600080fd5b5061044b6104e6366004614677565b610d9f565b3480156104f757600080fd5b5061045e610506366004614606565b610dd0565b34801561051757600080fd5b506011546103bc9060ff1681565b34801561053157600080fd5b506011546103bc90610100900460ff1681565b34801561055057600080fd5b5061045e61151881565b34801561056657600080fd5b5061044b6105753660046146ff565b610e66565b34801561058657600080fd5b5061044b610595366004614677565b610f20565b3480156105a657600080fd5b5060225461045e565b3480156105bb57600080fd5b5061045e6105ca3660046145d1565b610f3b565b3480156105db57600080fd5b5060235461045e565b3480156105f057600080fd5b5061044b6105ff3660046146ff565b610fce565b34801561061057600080fd5b5061044b61061f366004614642565b611088565b34801561063057600080fd5b50601f5461045e565b34801561064557600080fd5b506104136106543660046145d1565b61111b565b34801561066557600080fd5b5061045e600981565b34801561067a57600080fd5b5060205461045e565b34801561068f57600080fd5b5061045e61069e366004614741565b611192565b3480156106af57600080fd5b5061044b611219565b3480156106c457600080fd5b5061044b61124f565b3480156106d957600080fd5b5061045e60b481565b3480156106ee57600080fd5b5061044b61128a565b34801561070357600080fd5b5061044b6107123660046145d1565b6112c8565b34801561072357600080fd5b5061045e600d5481565b34801561073957600080fd5b5061074d610748366004614741565b611420565b6040516103c8919061475c565b61044b6114df565b34801561076e57600080fd5b50600b546001600160a01b0316610413565b34801561078c57600080fd5b5061044b61079b36600461482c565b61152d565b3480156107ac57600080fd5b5061044b6107bb3660046145d1565b61156e565b3480156107cc57600080fd5b5061044b6107db36600461482c565b61159d565b3480156107ec57600080fd5b506103e66115da565b34801561080157600080fd5b5061044b6108103660046146ff565b6115e9565b34801561082157600080fd5b5061044b6108303660046146ff565b6116a3565b61044b6108433660046145d1565b61175d565b34801561085457600080fd5b5061044b610863366004614875565b611957565b34801561087457600080fd5b5060245461045e565b34801561088957600080fd5b5061044b610898366004614642565b611962565b3480156108a957600080fd5b5061044b6108b83660046148b1565b6119f5565b3480156108c957600080fd5b5061044b6108d8366004614642565b611a2d565b3480156108e957600080fd5b5061044b6108f8366004614642565b611ac0565b34801561090957600080fd5b506103e66109183660046145d1565b611b53565b34801561092957600080fd5b50601e5461045e565b34801561093e57600080fd5b5061044b61094d366004614642565b6121cf565b34801561095e57600080fd5b5061044b61096d366004614642565b612262565b34801561097e57600080fd5b506103e66122f5565b34801561099357600080fd5b506103bc6109a236600461492d565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156109dc57600080fd5b5061044b6109eb366004614642565b612304565b3480156109fc57600080fd5b5061044b610a0b3660046146ff565b612397565b348015610a1c57600080fd5b5061044b610a2b3660046146ff565b612451565b348015610a3c57600080fd5b5061044b610a4b366004614741565b61250b565b348015610a5c57600080fd5b5061044b610a6b3660046146ff565b6125a6565b348015610a7c57600080fd5b5061044b610a8b3660046146ff565b612660565b60006001600160e01b0319821663780e9d6360e01b1480610ab55750610ab58261271a565b92915050565b606060008054610aca90614960565b80601f0160208091040260200160405190810160405280929190818152602001828054610af690614960565b8015610b435780601f10610b1857610100808354040283529160200191610b43565b820191906000526020600020905b815481529060010190602001808311610b2657829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610bcb5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b6000610bf28261111b565b9050806001600160a01b0316836001600160a01b03161415610c605760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610bc2565b336001600160a01b0382161480610c7c5750610c7c81336109a2565b610cee5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610bc2565b610cf8838361276a565b505050565b6060600e8054610aca90614960565b600b546001600160a01b03163314610d365760405162461bcd60e51b8152600401610bc290614995565b601154610100900460ff1615610d5e5760405162461bcd60e51b8152600401610bc2906149ca565b6023805460018101825560009190915281906002027fd57b2b5166478fd4318d2acc6cc2c704584312bdd8781b32d5d06abda57f423001610cf88282614c2f565b610da933826127d8565b610dc55760405162461bcd60e51b8152600401610bc290614c39565b610cf88383836128cf565b6000610ddb83611192565b8210610e3d5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610bc2565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600b546001600160a01b03163314610e905760405162461bcd60e51b8152600401610bc290614995565b601154610100900460ff1615610eb85760405162461bcd60e51b8152600401610bc2906149ca565b60005b81811015610cf8576021838383818110610ed757610ed7614c8a565b9050602002810190610ee99190614ca0565b815460018101835560009283526020909220909160020201610f0b8282614c2f565b50508080610f1890614cd6565b915050610ebb565b610cf8838383604051806020016040528060008152506119f5565b6000610f4660085490565b8210610fa95760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610bc2565b60088281548110610fbc57610fbc614c8a565b90600052602060002001549050919050565b600b546001600160a01b03163314610ff85760405162461bcd60e51b8152600401610bc290614995565b601154610100900460ff16156110205760405162461bcd60e51b8152600401610bc2906149ca565b60005b81811015610cf857602083838381811061103f5761103f614c8a565b90506020028101906110519190614ca0565b8154600181018355600092835260209092209091600202016110738282614c2f565b5050808061108090614cd6565b915050611023565b600b546001600160a01b031633146110b25760405162461bcd60e51b8152600401610bc290614995565b601154610100900460ff16156110da5760405162461bcd60e51b8152600401610bc2906149ca565b601f805460018101825560009190915281906002027fa03837a25210ee280c2113ff4b77ca23440b19d4866cca721c801278fd08d80701610cf88282614c2f565b6000818152600260205260408120546001600160a01b031680610ab55760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610bc2565b60006001600160a01b0382166111fd5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610bc2565b506001600160a01b031660009081526003602052604090205490565b600b546001600160a01b031633146112435760405162461bcd60e51b8152600401610bc290614995565b61124d6000612a7a565b565b600b546001600160a01b031633146112795760405162461bcd60e51b8152600401610bc290614995565b6011805461ff001916610100179055565b600b546001600160a01b031633146112b45760405162461bcd60e51b8152600401610bc290614995565b6011805460ff19811660ff90911615179055565b600b546001600160a01b031633146112f25760405162461bcd60e51b8152600401610bc290614995565b60006112fd60085490565b905061151861130c8383614cf1565b111561135a5760405162461bcd60e51b815260206004820152601f60248201527f5265736572766520776f756c6420657863656564206d617820746f6b656e73006044820152606401610bc2565b60b482600c5461136a9190614cf1565b11156113c95760405162461bcd60e51b815260206004820152602860248201527f43616e6e6f7420657863656564206d6178207465616d207265736572766520616044820152671b1b1bdd1b595b9d60c21b6064820152608401610bc2565b60005b82811015611404576113f2336113e28385614cf1565b6113ed906001614cf1565b612acc565b806113fc81614cd6565b9150506113cc565b5081600c60008282546114179190614cf1565b90915550505050565b6060600061142d83611192565b90508061144e5760408051600080825260208201909252905b509392505050565b60008167ffffffffffffffff811115611469576114696147a0565b604051908082528060200260200182016040528015611492578160200160208202803683370190505b50905060005b82811015611446576114aa8582610dd0565b8282815181106114bc576114bc614c8a565b6020908102919091010152806114d181614cd6565b915050611498565b50919050565b600b546001600160a01b031633146115095760405162461bcd60e51b8152600401610bc290614995565b60405133904780156108fc02916000818181858888f1935050505061124d57600080fd5b600b546001600160a01b031633146115575760405162461bcd60e51b8152600401610bc290614995565b805161156a90600e90602084019061446b565b5050565b600b546001600160a01b031633146115985760405162461bcd60e51b8152600401610bc290614995565b600d55565b600b546001600160a01b031633146115c75760405162461bcd60e51b8152600401610bc290614995565b805161156a90601290602084019061446b565b606060018054610aca90614960565b600b546001600160a01b031633146116135760405162461bcd60e51b8152600401610bc290614995565b601154610100900460ff161561163b5760405162461bcd60e51b8152600401610bc2906149ca565b60005b81811015610cf857601d83838381811061165a5761165a614c8a565b905060200281019061166c9190614ca0565b81546001810183556000928352602090922090916002020161168e8282614c2f565b5050808061169b90614cd6565b91505061163e565b600b546001600160a01b031633146116cd5760405162461bcd60e51b8152600401610bc290614995565b601154610100900460ff16156116f55760405162461bcd60e51b8152600401610bc2906149ca565b60005b81811015610cf857601f83838381811061171457611714614c8a565b90506020028101906117269190614ca0565b8154600181018355600092835260209092209091600202016117488282614c2f565b5050808061175590614cd6565b9150506116f8565b600061176860085490565b60115490915060ff166117c95760405162461bcd60e51b815260206004820152602360248201527f53616c65206d7573742062652061637469766520746f206d696e7420746f6b6560448201526237399760e91b6064820152608401610bc2565b600982111561181a5760405162461bcd60e51b815260206004820152601c60248201527f4578636565646564206d617820746f6b656e2070757263686173652e000000006044820152606401610bc2565b6000821161186a5760405162461bcd60e51b815260206004820152601e60248201527f43616e6e6f74206d696e74206c657373207468616e203120746f6b656e2e00006044820152606401610bc2565b6115186118778383614cf1565b11156118cf5760405162461bcd60e51b815260206004820152602160248201527f507572636861736520776f756c6420657863656564206d617820746f6b656e736044820152601760f91b6064820152608401610bc2565b3482600d546118de9190614d09565b111561192c5760405162461bcd60e51b815260206004820181905260248201527f45746865722076616c75652073656e74206973206e6f7420636f72726563742e6044820152606401610bc2565b60005b82811015610cf857611945336113e28385614cf1565b8061194f81614cd6565b91505061192f565b61156a338383612ae6565b600b546001600160a01b0316331461198c5760405162461bcd60e51b8152600401610bc290614995565b601154610100900460ff16156119b45760405162461bcd60e51b8152600401610bc2906149ca565b6022805460018101825560009190915281906002027f61035b26e3e9eee00e0d72fd1ee8ddca6894550dca6916ea2ac6baa90d11e51001610cf88282614c2f565b6119ff33836127d8565b611a1b5760405162461bcd60e51b8152600401610bc290614c39565b611a2784848484612bb5565b50505050565b600b546001600160a01b03163314611a575760405162461bcd60e51b8152600401610bc290614995565b601154610100900460ff1615611a7f5760405162461bcd60e51b8152600401610bc2906149ca565b6021805460018101825560009190915281906002027f3a6357012c1a3ae0a17d304c9920310382d968ebcc4b1771f41c6b304205b57001610cf88282614c2f565b600b546001600160a01b03163314611aea5760405162461bcd60e51b8152600401610bc290614995565b601154610100900460ff1615611b125760405162461bcd60e51b8152600401610bc2906149ca565b6020805460018101825560009190915281906002027fc97bfaf2f8ee708c303a06d134f5ecd8389ae0432af62dc132a24118292866bb01610cf88282614c2f565b6060611b5e60085490565b821115611ba35760405162461bcd60e51b81526020600482015260136024820152722130b636103237b2b9b713ba1032bc34b9ba1760691b6044820152606401610bc2565b60008211611be95760405162461bcd60e51b81526020600482015260136024820152722130b636103237b2b9b713ba1032bc34b9ba1760691b6044820152606401610bc2565b606080611bf46144ef565b6040518060a001604052806063815260200161535e606391398152611c1885612be8565b602001518160016020020152611c2d85612dc5565b602001516040820152601c8054611c4390614960565b80601f0160208091040260200160405190810160405280929190818152602001828054611c6f90614960565b8015611cbc5780601f10611c9157610100808354040283529160200191611cbc565b820191906000526020600020905b815481529060010190602001808311611c9f57829003601f168201915b505050505081600360178110611cd457611cd4614c8a565b6020020152611ce285612f84565b602090810151608083015260408051808201909152600381526211179f60e91b9181019190915260a0820152611d1785613120565b6020015160c0820152611d298561319c565b6020015160e0820152611d3b8561323a565b60209081015161010083015260408051808201909152600381526211179f60e91b91810191909152610120820152611d728561329a565b60200151610140820152611d85856134ea565b60200151610160820152611d98856136a6565b60209081015161018083015260408051808201825260068152651e17b9bb339f60d11b818401526101a0840152825183830151828501516060860151608087015160a088015160c089015160e08a01519751611e039997989697959694959394929391929101614d28565b60408051808303601f19018152908290526101008301516101208401516101408501516101608601516101808701516101a0880151959950611e4a968a9690602001614dcd565b60408051601f1981840301815260608301909152603580835290945061553a60208301398152611e7985613865565b81600160200201819052506040518060600160405280602c81526020016154b2602c91396040820152611eab856139ce565b60608083019190915260408051918201905260288082526153c160208301396080820152611ed885612be8565b5160a08201526040805160608101909152602f80825261550b602083013960c0820152611f0485612dc5565b5160e08201526040805160608101909152602b80825261556f6020830139610100820152611f3185612f84565b51610120820152604080516060810190915260298082526153066020830139610140820152611f5f85613af0565b6101608201526040805160608101909152602f80825261532f6020830139610180820152611f8c8561323a565b516101a08201526040805160608101909152602f80825261541860208301396101c0820152611fba8561329a565b516101e08201526040805160608101909152602d8082526154de6020830139610200820152611fe8856134ea565b516102208201526040805160608101909152602f8082526153e96020830139610240820152612016856136a6565b516102608201526040805160608101909152602b808252615487602083013961028082015261204485613120565b516102a0820152604080518082019091526004815263227d205d60e01b6020820152816016602090810291909101919091528151828201516040808501516060860151608087015160a088015160c089015160e08a01516101008b015196516120b99a96979596949593949293919201614e5f565b60408051808303601f19018152908290526101208301516101408401516101608501516101808601516101a08701516101c088015195985061210096899690602001614dcd565b60408051808303601f19018152908290526101e08301516102008401516102208501516102408601516102608701516102808801516102a08901516102c08a0151979a50612153988b9890602001614e5f565b60405160208183030381529060405291506121a361217086613b9a565b600e61217b86613c98565b8560405160200161218f9493929190614f8f565b604051602081830303815290604052613c98565b9250826040516020016121b69190615071565b60408051601f1981840301815291905295945050505050565b600b546001600160a01b031633146121f95760405162461bcd60e51b8152600401610bc290614995565b601154610100900460ff16156122215760405162461bcd60e51b8152600401610bc2906149ca565b601e805460018101825560009190915281906002027f50bb669a95c7b50b7e8a6f09454034b2b14cf2b85c730dca9a539ca82cb6e35001610cf88282614c2f565b600b546001600160a01b0316331461228c5760405162461bcd60e51b8152600401610bc290614995565b601154610100900460ff16156122b45760405162461bcd60e51b8152600401610bc2906149ca565b6024805460018101825560009190915281906002027f7cd332d19b93bcabe3cce7ca0c18a052f57e5fd03b4758a09f30f5ddc4b22ec401610cf88282614c2f565b606060128054610aca90614960565b600b546001600160a01b0316331461232e5760405162461bcd60e51b8152600401610bc290614995565b601154610100900460ff16156123565760405162461bcd60e51b8152600401610bc2906149ca565b601d805460018101825560009190915281906002027f6d4407e7be21f808e6509aa9fa9143369579dd7d760fe20a2c09680fc146134f01610cf88282614c2f565b600b546001600160a01b031633146123c15760405162461bcd60e51b8152600401610bc290614995565b601154610100900460ff16156123e95760405162461bcd60e51b8152600401610bc2906149ca565b60005b81811015610cf857601e83838381811061240857612408614c8a565b905060200281019061241a9190614ca0565b81546001810183556000928352602090922090916002020161243c8282614c2f565b5050808061244990614cd6565b9150506123ec565b600b546001600160a01b0316331461247b5760405162461bcd60e51b8152600401610bc290614995565b601154610100900460ff16156124a35760405162461bcd60e51b8152600401610bc2906149ca565b60005b81811015610cf85760248383838181106124c2576124c2614c8a565b90506020028101906124d49190614ca0565b8154600181018355600092835260209092209091600202016124f68282614c2f565b5050808061250390614cd6565b9150506124a6565b600b546001600160a01b031633146125355760405162461bcd60e51b8152600401610bc290614995565b6001600160a01b03811661259a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610bc2565b6125a381612a7a565b50565b600b546001600160a01b031633146125d05760405162461bcd60e51b8152600401610bc290614995565b601154610100900460ff16156125f85760405162461bcd60e51b8152600401610bc2906149ca565b60005b81811015610cf857602283838381811061261757612617614c8a565b90506020028101906126299190614ca0565b81546001810183556000928352602090922090916002020161264b8282614c2f565b5050808061265890614cd6565b9150506125fb565b600b546001600160a01b0316331461268a5760405162461bcd60e51b8152600401610bc290614995565b601154610100900460ff16156126b25760405162461bcd60e51b8152600401610bc2906149ca565b60005b81811015610cf85760238383838181106126d1576126d1614c8a565b90506020028101906126e39190614ca0565b8154600181018355600092835260209092209091600202016127058282614c2f565b5050808061271290614cd6565b9150506126b5565b60006001600160e01b031982166380ac58cd60e01b148061274b57506001600160e01b03198216635b5e139f60e01b145b80610ab557506301ffc9a760e01b6001600160e01b0319831614610ab5565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061279f8261111b565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166128515760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610bc2565b600061285c8361111b565b9050806001600160a01b0316846001600160a01b031614806128975750836001600160a01b031661288c84610b4d565b6001600160a01b0316145b806128c757506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166128e28261111b565b6001600160a01b03161461294a5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610bc2565b6001600160a01b0382166129ac5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610bc2565b6129b7838383613dfe565b6129c260008261276a565b6001600160a01b03831660009081526003602052604081208054600192906129eb9084906150b6565b90915550506001600160a01b0382166000908152600360205260408120805460019290612a19908490614cf1565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600b80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61156a828260405180602001604052806000815250613eb6565b816001600160a01b0316836001600160a01b03161415612b485760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610bc2565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b612bc08484846128cf565b612bcc84848484613ee9565b611a275760405162461bcd60e51b8152600401610bc2906150cd565b60408051808201909152606080825260208201526000612c31612c0a84613b9a565b6010604051602001612c1d92919061511f565b604051602081830303815290604052613ff6565b90506000612c416103e883615162565b9050610190811115612db157601f8054612c5b9084615162565b81548110612c6b57612c6b614c8a565b9060005260206000209060020201604051806040016040529081600082018054612c9490614960565b80601f0160208091040260200160405190810160405280929190818152602001828054612cc090614960565b8015612d0d5780601f10612ce257610100808354040283529160200191612d0d565b820191906000526020600020905b815481529060010190602001808311612cf057829003601f168201915b50505050508152602001600182018054612d2690614960565b80601f0160208091040260200160405190810160405280929190818152602001828054612d5290614960565b8015612d9f5780601f10612d7457610100808354040283529160200191612d9f565b820191906000526020600020905b815481529060010190602001808311612d8257829003601f168201915b50505050508152505092505050919050565b601f600081548110612c6b57612c6b614c8a565b6040805180820190915260608082526020820152610ab5826040518060400160405280600b81526020016a4261636b67726f756e647360a81b8152506020805480602002602001604051908101604052809291908181526020016000905b82821015612f795783829060005260206000209060020201604051806040016040529081600082018054612e5690614960565b80601f0160208091040260200160405190810160405280929190818152602001828054612e8290614960565b8015612ecf5780601f10612ea457610100808354040283529160200191612ecf565b820191906000526020600020905b815481529060010190602001808311612eb257829003601f168201915b50505050508152602001600182018054612ee890614960565b80601f0160208091040260200160405190810160405280929190818152602001828054612f1490614960565b8015612f615780601f10612f3657610100808354040283529160200191612f61565b820191906000526020600020905b815481529060010190602001808311612f4457829003601f168201915b50505050508152505081526020019060010190612e23565b505050506032614027565b60408051808201909152606080825260208201526000612fb9612fa684613b9a565b6010604051602001612c1d929190615176565b601e805491925090612fcb9083615162565b81548110612fdb57612fdb614c8a565b906000526020600020906002020160405180604001604052908160008201805461300490614960565b80601f016020809104026020016040519081016040528092919081815260200182805461303090614960565b801561307d5780601f106130525761010080835404028352916020019161307d565b820191906000526020600020905b81548152906001019060200180831161306057829003601f168201915b5050505050815260200160018201805461309690614960565b80601f01602080910402602001604051908101604052809291908181526020018280546130c290614960565b801561310f5780601f106130e45761010080835404028352916020019161310f565b820191906000526020600020905b8154815290600101906020018083116130f257829003601f168201915b505050505081525050915050919050565b6040805180820190915260608082526020820152600061315561314284613b9a565b6010604051602001612c1d9291906151a6565b905060006131656103e883615162565b90506103de81111561318e576019604051806040016040529081600082018054612c9490614960565b60228054612c5b9084615162565b604080518082019091526060808252602082015260006131be61314284613b9a565b905060006131ce6103e883615162565b905060648110156131f6576017604051806040016040529081600082018054612c9490614960565b6103de81111561321d576015604051806040016040529081600082018054612c9490614960565b6013604051806040016040529081600082018054612c9490614960565b6040805180820190915260608082526020820152600061325c61314284613b9a565b9050600061326c6103e883615162565b905061019081111561328657601d8054612c5b9084615162565b601d600081548110612c6b57612c6b614c8a565b6040805180820190915260608082526020820152604080518082019091526060808252602082015260006132d061314285613b9a565b905060006132e06103e883615162565b60408051808201825260048152634e6f6e6560e01b6020808301919091529086528151808201909252600082528501529050606481106134c2576134bf85604051806040016040528060058152602001644c6f676f7360d81b8152506021805480602002602001604051908101604052809291908181526020016000905b828210156134b4578382906000526020600020906002020160405180604001604052908160008201805461339190614960565b80601f01602080910402602001604051908101604052809291908181526020018280546133bd90614960565b801561340a5780601f106133df5761010080835404028352916020019161340a565b820191906000526020600020905b8154815290600101906020018083116133ed57829003601f168201915b5050505050815260200160018201805461342390614960565b80601f016020809104026020016040519081016040528092919081815260200182805461344f90614960565b801561349c5780601f106134715761010080835404028352916020019161349c565b820191906000526020600020905b81548152906001019060200180831161347f57829003601f168201915b5050505050815250508152602001906001019061335e565b505050506050614027565b92505b6103de8111156134e15760408051602080820190925260008152908401525b50909392505050565b6040805180820190915260608082526020820152610ab58260405180604001604052806008815260200167437265617475726560c01b8152506024805480602002602001604051908101604052809291908181526020016000905b8282101561369b578382906000526020600020906002020160405180604001604052908160008201805461357890614960565b80601f01602080910402602001604051908101604052809291908181526020018280546135a490614960565b80156135f15780601f106135c6576101008083540402835291602001916135f1565b820191906000526020600020905b8154815290600101906020018083116135d457829003601f168201915b5050505050815260200160018201805461360a90614960565b80601f016020809104026020016040519081016040528092919081815260200182805461363690614960565b80156136835780601f1061365857610100808354040283529160200191613683565b820191906000526020600020905b81548152906001019060200180831161366657829003601f168201915b50505050508152505081526020019060010190613545565b50505050605a614027565b6040805180820190915260608082526020820152610ab5826040518060400160405280600b81526020016a466f726567726f756e647360a81b8152506023805480602002602001604051908101604052809291908181526020016000905b8282101561385a578382906000526020600020906002020160405180604001604052908160008201805461373790614960565b80601f016020809104026020016040519081016040528092919081815260200182805461376390614960565b80156137b05780601f10613785576101008083540402835291602001916137b0565b820191906000526020600020905b81548152906001019060200180831161379357829003601f168201915b505050505081526020016001820180546137c990614960565b80601f01602080910402602001604051908101604052809291908181526020018280546137f590614960565b80156138425780601f1061381757610100808354040283529160200191613842565b820191906000526020600020905b81548152906001019060200180831161382557829003601f168201915b50505050508152505081526020019060010190613704565b505050506046614027565b6060600061387561314284613b9a565b905060006138856103e883615162565b60408051808201909152600781526629b737bbb6b0b760c91b602082015290915060648211156138d4575060408051808201909152600c81526b446f75626c6520426f67657960a01b60208201525b60c88211156138fb5750604080518082019091526005815264426f67657960d81b60208201525b61019082111561392157506040805180820190915260038152622830b960e91b60208201525b6102bc82111561394a575060408051808201909152600681526542697264696560d01b60208201525b61032082111561397257506040805180820190915260058152644561676c6560d81b60208201525b6103848211156139a1575060408051808201909152600c81526b446f75626c65204561676c6560a01b60208201525b6103de8211156128c7575060408051808201909152600381526241636560e81b6020820152949350505050565b606060006139f16139de84613b9a565b6010604051602001612c1d9291906151d4565b90506000613a016103e883615162565b90506060613a1a613a158660026019614138565b613b9a565b90506064821115613a3857613a35613a158660196032614138565b90505b60c8821115613a5457613a51613a15866032604b614138565b90505b610190821115613a7157613a6e613a1586604b6096614138565b90505b610352821115613a8e57613a8b613a1586609660e1614138565b90505b610384821115613aac57613aa9613a158660e1610113614138565b90505b6103de821115613acb57613ac8613a158661011361015e614138565b90505b6103e68211156128c757613ae7613a158661015e6101db614138565b95945050505050565b60606000613b0061314284613b9a565b90506000613b106103e883615162565b90506064811015613b43575050604080518082019091526009815268131bdb99c810985b1b60ba1b602082015292915050565b6103de811115613b73575050604080518082019091526007815266496e20486f6c6560c81b602082015292915050565b505060408051808201909152600881526714dd185b99185c9960c21b602082015292915050565b606081613bbe5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115613be85780613bd281614cd6565b9150613be19050600a83615205565b9150613bc2565b60008167ffffffffffffffff811115613c0357613c036147a0565b6040519080825280601f01601f191660200182016040528015613c2d576020820181803683370190505b5090505b84156128c757613c426001836150b6565b9150613c4f600a86615162565b613c5a906030614cf1565b60f81b818381518110613c6f57613c6f614c8a565b60200101906001600160f81b031916908160001a905350613c91600a86615205565b9450613c31565b805160609080613cb8575050604080516020810190915260008152919050565b60006003613cc7836002614cf1565b613cd19190615205565b613cdc906004614d09565b90506000613ceb826020614cf1565b67ffffffffffffffff811115613d0357613d036147a0565b6040519080825280601f01601f191660200182016040528015613d2d576020820181803683370190505b5090506000604051806060016040528060408152602001615447604091399050600181016020830160005b86811015613db9576003818a01810151603f601282901c8116860151600c83901c8216870151600684901c831688015192909316870151600891821b60ff94851601821b92841692909201901b91160160e01b835260049092019101613d58565b506003860660018114613dd35760028114613de457613df0565b613d3d60f01b600119830152613df0565b603d60f81b6000198301525b505050918152949350505050565b6001600160a01b038316613e5957613e5481600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b613e7c565b816001600160a01b0316836001600160a01b031614613e7c57613e7c838261418d565b6001600160a01b038216613e9357610cf88161422a565b826001600160a01b0316826001600160a01b031614610cf857610cf882826142d9565b613ec0838361431d565b613ecd6000848484613ee9565b610cf85760405162461bcd60e51b8152600401610bc2906150cd565b60006001600160a01b0384163b15613feb57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290613f2d903390899088908890600401615219565b602060405180830381600087803b158015613f4757600080fd5b505af1925050508015613f77575060408051601f3d908101601f19168201909252613f7491810190615256565b60015b613fd1573d808015613fa5576040519150601f19603f3d011682016040523d82523d6000602084013e613faa565b606091505b508051613fc95760405162461bcd60e51b8152600401610bc2906150cd565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506128c7565b506001949350505050565b6000816040516020016140099190615273565b60408051601f19818403018152919052805160209091012092915050565b60408051808201909152606080825260208201526040805180820190915260608082526020820152835161408c5760408051808201825260048152634e6f6e6560e01b60208083019190915290835281518082019092526000825282015290506128c7565b60006140af8661409b89613b9a565b6010604051602001612c1d93929190615285565b9050848551826140bf9190615162565b815181106140cf576140cf614c8a565b6020026020010151915060006064826140e89190615162565b9050848111156140fd578293505050506128c7565b505060408051808201825260048152634e6f6e6560e01b60208083019190915290835281518082019092526000825282015295945050505050565b60008061415a61414786613b9a565b6010604051602001612c1d9291906152b7565b9050600061416885856150b6565b905060006141768284615162565b90506141828682614cf1565b979650505050505050565b6000600161419a84611192565b6141a491906150b6565b6000838152600760205260409020549091508082146141f7576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061423c906001906150b6565b6000838152600960205260408120546008805493945090928490811061426457614264614c8a565b90600052602060002001549050806008838154811061428557614285614c8a565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806142bd576142bd6152ef565b6001900381819060005260206000200160009055905550505050565b60006142e483611192565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166143735760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610bc2565b6000818152600260205260409020546001600160a01b0316156143d85760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610bc2565b6143e460008383613dfe565b6001600160a01b038216600090815260036020526040812080546001929061440d908490614cf1565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461447790614960565b90600052602060002090601f01602090048101928261449957600085556144df565b82601f106144b257805160ff19168380011785556144df565b828001600101855582156144df579182015b828111156144df5782518255916020019190600101906144c4565b506144eb929150614517565b5090565b604051806102e001604052806017905b60608152602001906001900390816144ff5790505090565b5b808211156144eb5760008155600101614518565b6001600160e01b0319811681146125a357600080fd5b60006020828403121561455457600080fd5b813561455f8161452c565b9392505050565b60005b83811015614581578181015183820152602001614569565b83811115611a275750506000910152565b600081518084526145aa816020860160208601614566565b601f01601f19169290920160200192915050565b60208152600061455f6020830184614592565b6000602082840312156145e357600080fd5b5035919050565b80356001600160a01b038116811461460157600080fd5b919050565b6000806040838503121561461957600080fd5b614622836145ea565b946020939093013593505050565b6000604082840312156114d957600080fd5b60006020828403121561465457600080fd5b813567ffffffffffffffff81111561466b57600080fd5b6128c784828501614630565b60008060006060848603121561468c57600080fd5b614695846145ea565b92506146a3602085016145ea565b9150604084013590509250925092565b60008083601f8401126146c557600080fd5b50813567ffffffffffffffff8111156146dd57600080fd5b6020830191508360208260051b85010111156146f857600080fd5b9250929050565b6000806020838503121561471257600080fd5b823567ffffffffffffffff81111561472957600080fd5b614735858286016146b3565b90969095509350505050565b60006020828403121561475357600080fd5b61455f826145ea565b6020808252825182820181905260009190848201906040850190845b8181101561479457835183529284019291840191600101614778565b50909695505050505050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff808411156147d1576147d16147a0565b604051601f8501601f19908116603f011681019082821181831017156147f9576147f96147a0565b8160405280935085815286868601111561481257600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561483e57600080fd5b813567ffffffffffffffff81111561485557600080fd5b8201601f8101841361486657600080fd5b6128c7848235602084016147b6565b6000806040838503121561488857600080fd5b614891836145ea565b9150602083013580151581146148a657600080fd5b809150509250929050565b600080600080608085870312156148c757600080fd5b6148d0856145ea565b93506148de602086016145ea565b925060408501359150606085013567ffffffffffffffff81111561490157600080fd5b8501601f8101871361491257600080fd5b614921878235602084016147b6565b91505092959194509250565b6000806040838503121561494057600080fd5b614949836145ea565b9150614957602084016145ea565b90509250929050565b600181811c9082168061497457607f821691505b602082108114156114d957634e487b7160e01b600052602260045260246000fd5b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526012908201527110dbdb9d1c9858dd081a5cc81b1bd8dad95960721b604082015260600190565b6000808335601e19843603018112614a0d57600080fd5b83018035915067ffffffffffffffff821115614a2857600080fd5b6020019150368190038213156146f857600080fd5b601f821115610cf857600081815260208120601f850160051c81016020861015614a645750805b601f850160051c820191505b81811015614a8357828155600101614a70565b505050505050565b67ffffffffffffffff831115614aa357614aa36147a0565b614ab783614ab18354614960565b83614a3d565b6000601f841160018114614aeb5760008515614ad35750838201355b600019600387901b1c1916600186901b178355614b45565b600083815260209020601f19861690835b82811015614b1c5786850135825560209485019460019092019101614afc565b5086821015614b395760001960f88860031b161c19848701351681555b505060018560011b0183555b5050505050565b614b5682836149f6565b67ffffffffffffffff811115614b6e57614b6e6147a0565b614b8281614b7c8554614960565b85614a3d565b6000601f821160018114614bb65760008315614b9e5750838201355b600019600385901b1c1916600184901b178555614c10565b600085815260209020601f19841690835b82811015614be75786850135825560209485019460019092019101614bc7565b5084821015614c045760001960f88660031b161c19848701351681555b505060018360011b0185555b50505050614c2160208301836149f6565b611a27818360018601614a8b565b61156a8282614b4c565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b60008235603e19833603018112614cb657600080fd5b9190910192915050565b634e487b7160e01b600052601160045260246000fd5b6000600019821415614cea57614cea614cc0565b5060010190565b60008219821115614d0457614d04614cc0565b500190565b6000816000190483118215151615614d2357614d23614cc0565b500290565b600089516020614d3b8285838f01614566565b8a5191840191614d4e8184848f01614566565b8a51920191614d608184848e01614566565b8951920191614d728184848d01614566565b8851920191614d848184848c01614566565b8751920191614d968184848b01614566565b8651920191614da88184848a01614566565b8551920191614dba8184848901614566565b919091019b9a5050505050505050505050565b600088516020614de08285838e01614566565b895191840191614df38184848e01614566565b8951920191614e058184848d01614566565b8851920191614e178184848c01614566565b8751920191614e298184848b01614566565b8651920191614e3b8184848a01614566565b8551920191614e4d8184848901614566565b919091019a9950505050505050505050565b60008a51614e71818460208f01614566565b8a51614e838183860160208f01614566565b8a519184010190614e98818360208e01614566565b8951614eaa8183850160208e01614566565b8951929091010190614ec0818360208c01614566565b8751614ed28183850160208c01614566565b8751929091010190614ee8818360208a01614566565b8551614efa8183850160208a01614566565b8551929091010190614f10818360208801614566565b019b9a5050505050505050505050565b60008154614f2d81614960565b60018281168015614f455760018114614f5657614f85565b60ff19841687528287019450614f85565b8560005260208060002060005b85811015614f7c5781548a820152908401908201614f63565b50505082870194505b5050505092915050565b6e7b226e616d65223a2242616c6c202360881b81528451600090614fba81600f850160208a01614566565b73111610113232b9b1b934b83a34b7b711101d101160611b600f91840191820152614fe86023820187614f20565b90507f222c2022696d61676522203a2022646174613a696d6167652f7376672b786d6c8152670ed8985cd94d8d0b60c21b60208201528451615031816028840160208901614566565b6201116160ed1b60289290910191820152835161505581602b840160208801614566565b607d60f81b602b9290910191820152602c019695505050505050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c0000008152600082516150a981601d850160208701614566565b91909101601d0192915050565b6000828210156150c8576150c8614cc0565b500390565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b62536b7960e81b81526000835161513d816003850160208801614566565b613ae760038285010185614f20565b634e487b7160e01b600052601260045260246000fd5b6000826151715761517161514c565b500690565b6511dc9bdd5b9960d21b815260008351615197816006850160208801614566565b613ae760068285010185614f20565b6310985b1b60e21b8152600083516151c5816004850160208801614566565b613ae760048285010185614f20565b665961726461676560c81b8152600083516151f6816007850160208801614566565b613ae760078285010185614f20565b6000826152145761521461514c565b500490565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061524c90830184614592565b9695505050505050565b60006020828403121561526857600080fd5b815161455f8161452c565b60008251614cb6818460208701614566565b60008451615297818460208901614566565b8451908301906152ab818360208901614566565b61418281830186614f20565b6d59617264616765496e52616e676560901b8152600083516152e081600e850160208801614566565b613ae7600e8285010185614f20565b634e487b7160e01b600052603160045260246000fdfe22207d2c207b202274726169745f7479706522203a202242616c6c222c202276616c756522203a202222207d2c207b202274726169745f7479706522203a202242616c6c20436f6c6f72222c202276616c756522203a20223c7376672077696474683d2235303022206865696768743d22353030222076696577426f783d223020302035303020353030222066696c6c3d226e6f6e652220786d6c6e733d22687474703a2f2f7777772e77332e6f72672f323030302f737667223e22207d2c207b202274726169745f7479706522203a2022536b79222c202276616c756522203a202222207d2c207b202274726169745f7479706522203a2022466f726567726f756e64222c202276616c756522203a202222207d2c207b202274726169745f7479706522203a202242616c6c204272616e64222c202276616c756522203a20224142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2f22207d2c207b202274726169745f7479706522203a20224c616e646564222c202276616c756522203a202222207d2c207b202274726169745f7479706522203a202259617264616765222c202276616c756522203a202222207d2c207b202274726169745f7479706522203a20224372656174757265222c202276616c756522203a202222207d2c207b202274726169745f7479706522203a20224261636b67726f756e64222c202276616c756522203a2022226174747269627574657322203a205b7b202274726169745f7479706522203a202253636f7265222c202276616c756522203a202222207d2c207b202274726169745f7479706522203a202247726f756e64222c202276616c756522203a2022a2646970667358221220890e79e718c479c4157819e84202060ebcd22a0f1e60971542274cf223bb28a464736f6c63430008080033

Deployed Bytecode Sourcemap

67442:20104:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54737:224;;;;;;;;;;-1:-1:-1;54737:224:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;54737:224:0;;;;;;;;42231:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;43790:221::-;;;;;;;;;;-1:-1:-1;43790:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:1;;;1674:51;;1662:2;1647:18;43790:221:0;1528:203:1;43313:411:0;;;;;;;;;;-1:-1:-1;43313:411:0;;;;;:::i;:::-;;:::i;:::-;;73614:108;;;;;;;;;;-1:-1:-1;73697:10:0;:17;73614:108;;;2319:25:1;;;2307:2;2292:18;73614:108:0;2173:177:1;73380:106:0;;;;;;;;;;-1:-1:-1;73462:9:0;:16;73380:106;;55377:113;;;;;;;;;;-1:-1:-1;55465:10:0;:17;55377:113;;67898:99;;;;;;;;;;;;;:::i;74530:152::-;;;;;;;;;;-1:-1:-1;74530:152:0;;;;;:::i;:::-;;:::i;44540:339::-;;;;;;;;;;-1:-1:-1;44540:339:0;;;;;:::i;:::-;;:::i;55045:256::-;;;;;;;;;;-1:-1:-1;55045:256:0;;;;;:::i;:::-;;:::i;68185:33::-;;;;;;;;;;-1:-1:-1;68185:33:0;;;;;;;;68225:34;;;;;;;;;;-1:-1:-1;68225:34:0;;;;;;;;;;;67561:41;;;;;;;;;;;;67598:4;67561:41;;76770:241;;;;;;;;;;-1:-1:-1;76770:241:0;;;;;:::i;:::-;;:::i;44950:185::-;;;;;;;;;;-1:-1:-1;44950:185:0;;;;;:::i;:::-;;:::i;73274:98::-;;;;;;;;;;-1:-1:-1;73352:5:0;:12;73274:98;;55567:233;;;;;;;;;;-1:-1:-1;55567:233:0;;;;;:::i;:::-;;:::i;73042:110::-;;;;;;;;;;-1:-1:-1;73126:11:0;:18;73042:110;;75772:245;;;;;;;;;;-1:-1:-1;75772:245:0;;;;;:::i;:::-;;:::i;73759:140::-;;;;;;;;;;-1:-1:-1;73759:140:0;;;;;:::i;:::-;;:::i;72818:98::-;;;;;;;;;;-1:-1:-1;72896:5:0;:12;72818:98;;41925:239;;;;;;;;;;-1:-1:-1;41925:239:0;;;;;:::i;:::-;;:::i;67609:43::-;;;;;;;;;;;;67651:1;67609:43;;72924:110;;;;;;;;;;-1:-1:-1;73008:11:0;:18;72924:110;;41655:208;;;;;;;;;;-1:-1:-1;41655:208:0;;;;;:::i;:::-;;:::i;62598:103::-;;;;;;;;;;;;;:::i;70613:::-;;;;;;;;;;;;;:::i;67659:47::-;;;;;;;;;;;;67703:3;67659:47;;70063:91;;;;;;;;;;;;;:::i;71410:527::-;;;;;;;;;;-1:-1:-1;71410:527:0;;;;;:::i;:::-;;:::i;67760:43::-;;;;;;;;;;;;;;;;71945:553;;;;;;;;;;-1:-1:-1;71945:553:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;72654:123::-;;;:::i;61947:87::-;;;;;;;;;;-1:-1:-1;62020:6:0;;-1:-1:-1;;;;;62020:6:0;61947:87;;68005:114;;;;;;;;;;-1:-1:-1;68005:114:0;;;;;:::i;:::-;;:::i;70505:100::-;;;;;;;;;;-1:-1:-1;70505:100:0;;;;;:::i;:::-;;:::i;70392:105::-;;;;;;;;;;-1:-1:-1;70392:105:0;;;;;:::i;:::-;;:::i;42400:104::-;;;;;;;;;;;;;:::i;75278:237::-;;;;;;;;;;-1:-1:-1;75278:237:0;;;;;:::i;:::-;;:::i;75040:230::-;;;;;;;;;;-1:-1:-1;75040:230:0;;;;;:::i;:::-;;:::i;70724:678::-;;;;;;:::i;:::-;;:::i;44083:155::-;;;;;;;;;;-1:-1:-1;44083:155:0;;;;;:::i;:::-;;:::i;73160:106::-;;;;;;;;;;-1:-1:-1;73242:9:0;:16;73160:106;;73907:141;;;;;;;;;;-1:-1:-1;73907:141:0;;;;;:::i;:::-;;:::i;45206:328::-;;;;;;;;;;-1:-1:-1;45206:328:0;;;;;:::i;:::-;;:::i;74846:148::-;;;;;;;;;;-1:-1:-1;74846:148:0;;;;;:::i;:::-;;:::i;74370:152::-;;;;;;;;;;-1:-1:-1;74370:152:0;;;;;:::i;:::-;;:::i;77045:3306::-;;;;;;;;;;-1:-1:-1;77045:3306:0;;;;;:::i;:::-;;:::i;73494:112::-;;;;;;;;;;-1:-1:-1;73579:12:0;:19;73494:112;;74056:151;;;;;;;;;;-1:-1:-1;74056:151:0;;;;;:::i;:::-;;:::i;74690:148::-;;;;;;;;;;-1:-1:-1;74690:148:0;;;;;:::i;:::-;;:::i;70285:99::-;;;;;;;;;;;;;:::i;44309:164::-;;;;;;;;;;-1:-1:-1;44309:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;44430:25:0;;;44406:4;44430:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;44309:164;74215:147;;;;;;;;;;-1:-1:-1;74215:147:0;;;;;:::i;:::-;;:::i;75523:241::-;;;;;;;;;;-1:-1:-1;75523:241:0;;;;;:::i;:::-;;:::i;76521:::-;;;;;;;;;;-1:-1:-1;76521:241:0;;;;;:::i;:::-;;:::i;62856:201::-;;;;;;;;;;-1:-1:-1;62856:201:0;;;;;:::i;:::-;;:::i;76025:235::-;;;;;;;;;;-1:-1:-1;76025:235:0;;;;;:::i;:::-;;:::i;76268:245::-;;;;;;;;;;-1:-1:-1;76268:245:0;;;;;:::i;:::-;;:::i;54737:224::-;54839:4;-1:-1:-1;;;;;;54863:50:0;;-1:-1:-1;;;54863:50:0;;:90;;;54917:36;54941:11;54917:23;:36::i;:::-;54856:97;54737:224;-1:-1:-1;;54737:224:0:o;42231:100::-;42285:13;42318:5;42311:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42231:100;:::o;43790:221::-;43866:7;47133:16;;;:7;:16;;;;;;-1:-1:-1;;;;;47133:16:0;43886:73;;;;-1:-1:-1;;;43886:73:0;;8917:2:1;43886:73:0;;;8899:21:1;8956:2;8936:18;;;8929:30;8995:34;8975:18;;;8968:62;-1:-1:-1;;;9046:18:1;;;9039:42;9098:19;;43886:73:0;;;;;;;;;-1:-1:-1;43979:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;43979:24:0;;43790:221::o;43313:411::-;43394:13;43410:23;43425:7;43410:14;:23::i;:::-;43394:39;;43458:5;-1:-1:-1;;;;;43452:11:0;:2;-1:-1:-1;;;;;43452:11:0;;;43444:57;;;;-1:-1:-1;;;43444:57:0;;9330:2:1;43444:57:0;;;9312:21:1;9369:2;9349:18;;;9342:30;9408:34;9388:18;;;9381:62;-1:-1:-1;;;9459:18:1;;;9452:31;9500:19;;43444:57:0;9128:397:1;43444:57:0;27668:10;-1:-1:-1;;;;;43536:21:0;;;;:62;;-1:-1:-1;43561:37:0;43578:5;27668:10;44309:164;:::i;43561:37::-;43514:168;;;;-1:-1:-1;;;43514:168:0;;9732:2:1;43514:168:0;;;9714:21:1;9771:2;9751:18;;;9744:30;9810:34;9790:18;;;9783:62;9881:26;9861:18;;;9854:54;9925:19;;43514:168:0;9530:420:1;43514:168:0;43695:21;43704:2;43708:7;43695:8;:21::i;:::-;43383:341;43313:411;;:::o;67898:99::-;67945:13;67978:11;67971:18;;;;;:::i;74530:152::-;62020:6;;-1:-1:-1;;;;;62020:6:0;27668:10;62167:23;62159:68;;;;-1:-1:-1;;;62159:68:0;;;;;;;:::i;:::-;69045:14:::1;::::0;::::1;::::0;::::1;;;69044:15;69036:46;;;;-1:-1:-1::0;;;69036:46:0::1;;;;;;;:::i;:::-;74647:11:::2;:27:::0;;::::2;::::0;::::2;::::0;;-1:-1:-1;74647:27:0;;;;74664:9;;74647:27:::2;;::::0;::::2;;74664:9:::0;74647:27;::::2;:::i;44540:339::-:0;44735:41;27668:10;44768:7;44735:18;:41::i;:::-;44727:103;;;;-1:-1:-1;;;44727:103:0;;;;;;;:::i;:::-;44843:28;44853:4;44859:2;44863:7;44843:9;:28::i;55045:256::-;55142:7;55178:23;55195:5;55178:16;:23::i;:::-;55170:5;:31;55162:87;;;;-1:-1:-1;;;55162:87:0;;15743:2:1;55162:87:0;;;15725:21:1;15782:2;15762:18;;;15755:30;15821:34;15801:18;;;15794:62;-1:-1:-1;;;15872:18:1;;;15865:41;15923:19;;55162:87:0;15541:407:1;55162:87:0;-1:-1:-1;;;;;;55267:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;55045:256::o;76770:241::-;62020:6;;-1:-1:-1;;;;;62020:6:0;27668:10;62167:23;62159:68;;;;-1:-1:-1;;;62159:68:0;;;;;;;:::i;:::-;69045:14:::1;::::0;::::1;::::0;::::1;;;69044:15;69036:46;;;;-1:-1:-1::0;;;69036:46:0::1;;;;;;;:::i;:::-;76903:9:::2;76898:106;76918:22:::0;;::::2;76898:106;;;76962:9;76977:11;;76989:1;76977:14;;;;;;;:::i;:::-;;;;;;;;;;;;:::i;:::-;76962:30:::0;;::::2;::::0;::::2;::::0;;-1:-1:-1;76962:30:0;;;::::2;::::0;;;;;::::2;;;;::::0;;::::2;:::i;:::-;;;76942:3;;;;;:::i;:::-;;;;76898:106;;44950:185:::0;45088:39;45105:4;45111:2;45115:7;45088:39;;;;;;;;;;;;:16;:39::i;55567:233::-;55642:7;55678:30;55465:10;:17;;55377:113;55678:30;55670:5;:38;55662:95;;;;-1:-1:-1;;;55662:95:0;;16894:2:1;55662:95:0;;;16876:21:1;16933:2;16913:18;;;16906:30;16972:34;16952:18;;;16945:62;-1:-1:-1;;;17023:18:1;;;17016:42;17075:19;;55662:95:0;16692:408:1;55662:95:0;55775:10;55786:5;55775:17;;;;;;;;:::i;:::-;;;;;;;;;55768:24;;55567:233;;;:::o;75772:245::-;62020:6;;-1:-1:-1;;;;;62020:6:0;27668:10;62167:23;62159:68;;;;-1:-1:-1;;;62159:68:0;;;;;;;:::i;:::-;69045:14:::1;::::0;::::1;::::0;::::1;;;69044:15;69036:46;;;;-1:-1:-1::0;;;69036:46:0::1;;;;;;;:::i;:::-;75907:9:::2;75902:108;75922:22:::0;;::::2;75902:108;;;75966:11;75983;;75995:1;75983:14;;;;;;;:::i;:::-;;;;;;;;;;;;:::i;:::-;75966:32:::0;;::::2;::::0;::::2;::::0;;-1:-1:-1;75966:32:0;;;::::2;::::0;;;;;::::2;;;;::::0;;::::2;:::i;:::-;;;75946:3;;;;;:::i;:::-;;;;75902:108;;73759:140:::0;62020:6;;-1:-1:-1;;;;;62020:6:0;27668:10;62167:23;62159:68;;;;-1:-1:-1;;;62159:68:0;;;;;;;:::i;:::-;69045:14:::1;::::0;::::1;::::0;::::1;;;69044:15;69036:46;;;;-1:-1:-1::0;;;69036:46:0::1;;;;;;;:::i;:::-;73870:5:::2;:21:::0;;::::2;::::0;::::2;::::0;;-1:-1:-1;73870:21:0;;;;73881:9;;73870:21:::2;;::::0;::::2;;73881:9:::0;73870:21;::::2;:::i;41925:239::-:0;41997:7;42033:16;;;:7;:16;;;;;;-1:-1:-1;;;;;42033:16:0;42068:19;42060:73;;;;-1:-1:-1;;;42060:73:0;;17307:2:1;42060:73:0;;;17289:21:1;17346:2;17326:18;;;17319:30;17385:34;17365:18;;;17358:62;-1:-1:-1;;;17436:18:1;;;17429:39;17485:19;;42060:73:0;17105:405:1;41655:208:0;41727:7;-1:-1:-1;;;;;41755:19:0;;41747:74;;;;-1:-1:-1;;;41747:74:0;;17717:2:1;41747:74:0;;;17699:21:1;17756:2;17736:18;;;17729:30;17795:34;17775:18;;;17768:62;-1:-1:-1;;;17846:18:1;;;17839:40;17896:19;;41747:74:0;17515:406:1;41747:74:0;-1:-1:-1;;;;;;41839:16:0;;;;;:9;:16;;;;;;;41655:208::o;62598:103::-;62020:6;;-1:-1:-1;;;;;62020:6:0;27668:10;62167:23;62159:68;;;;-1:-1:-1;;;62159:68:0;;;;;;;:::i;:::-;62663:30:::1;62690:1;62663:18;:30::i;:::-;62598:103::o:0;70613:::-;62020:6;;-1:-1:-1;;;;;62020:6:0;27668:10;62167:23;62159:68;;;;-1:-1:-1;;;62159:68:0;;;;;;;:::i;:::-;70665:14:::1;:21:::0;;-1:-1:-1;;70665:21:0::1;;;::::0;;70613:103::o;70063:91::-;62020:6;;-1:-1:-1;;;;;62020:6:0;27668:10;62167:23;62159:68;;;;-1:-1:-1;;;62159:68:0;;;;;;;:::i;:::-;70133:13:::1;::::0;;-1:-1:-1;;70116:30:0;::::1;70133:13;::::0;;::::1;70132:14;70116:30;::::0;;70063:91::o;71410:527::-;62020:6;;-1:-1:-1;;;;;62020:6:0;27668:10;62167:23;62159:68;;;;-1:-1:-1;;;62159:68:0;;;;;;;:::i;:::-;71481:14:::1;71498:13;55465:10:::0;:17;;55377:113;71498:13:::1;71481:30:::0;-1:-1:-1;67598:4:0::1;71530:23;71539:14:::0;71481:30;71530:23:::1;:::i;:::-;:37;;71522:81;;;::::0;-1:-1:-1;;;71522:81:0;;18261:2:1;71522:81:0::1;::::0;::::1;18243:21:1::0;18300:2;18280:18;;;18273:30;18339:33;18319:18;;;18312:61;18390:18;;71522:81:0::1;18059:355:1::0;71522:81:0::1;67703:3;71639:14;71622;;:31;;;;:::i;:::-;:52;;71614:105;;;::::0;-1:-1:-1;;;71614:105:0;;18621:2:1;71614:105:0::1;::::0;::::1;18603:21:1::0;18660:2;18640:18;;;18633:30;18699:34;18679:18;;;18672:62;-1:-1:-1;;;18750:18:1;;;18743:38;18798:19;;71614:105:0::1;18419:404:1::0;71614:105:0::1;71737:9;71732:155;71756:14;71752:1;:18;71732:155;;;71792:37;71802:10;71814;71823:1:::0;71814:6;:10:::1;:::i;:::-;:14;::::0;71827:1:::1;71814:14;:::i;:::-;71792:9;:37::i;:::-;71772:3:::0;::::1;::::0;::::1;:::i;:::-;;;;71732:155;;;;71915:14;71897;;:32;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;;;71410:527:0:o;71945:553::-;72011:16;72041:18;72062:21;72072:10;72062:9;:21::i;:::-;72041:42;-1:-1:-1;72098:15:0;72094:397;;72175:16;;;72189:1;72175:16;;;;;;;;;;;-1:-1:-1;72168:23:0;71945:553;-1:-1:-1;;;71945:553:0:o;72094:397::-;72224:23;72264:10;72250:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;72250:25:0;;72224:51;;72290:13;72318:134;72342:10;72334:5;:18;72318:134;;;72398:38;72418:10;72430:5;72398:19;:38::i;:::-;72382:6;72389:5;72382:13;;;;;;;;:::i;:::-;;;;;;;;;;:54;72354:7;;;;:::i;:::-;;;;72318:134;;72094:397;72030:468;71945:553;;;:::o;72654:123::-;62020:6;;-1:-1:-1;;;;;62020:6:0;27668:10;62167:23;62159:68;;;;-1:-1:-1;;;62159:68:0;;;;;;;:::i;:::-;72721:47:::1;::::0;72729:10:::1;::::0;72746:21:::1;72721:47:::0;::::1;;;::::0;::::1;::::0;;;72746:21;72729:10;72721:47;::::1;;;;;;72713:56;;;::::0;::::1;68005:114:::0;62020:6;;-1:-1:-1;;;;;62020:6:0;27668:10;62167:23;62159:68;;;;-1:-1:-1;;;62159:68:0;;;;;;;:::i;:::-;68086:25;;::::1;::::0;:11:::1;::::0;:25:::1;::::0;::::1;::::0;::::1;:::i;:::-;;68005:114:::0;:::o;70505:100::-;62020:6;;-1:-1:-1;;;;;62020:6:0;27668:10;62167:23;62159:68;;;;-1:-1:-1;;;62159:68:0;;;;;;;:::i;:::-;70571:15:::1;:26:::0;70505:100::o;70392:105::-;62020:6;;-1:-1:-1;;;;;62020:6:0;27668:10;62167:23;62159:68;;;;-1:-1:-1;;;62159:68:0;;;;;;;:::i;:::-;70468:21;;::::1;::::0;:12:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;42400:104::-:0;42456:13;42489:7;42482:14;;;;;:::i;75278:237::-;62020:6;;-1:-1:-1;;;;;62020:6:0;27668:10;62167:23;62159:68;;;;-1:-1:-1;;;62159:68:0;;;;;;;:::i;:::-;69045:14:::1;::::0;::::1;::::0;::::1;;;69044:15;69036:46;;;;-1:-1:-1::0;;;69036:46:0::1;;;;;;;:::i;:::-;75406:9:::2;75401:107;75421:22:::0;;::::2;75401:107;;;75465:10;75481:11;;75493:1;75481:14;;;;;;;:::i;:::-;;;;;;;;;;;;:::i;:::-;75465:31:::0;;::::2;::::0;::::2;::::0;;-1:-1:-1;75465:31:0;;;::::2;::::0;;;;;::::2;;;;::::0;;::::2;:::i;:::-;;;75445:3;;;;;:::i;:::-;;;;75401:107;;75040:230:::0;62020:6;;-1:-1:-1;;;;;62020:6:0;27668:10;62167:23;62159:68;;;;-1:-1:-1;;;62159:68:0;;;;;;;:::i;:::-;69045:14:::1;::::0;::::1;::::0;::::1;;;69044:15;69036:46;;;;-1:-1:-1::0;;;69036:46:0::1;;;;;;;:::i;:::-;75166:9:::2;75161:102;75181:22:::0;;::::2;75161:102;;;75225:5;75236:11;;75248:1;75236:14;;;;;;;:::i;:::-;;;;;;;;;;;;:::i;:::-;75225:26:::0;;::::2;::::0;::::2;::::0;;-1:-1:-1;75225:26:0;;;::::2;::::0;;;;;::::2;;;;::::0;;::::2;:::i;:::-;;;75205:3;;;;;:::i;:::-;;;;75161:102;;70724:678:::0;70785:10;70798:13;55465:10;:17;;55377:113;70798:13;70830;;70785:26;;-1:-1:-1;70830:13:0;;70822:61;;;;-1:-1:-1;;;70822:61:0;;19619:2:1;70822:61:0;;;19601:21:1;19658:2;19638:18;;;19631:30;19697:34;19677:18;;;19670:62;-1:-1:-1;;;19748:18:1;;;19741:33;19791:19;;70822:61:0;19417:399:1;70822:61:0;67651:1;70902:14;:33;;70894:74;;;;-1:-1:-1;;;70894:74:0;;20023:2:1;70894:74:0;;;20005:21:1;20062:2;20042:18;;;20035:30;20101;20081:18;;;20074:58;20149:18;;70894:74:0;19821:352:1;70894:74:0;71004:1;70987:14;:18;70979:61;;;;-1:-1:-1;;;70979:61:0;;20380:2:1;70979:61:0;;;20362:21:1;20419:2;20399:18;;;20392:30;20458:32;20438:18;;;20431:60;20508:18;;70979:61:0;20178:354:1;70979:61:0;67598:4;71059:19;71064:14;71059:2;:19;:::i;:::-;:33;;71051:79;;;;-1:-1:-1;;;71051:79:0;;20739:2:1;71051:79:0;;;20721:21:1;20778:2;20758:18;;;20751:30;20817:34;20797:18;;;20790:62;-1:-1:-1;;;20868:18:1;;;20861:31;20909:19;;71051:79:0;20537:397:1;71051:79:0;71185:9;71167:14;71149:15;;:32;;;;:::i;:::-;:45;;71141:90;;;;-1:-1:-1;;;71141:90:0;;21314:2:1;71141:90:0;;;21296:21:1;;;21333:18;;;21326:30;21392:34;21372:18;;;21365:62;21444:18;;71141:90:0;21112:356:1;71141:90:0;71249:9;71244:151;71268:14;71264:1;:18;71244:151;;;71304:33;71314:10;71326:6;71331:1;71326:2;:6;:::i;71304:33::-;71284:3;;;;:::i;:::-;;;;71244:151;;44083:155;44178:52;27668:10;44211:8;44221;44178:18;:52::i;73907:141::-;62020:6;;-1:-1:-1;;;;;62020:6:0;27668:10;62167:23;62159:68;;;;-1:-1:-1;;;62159:68:0;;;;;;;:::i;:::-;69045:14:::1;::::0;::::1;::::0;::::1;;;69044:15;69036:46;;;;-1:-1:-1::0;;;69036:46:0::1;;;;;;;:::i;:::-;74019:5:::2;:21:::0;;::::2;::::0;::::2;::::0;;-1:-1:-1;74019:21:0;;;;74030:9;;74019:21:::2;;::::0;::::2;;74030:9:::0;74019:21;::::2;:::i;45206:328::-:0;45381:41;27668:10;45414:7;45381:18;:41::i;:::-;45373:103;;;;-1:-1:-1;;;45373:103:0;;;;;;;:::i;:::-;45487:39;45501:4;45507:2;45511:7;45520:5;45487:13;:39::i;:::-;45206:328;;;;:::o;74846:148::-;62020:6;;-1:-1:-1;;;;;62020:6:0;27668:10;62167:23;62159:68;;;;-1:-1:-1;;;62159:68:0;;;;;;;:::i;:::-;69045:14:::1;::::0;::::1;::::0;::::1;;;69044:15;69036:46;;;;-1:-1:-1::0;;;69036:46:0::1;;;;;;;:::i;:::-;74961:9:::2;:25:::0;;::::2;::::0;::::2;::::0;;-1:-1:-1;74961:25:0;;;;74976:9;;74961:25:::2;;::::0;::::2;;74976:9:::0;74961:25;::::2;:::i;74370:152::-:0;62020:6;;-1:-1:-1;;;;;62020:6:0;27668:10;62167:23;62159:68;;;;-1:-1:-1;;;62159:68:0;;;;;;;:::i;:::-;69045:14:::1;::::0;::::1;::::0;::::1;;;69044:15;69036:46;;;;-1:-1:-1::0;;;69036:46:0::1;;;;;;;:::i;:::-;74487:11:::2;:27:::0;;::::2;::::0;::::2;::::0;;-1:-1:-1;74487:27:0;;;;74504:9;;74487:27:::2;;::::0;::::2;;74504:9:::0;74487:27;::::2;:::i;77045:3306::-:0;77112:13;77157;55465:10;:17;;55377:113;77157:13;77146:7;:24;;77138:56;;;;-1:-1:-1;;;77138:56:0;;21675:2:1;77138:56:0;;;21657:21:1;21714:2;21694:18;;;21687:30;-1:-1:-1;;;21733:18:1;;;21726:49;21792:18;;77138:56:0;21473:343:1;77138:56:0;77223:1;77213:7;:11;77205:43;;;;-1:-1:-1;;;77205:43:0;;21675:2:1;77205:43:0;;;21657:21:1;21714:2;21694:18;;;21687:30;-1:-1:-1;;;21733:18:1;;;21726:49;21792:18;;77205:43:0;21473:343:1;77205:43:0;77259:20;77290:24;77327:23;;:::i;:::-;77361:113;;;;;;;;;;;;;;;;;;;77497:15;77504:7;77497:6;:15::i;:::-;:23;;;77485:5;77491:1;77485:8;;;:35;77543:22;77557:7;77543:13;:22::i;:::-;:30;;;77531:8;;;:42;77596:14;77584:26;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:5;77590:1;77584:8;;;;;;;:::i;:::-;;;;:26;77633:18;77643:7;77633:9;:18::i;:::-;:24;;;;;77621:8;;;:36;77668:17;;;;;;;;;;;;-1:-1:-1;;;77668:17:0;;;;;;;:8;;;:17;77708:16;77716:7;77708;:16::i;:::-;:24;;;77696:8;;;:36;77755:16;77763:7;77755;:16::i;:::-;:24;;;77743:8;;;:36;77802:21;77815:7;77802:12;:21::i;:::-;:27;;;;;77790:8;;;:39;77840:17;;;;;;;;;;;;-1:-1:-1;;;77840:17:0;;;;;;;:8;;;:17;77880:16;77888:7;77880;:16::i;:::-;:24;;;77868:9;;;:36;77927:20;77939:7;77927:11;:20::i;:::-;:28;;;77915:9;;;:40;77978:22;77992:7;77978:13;:22::i;:::-;:30;;;;;77966:9;;;:42;78019:20;;;;;;;;;;;-1:-1:-1;;;78019:20:0;;;;:9;;;:20;78085:8;;78095;;;;78105;;;;78115;;;;78125;;;;78135;;;;78145;;;;78155;;;;78068:96;;;;78085:8;;78095;;78105;;78115;;78125;;78135;;78145;;78155;78068:96;;:::i;:::-;;;;;;;-1:-1:-1;;78068:96:0;;;;;;;78217:8;;;;78227;;;;78237:9;;;;78248;;;;78259;;;;78270;;;;78068:96;;-1:-1:-1;78192:88:0;;78068:96;;78270:9;78217:8;78192:88;;:::i;:::-;;;;-1:-1:-1;;78192:88:0;;;;;;78294:66;;;;;;;;;;78192:88;;-1:-1:-1;78294:66:0;78192:88;78294:66;;;;;78382:17;78391:7;78382:8;:17::i;:::-;78371:5;78377:1;78371:8;;;:28;;;;78410:57;;;;;;;;;;;;;;;;;:8;;;:57;78489:19;78500:7;78489:10;:19::i;:::-;78478:8;;;;:30;;;;78519:53;;;;;;;;;;;;;78478:8;78519:53;;;:8;;;:53;78594:15;78601:7;78594:6;:15::i;:::-;:20;78583:8;;;:31;78625:60;;;;;;;;;;;;;;78583:8;78625:60;;;:8;;;:60;78707:22;78721:7;78707:13;:22::i;:::-;:27;78696:8;;;:38;78745:56;;;;;;;;;;;;;;78696:8;78745:56;;;:8;;;:56;78823:18;78833:7;78823:9;:18::i;:::-;:23;78812:8;;;:34;78857:55;;;;;;;;;;;;;;78812:8;78857:55;;;:9;;;:55;78935:25;78952:7;78935:16;:25::i;:::-;78923:9;;;:37;78971:61;;;;;;;;;;;;;;78923:9;78971:61;;;:9;;;:61;79055:21;79068:7;79055:12;:21::i;:::-;:26;79043:9;;;:38;79092:61;;;;;;;;;;;;;;79043:9;79092:61;;;:9;;;:61;79176:16;79184:7;79176;:16::i;:::-;:21;79164:9;;;:33;79208:59;;;;;;;;;;;;;;79164:9;79208:59;;;:9;;;:59;79290:20;79302:7;79290:11;:20::i;:::-;:25;79278:9;;;:37;79326:61;;;;;;;;;;;;;;79278:9;79326:61;;;:9;;;:61;79410:22;79424:7;79410:13;:22::i;:::-;:27;79398:9;;;:39;79448:57;;;;;;;;;;;;;;79398:9;79448:57;;;:9;;;:57;79528:16;79536:7;79528;:16::i;:::-;:21;79516:9;;;:33;79560:18;;;;;;;;;;;;-1:-1:-1;;;79516:9:0;79560:18;;;79516:5;79566:2;79560:9;;;;;;;;:18;;;;79628:8;;79638;;;;79648;;;;;79658;;;;79668;;;;79678;;;;79688;;;;79698;;;;79708;;;;79611:106;;;;79648:8;;79658;;79668;;79678;;79688;;79698;;79611:106;;:::i;:::-;;;;;;;-1:-1:-1;;79611:106:0;;;;;;;79778:8;;;;79788:9;;;;79799;;;;79810;;;;79821;;;;79832;;;;79611:106;;-1:-1:-1;79749:93:0;;79611:106;;79832:9;79778:8;79749:93;;:::i;:::-;;;;;;;-1:-1:-1;;79749:93:0;;;;;;;79903:9;;;;79914;;;;79925;;;;79936;;;;79947;;;;79958;;;;79969;;;;79980;;;;79749:93;;-1:-1:-1;79874:116:0;;79749:93;;79980:9;79903;79874:116;;:::i;:::-;;;;;;;;;;;;;79854:137;;80013:219;80076:17;80085:7;80076:8;:17::i;:::-;80119:11;80176:28;80196:6;80176:13;:28::i;:::-;80213:10;80040:189;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;80013:13;:219::i;:::-;80004:228;;80309:6;80259:57;;;;;;;;:::i;:::-;;;;-1:-1:-1;;80259:57:0;;;;;;;;;;77045:3306;-1:-1:-1;;;;;77045:3306:0:o;74056:151::-;62020:6;;-1:-1:-1;;;;;62020:6:0;27668:10;62167:23;62159:68;;;;-1:-1:-1;;;62159:68:0;;;;;;;:::i;:::-;69045:14:::1;::::0;::::1;::::0;::::1;;;69044:15;69036:46;;;;-1:-1:-1::0;;;69036:46:0::1;;;;;;;:::i;:::-;74171:12:::2;:28:::0;;::::2;::::0;::::2;::::0;;-1:-1:-1;74171:28:0;;;;74189:9;;74171:28:::2;;::::0;::::2;;74189:9:::0;74171:28;::::2;:::i;74690:148::-:0;62020:6;;-1:-1:-1;;;;;62020:6:0;27668:10;62167:23;62159:68;;;;-1:-1:-1;;;62159:68:0;;;;;;;:::i;:::-;69045:14:::1;::::0;::::1;::::0;::::1;;;69044:15;69036:46;;;;-1:-1:-1::0;;;69036:46:0::1;;;;;;;:::i;:::-;74805:9:::2;:25:::0;;::::2;::::0;::::2;::::0;;-1:-1:-1;74805:25:0;;;;74820:9;;74805:25:::2;;::::0;::::2;;74820:9:::0;74805:25;::::2;:::i;70285:99::-:0;70330:13;70364:12;70357:19;;;;;:::i;74215:147::-;62020:6;;-1:-1:-1;;;;;62020:6:0;27668:10;62167:23;62159:68;;;;-1:-1:-1;;;62159:68:0;;;;;;;:::i;:::-;69045:14:::1;::::0;::::1;::::0;::::1;;;69044:15;69036:46;;;;-1:-1:-1::0;;;69036:46:0::1;;;;;;;:::i;:::-;74328:10:::2;:26:::0;;::::2;::::0;::::2;::::0;;-1:-1:-1;74328:26:0;;;;74344:9;;74328:26:::2;;::::0;::::2;;74344:9:::0;74328:26;::::2;:::i;75523:241::-:0;62020:6;;-1:-1:-1;;;;;62020:6:0;27668:10;62167:23;62159:68;;;;-1:-1:-1;;;62159:68:0;;;;;;;:::i;:::-;69045:14:::1;::::0;::::1;::::0;::::1;;;69044:15;69036:46;;;;-1:-1:-1::0;;;69036:46:0::1;;;;;;;:::i;:::-;75653:9:::2;75648:109;75668:22:::0;;::::2;75648:109;;;75712:12;75730:11;;75742:1;75730:14;;;;;;;:::i;:::-;;;;;;;;;;;;:::i;:::-;75712:33:::0;;::::2;::::0;::::2;::::0;;-1:-1:-1;75712:33:0;;;::::2;::::0;;;;;::::2;;;;::::0;;::::2;:::i;:::-;;;75692:3;;;;;:::i;:::-;;;;75648:109;;76521:241:::0;62020:6;;-1:-1:-1;;;;;62020:6:0;27668:10;62167:23;62159:68;;;;-1:-1:-1;;;62159:68:0;;;;;;;:::i;:::-;69045:14:::1;::::0;::::1;::::0;::::1;;;69044:15;69036:46;;;;-1:-1:-1::0;;;69036:46:0::1;;;;;;;:::i;:::-;76654:9:::2;76649:106;76669:22:::0;;::::2;76649:106;;;76713:9;76728:11;;76740:1;76728:14;;;;;;;:::i;:::-;;;;;;;;;;;;:::i;:::-;76713:30:::0;;::::2;::::0;::::2;::::0;;-1:-1:-1;76713:30:0;;;::::2;::::0;;;;;::::2;;;;::::0;;::::2;:::i;:::-;;;76693:3;;;;;:::i;:::-;;;;76649:106;;62856:201:::0;62020:6;;-1:-1:-1;;;;;62020:6:0;27668:10;62167:23;62159:68;;;;-1:-1:-1;;;62159:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;62945:22:0;::::1;62937:73;;;::::0;-1:-1:-1;;;62937:73:0;;29721:2:1;62937:73:0::1;::::0;::::1;29703:21:1::0;29760:2;29740:18;;;29733:30;29799:34;29779:18;;;29772:62;-1:-1:-1;;;29850:18:1;;;29843:36;29896:19;;62937:73:0::1;29519:402:1::0;62937:73:0::1;63021:28;63040:8;63021:18;:28::i;:::-;62856:201:::0;:::o;76025:235::-;62020:6;;-1:-1:-1;;;;;62020:6:0;27668:10;62167:23;62159:68;;;;-1:-1:-1;;;62159:68:0;;;;;;;:::i;:::-;69045:14:::1;::::0;::::1;::::0;::::1;;;69044:15;69036:46;;;;-1:-1:-1::0;;;69036:46:0::1;;;;;;;:::i;:::-;76156:9:::2;76151:102;76171:22:::0;;::::2;76151:102;;;76215:5;76226:11;;76238:1;76226:14;;;;;;;:::i;:::-;;;;;;;;;;;;:::i;:::-;76215:26:::0;;::::2;::::0;::::2;::::0;;-1:-1:-1;76215:26:0;;;::::2;::::0;;;;;::::2;;;;::::0;;::::2;:::i;:::-;;;76195:3;;;;;:::i;:::-;;;;76151:102;;76268:245:::0;62020:6;;-1:-1:-1;;;;;62020:6:0;27668:10;62167:23;62159:68;;;;-1:-1:-1;;;62159:68:0;;;;;;;:::i;:::-;69045:14:::1;::::0;::::1;::::0;::::1;;;69044:15;69036:46;;;;-1:-1:-1::0;;;69036:46:0::1;;;;;;;:::i;:::-;76403:9:::2;76398:108;76418:22:::0;;::::2;76398:108;;;76462:11;76479;;76491:1;76479:14;;;;;;;:::i;:::-;;;;;;;;;;;;:::i;:::-;76462:32:::0;;::::2;::::0;::::2;::::0;;-1:-1:-1;76462:32:0;;;::::2;::::0;;;;;::::2;;;;::::0;;::::2;:::i;:::-;;;76442:3;;;;;:::i;:::-;;;;76398:108;;41286:305:::0;41388:4;-1:-1:-1;;;;;;41425:40:0;;-1:-1:-1;;;41425:40:0;;:105;;-1:-1:-1;;;;;;;41482:48:0;;-1:-1:-1;;;41482:48:0;41425:105;:158;;;-1:-1:-1;;;;;;;;;;18641:40:0;;;41547:36;18532:157;51026:174;51101:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;51101:29:0;-1:-1:-1;;;;;51101:29:0;;;;;;;;:24;;51155:23;51101:24;51155:14;:23::i;:::-;-1:-1:-1;;;;;51146:46:0;;;;;;;;;;;51026:174;;:::o;47338:348::-;47431:4;47133:16;;;:7;:16;;;;;;-1:-1:-1;;;;;47133:16:0;47448:73;;;;-1:-1:-1;;;47448:73:0;;30128:2:1;47448:73:0;;;30110:21:1;30167:2;30147:18;;;30140:30;30206:34;30186:18;;;30179:62;-1:-1:-1;;;30257:18:1;;;30250:42;30309:19;;47448:73:0;29926:408:1;47448:73:0;47532:13;47548:23;47563:7;47548:14;:23::i;:::-;47532:39;;47601:5;-1:-1:-1;;;;;47590:16:0;:7;-1:-1:-1;;;;;47590:16:0;;:51;;;;47634:7;-1:-1:-1;;;;;47610:31:0;:20;47622:7;47610:11;:20::i;:::-;-1:-1:-1;;;;;47610:31:0;;47590:51;:87;;;-1:-1:-1;;;;;;44430:25:0;;;44406:4;44430:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;47645:32;47582:96;47338:348;-1:-1:-1;;;;47338:348:0:o;50330:578::-;50489:4;-1:-1:-1;;;;;50462:31:0;:23;50477:7;50462:14;:23::i;:::-;-1:-1:-1;;;;;50462:31:0;;50454:85;;;;-1:-1:-1;;;50454:85:0;;30541:2:1;50454:85:0;;;30523:21:1;30580:2;30560:18;;;30553:30;30619:34;30599:18;;;30592:62;-1:-1:-1;;;30670:18:1;;;30663:39;30719:19;;50454:85:0;30339:405:1;50454:85:0;-1:-1:-1;;;;;50558:16:0;;50550:65;;;;-1:-1:-1;;;50550:65:0;;30951:2:1;50550:65:0;;;30933:21:1;30990:2;30970:18;;;30963:30;31029:34;31009:18;;;31002:62;-1:-1:-1;;;31080:18:1;;;31073:34;31124:19;;50550:65:0;30749:400:1;50550:65:0;50628:39;50649:4;50655:2;50659:7;50628:20;:39::i;:::-;50732:29;50749:1;50753:7;50732:8;:29::i;:::-;-1:-1:-1;;;;;50774:15:0;;;;;;:9;:15;;;;;:20;;50793:1;;50774:15;:20;;50793:1;;50774:20;:::i;:::-;;;;-1:-1:-1;;;;;;;50805:13:0;;;;;;:9;:13;;;;;:18;;50822:1;;50805:13;:18;;50822:1;;50805:18;:::i;:::-;;;;-1:-1:-1;;50834:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;50834:21:0;-1:-1:-1;;;;;50834:21:0;;;;;;;;;50873:27;;50834:16;;50873:27;;;;;;;50330:578;;;:::o;63217:191::-;63310:6;;;-1:-1:-1;;;;;63327:17:0;;;-1:-1:-1;;;;;;63327:17:0;;;;;;;63360:40;;63310:6;;;63327:17;63310:6;;63360:40;;63291:16;;63360:40;63280:128;63217:191;:::o;48028:110::-;48104:26;48114:2;48118:7;48104:26;;;;;;;;;;;;:9;:26::i;51342:315::-;51497:8;-1:-1:-1;;;;;51488:17:0;:5;-1:-1:-1;;;;;51488:17:0;;;51480:55;;;;-1:-1:-1;;;51480:55:0;;31486:2:1;51480:55:0;;;31468:21:1;31525:2;31505:18;;;31498:30;31564:27;31544:18;;;31537:55;31609:18;;51480:55:0;31284:349:1;51480:55:0;-1:-1:-1;;;;;51546:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;51546:46:0;;;;;;;;;;51608:41;;540::1;;;51608::0;;513:18:1;51608:41:0;;;;;;;51342:315;;;:::o;46416:::-;46573:28;46583:4;46589:2;46593:7;46573:9;:28::i;:::-;46620:48;46643:4;46649:2;46653:7;46662:5;46620:22;:48::i;:::-;46612:111;;;;-1:-1:-1;;;46612:111:0;;;;;;;:::i;82713:336::-;-1:-1:-1;;;;;;;;;;;;;;;;;82802:12:0;82817:65;82855:17;82864:7;82855:8;:17::i;:::-;82874:5;82831:49;;;;;;;;;:::i;:::-;;;;;;;;;;;;;82817:6;:65::i;:::-;82802:80;-1:-1:-1;82893:17:0;82913:11;82920:4;82802:80;82913:11;:::i;:::-;82893:31;;82951:3;82939:9;:15;82935:81;;;82978:5;82991:12;;82984:19;;:4;:19;:::i;:::-;82978:26;;;;;;;;:::i;:::-;;;;;;;;;;;82971:33;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;82713:336;;;:::o;82935:81::-;83033:5;83039:1;83033:8;;;;;;;;:::i;83086:157::-;-1:-1:-1;;;;;;;;;;;;;;;;;83189:46:0;83195:7;83189:46;;;;;;;;;;;;;-1:-1:-1;;;83189:46:0;;;83219:11;83189:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;83232:2;83189:5;:46::i;83276:241::-;-1:-1:-1;;;;;;;;;;;;;;;;;83368:12:0;83383:68;83424:17;83433:7;83424:8;:17::i;:::-;83443:5;83397:52;;;;;;;;;:::i;83383:68::-;83469:12;83489:19;;83368:83;;-1:-1:-1;83469:12:0;83482:26;;83368:83;83482:26;:::i;:::-;83469:40;;;;;;;;:::i;:::-;;;;;;;;;;;83462:47;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;83276:241;;;:::o;83548:342::-;-1:-1:-1;;;;;;;;;;;;;;;;;83640:12:0;83655:66;83694:17;83703:7;83694:8;:17::i;:::-;83713:5;83669:50;;;;;;;;;:::i;83655:66::-;83640:81;-1:-1:-1;83732:17:0;83752:11;83759:4;83640:81;83752:11;:::i;:::-;83732:31;;83790:3;83778:9;:15;83774:65;;;83817:10;83810:17;;;;;;;;;;;;;;;;;:::i;83774:65::-;83856:5;83869:12;;83862:19;;:4;:19;:::i;84287:401::-;-1:-1:-1;;;;;;;;;;;;;;;;;84377:12:0;84392:66;84431:17;84440:7;84431:8;:17::i;84392:66::-;84377:81;-1:-1:-1;84469:17:0;84489:11;84496:4;84377:81;84489:11;:::i;:::-;84469:31;;84527:3;84515:9;:15;84511:67;;;84554:12;84547:19;;;;;;;;;;;;;;;;;:::i;84511:67::-;84604:3;84592:9;:15;84588:65;;;84631:10;84624:17;;;;;;;;;;;;;;;;;:::i;84588:65::-;84670:10;84663:17;;;;;;;;;;;;;;;;;:::i;83921:358::-;-1:-1:-1;;;;;;;;;;;;;;;;;84016:12:0;84031:66;84070:17;84079:7;84070:8;:17::i;84031:66::-;84016:81;-1:-1:-1;84108:17:0;84128:11;84135:4;84016:81;84128:11;:::i;:::-;84108:31;;84166:3;84154:9;:15;84150:91;;;84193:10;84211:17;;84204:24;;:4;:24;:::i;84150:91::-;84258:10;84269:1;84258:13;;;;;;;;:::i;85128:572::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;85258:12:0;85273:66;85312:17;85321:7;85312:8;:17::i;85273:66::-;85258:81;-1:-1:-1;85350:17:0;85370:11;85377:4;85258:81;85370:11;:::i;:::-;85402:20;;;;;;;;;;;-1:-1:-1;;;85402:20:0;;;;;;;;;;;85433:19;;;;;;;;-1:-1:-1;85433:19:0;;:14;;:19;85350:31;-1:-1:-1;85490:3:0;85477:16;;85473:97;;85520:38;85526:7;85520:38;;;;;;;;;;;;;-1:-1:-1;;;85520:38:0;;;85544:9;85520:38;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;85555:2;85520:5;:38::i;:::-;85511:47;;85473:97;85607:3;85595:9;:15;85590:69;;;85628:19;;;;;;;;;;-1:-1:-1;85628:19:0;;:14;;;:19;85590:69;-1:-1:-1;85686:6:0;;85128:572;-1:-1:-1;;;85128:572:0:o;85735:150::-;-1:-1:-1;;;;;;;;;;;;;;;;;85836:41:0;85842:7;85836:41;;;;;;;;;;;;;-1:-1:-1;;;85836:41:0;;;85863:9;85836:41;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;85874:2;85836:5;:41::i;85922:157::-;-1:-1:-1;;;;;;;;;;;;;;;;;86025:46:0;86031:7;86025:46;;;;;;;;;;;;;-1:-1:-1;;;86025:46:0;;;86055:11;86025:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;86068:2;86025:5;:46::i;81829:835::-;81888:13;81914:12;81929:66;81968:17;81977:7;81968:8;:17::i;81929:66::-;81914:81;-1:-1:-1;82006:17:0;82026:11;82033:4;81914:81;82026:11;:::i;:::-;82079:18;;;;;;;;;;;;-1:-1:-1;;;82079:18:0;;;;82006:31;;-1:-1:-1;82124:3:0;82112:15;;82108:71;;;-1:-1:-1;82144:23:0;;;;;;;;;;;;-1:-1:-1;;;82144:23:0;;;;82108:71;82206:3;82194:9;:15;82189:65;;;-1:-1:-1;82226:16:0;;;;;;;;;;;;-1:-1:-1;;;82226:16:0;;;;82189:65;82281:3;82269:9;:15;82264:63;;;-1:-1:-1;82301:14:0;;;;;;;;;;;;-1:-1:-1;;;82301:14:0;;;;82264:63;82354:3;82342:9;:15;82337:66;;;-1:-1:-1;82374:17:0;;;;;;;;;;;;-1:-1:-1;;;82374:17:0;;;;82337:66;82430:3;82418:9;:15;82413:65;;;-1:-1:-1;82450:16:0;;;;;;;;;;;;-1:-1:-1;;;82450:16:0;;;;82413:65;82505:3;82493:9;:15;82488:72;;;-1:-1:-1;82525:23:0;;;;;;;;;;;;-1:-1:-1;;;82525:23:0;;;;82488:72;82587:3;82575:9;:15;82570:63;;;-1:-1:-1;82607:14:0;;;;;;;;;;;;-1:-1:-1;;;82607:14:0;;;;82650:6;81829:835;-1:-1:-1;;;;81829:835:0:o;80691:1130::-;80751:13;80777:12;80792:69;80834:17;80843:7;80834:8;:17::i;:::-;80853:5;80806:53;;;;;;;;;:::i;80792:69::-;80777:84;-1:-1:-1;80872:17:0;80892:11;80899:4;80777:84;80892:11;:::i;:::-;80872:31;;80914:20;80954:43;80963:33;80981:7;80990:1;80993:2;80963:17;:33::i;:::-;80954:8;:43::i;:::-;80945:52;;81024:3;81012:9;:15;81008:101;;;81053:44;81062:34;81080:7;81089:2;81093;81062:17;:34::i;81053:44::-;81044:53;;81008:101;81136:3;81124:9;:15;81119:102;;;81165:44;81174:34;81192:7;81201:2;81205;81174:17;:34::i;81165:44::-;81156:53;;81119:102;81248:3;81236:9;:15;81231:103;;;81277:45;81286:35;81304:7;81313:2;81317:3;81286:17;:35::i;81277:45::-;81268:54;;81231:103;81361:3;81349:9;:15;81344:104;;;81390:46;81399:36;81417:7;81426:3;81431;81399:17;:36::i;81390:46::-;81381:55;;81344:104;81475:3;81463:9;:15;81458:104;;;81504:46;81513:36;81531:7;81540:3;81545;81513:17;:36::i;81504:46::-;81495:55;;81458:104;81589:3;81577:9;:15;81572:104;;;81618:46;81627:36;81645:7;81654:3;81659;81627:17;:36::i;81618:46::-;81609:55;;81572:104;81703:3;81691:9;:15;81686:104;;;81732:46;81741:36;81759:7;81768:3;81773;81741:17;:36::i;81732:46::-;81723:55;81807:6;-1:-1:-1;;;;;80691:1130:0:o;84696:401::-;84762:13;84788:12;84803:66;84842:17;84851:7;84842:8;:17::i;84803:66::-;84788:81;-1:-1:-1;84880:17:0;84900:11;84907:4;84788:81;84900:11;:::i;:::-;84880:31;;84938:3;84926:9;:15;84922:66;;;-1:-1:-1;;84958:18:0;;;;;;;;;;;;-1:-1:-1;;;84958:18:0;;;;;84696:401;-1:-1:-1;;84696:401:0:o;84922:66::-;85014:3;85002:9;:15;84998:64;;;-1:-1:-1;;85034:16:0;;;;;;;;;;;;-1:-1:-1;;;85034:16:0;;;;;84696:401;-1:-1:-1;;84696:401:0:o;84998:64::-;-1:-1:-1;;85072:17:0;;;;;;;;;;;;-1:-1:-1;;;85072:17:0;;;;;84696:401;-1:-1:-1;;84696:401:0:o;86820:723::-;86876:13;87097:10;87093:53;;-1:-1:-1;;87124:10:0;;;;;;;;;;;;-1:-1:-1;;;87124:10:0;;;;;86820:723::o;87093:53::-;87171:5;87156:12;87212:78;87219:9;;87212:78;;87245:8;;;;:::i;:::-;;-1:-1:-1;87268:10:0;;-1:-1:-1;87276:2:0;87268:10;;:::i;:::-;;;87212:78;;;87300:19;87332:6;87322:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;87322:17:0;;87300:39;;87350:154;87357:10;;87350:154;;87384:11;87394:1;87384:11;;:::i;:::-;;-1:-1:-1;87453:10:0;87461:2;87453:5;:10;:::i;:::-;87440:24;;:2;:24;:::i;:::-;87427:39;;87410:6;87417;87410:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;87410:56:0;;;;;;;;-1:-1:-1;87481:11:0;87490:2;87481:11;;:::i;:::-;;;87350:154;;435:1373;529:11;;493:13;;551:8;547:23;;-1:-1:-1;;561:9:0;;;;;;;;;-1:-1:-1;561:9:0;;;435:1373;-1:-1:-1;435:1373:0:o;547:23::-;614:18;652:1;641:7;:3;647:1;641:7;:::i;:::-;640:13;;;;:::i;:::-;635:19;;:1;:19;:::i;:::-;614:40;-1:-1:-1;704:19:0;736:15;614:40;749:2;736:15;:::i;:::-;726:26;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;726:26:0;;704:48;;761:18;782:5;;;;;;;;;;;;;;;;;761:26;;841:1;834:5;830:13;880:2;872:6;868:15;917:1;893:655;934:3;931:1;928:10;893:655;;;975:1;1010:12;;;;;1004:19;1097:4;1085:2;1081:14;;;;;1063:40;;1057:47;1190:2;1186:14;;;1182:25;;1168:40;;1162:47;1303:1;1299:13;;;1295:24;;1281:39;;1275:46;1407:16;;;;1393:31;;1387:38;1125:1;1121:11;;;1211:4;1158:58;;;1149:68;1234:11;;1271:57;;;1262:67;;;;1346:11;;1383:49;;1374:59;1454:3;1450:13;1475:22;;1537:1;1522:17;;;;968:9;893:655;;;897:30;1574:1;1569:3;1565:11;1589:1;1584:70;;;;1667:1;1662:68;;;;1558:172;;1584:70;-1:-1:-1;;;;;1609:17:0;;1602:43;1584:70;;1662:68;-1:-1:-1;;;;;1687:17:0;;1680:41;1558:172;-1:-1:-1;;;1740:26:0;;;1747:6;435:1373;-1:-1:-1;;;;435:1373:0:o;56413:589::-;-1:-1:-1;;;;;56619:18:0;;56615:187;;56654:40;56686:7;57829:10;:17;;57802:24;;;;:15;:24;;;;;:44;;;57857:24;;;;;;;;;;;;57725:164;56654:40;56615:187;;;56724:2;-1:-1:-1;;;;;56716:10:0;:4;-1:-1:-1;;;;;56716:10:0;;56712:90;;56743:47;56776:4;56782:7;56743:32;:47::i;:::-;-1:-1:-1;;;;;56816:16:0;;56812:183;;56849:45;56886:7;56849:36;:45::i;56812:183::-;56922:4;-1:-1:-1;;;;;56916:10:0;:2;-1:-1:-1;;;;;56916:10:0;;56912:83;;56943:40;56971:2;56975:7;56943:27;:40::i;48365:321::-;48495:18;48501:2;48505:7;48495:5;:18::i;:::-;48546:54;48577:1;48581:2;48585:7;48594:5;48546:22;:54::i;:::-;48524:154;;;;-1:-1:-1;;;48524:154:0;;;;;;;:::i;52222:799::-;52377:4;-1:-1:-1;;;;;52398:13:0;;8711:20;8759:8;52394:620;;52434:72;;-1:-1:-1;;;52434:72:0;;-1:-1:-1;;;;;52434:36:0;;;;;:72;;27668:10;;52485:4;;52491:7;;52500:5;;52434:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;52434:72:0;;;;;;;;-1:-1:-1;;52434:72:0;;;;;;;;;;;;:::i;:::-;;;52430:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;52676:13:0;;52672:272;;52719:60;;-1:-1:-1;;;52719:60:0;;;;;;;:::i;52672:272::-;52894:6;52888:13;52879:6;52875:2;52871:15;52864:38;52430:529;-1:-1:-1;;;;;;52557:51:0;-1:-1:-1;;;52557:51:0;;-1:-1:-1;52550:58:0;;52394:620;-1:-1:-1;52998:4:0;52222:799;;;;;;:::o;72506:140::-;72567:7;72630:5;72613:23;;;;;;;;:::i;:::-;;;;-1:-1:-1;;72613:23:0;;;;;;;;;72603:34;;72613:23;72603:34;;;;;72506:140;-1:-1:-1;;72506:140:0:o;86087:725::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;86294:18:0;;86289:142;;86335:20;;;;;;;;;;;-1:-1:-1;;;86335:20:0;;;;;;;;;;;86370:19;;;;;;;;-1:-1:-1;86370:19:0;;:14;;:19;86335:6;-1:-1:-1;86406:13:0;;86289:142;86443:12;86458:63;86489:3;86494:17;86503:7;86494:8;:17::i;:::-;86513:5;86472:47;;;;;;;;;;:::i;86458:63::-;86443:78;;86541:11;86560;:18;86553:4;:25;;;;:::i;:::-;86541:38;;;;;;;;:::i;:::-;;;;;;;86532:47;;86590:17;86617:3;86610:4;:10;;;;:::i;:::-;86590:30;;86657:9;86645;:21;86641:67;;;86690:6;86683:13;;;;;;;86641:67;-1:-1:-1;;86720:20:0;;;;;;;;;;;-1:-1:-1;;;86720:20:0;;;;;;;;;;;86751:19;;;;;;;;-1:-1:-1;86751:19:0;;:14;;:19;86720:20;86087:725;-1:-1:-1;;;;;86087:725:0:o;80359:324::-;80454:7;80475:12;80490:76;80539:17;80548:7;80539:8;:17::i;:::-;80558:5;80504:60;;;;;;;;;:::i;80490:76::-;80475:91;-1:-1:-1;80577:11:0;80591:10;80598:3;80591:4;:10;:::i;:::-;80577:24;-1:-1:-1;80612:17:0;80632:10;80577:24;80632:4;:10;:::i;:::-;80612:30;-1:-1:-1;80660:15:0;80672:3;80612:30;80660:15;:::i;:::-;80653:22;80359:324;-1:-1:-1;;;;;;;80359:324:0:o;58516:988::-;58782:22;58832:1;58807:22;58824:4;58807:16;:22::i;:::-;:26;;;;:::i;:::-;58844:18;58865:26;;;:17;:26;;;;;;58782:51;;-1:-1:-1;58998:28:0;;;58994:328;;-1:-1:-1;;;;;59065:18:0;;59043:19;59065:18;;;:12;:18;;;;;;;;:34;;;;;;;;;59116:30;;;;;;:44;;;59233:30;;:17;:30;;;;;:43;;;58994:328;-1:-1:-1;59418:26:0;;;;:17;:26;;;;;;;;59411:33;;;-1:-1:-1;;;;;59462:18:0;;;;;:12;:18;;;;;:34;;;;;;;59455:41;58516:988::o;59799:1079::-;60077:10;:17;60052:22;;60077:21;;60097:1;;60077:21;:::i;:::-;60109:18;60130:24;;;:15;:24;;;;;;60503:10;:26;;60052:46;;-1:-1:-1;60130:24:0;;60052:46;;60503:26;;;;;;:::i;:::-;;;;;;;;;60481:48;;60567:11;60542:10;60553;60542:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;60647:28;;;:15;:28;;;;;;;:41;;;60819:24;;;;;60812:31;60854:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;59870:1008;;;59799:1079;:::o;57303:221::-;57388:14;57405:20;57422:2;57405:16;:20::i;:::-;-1:-1:-1;;;;;57436:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;57481:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;57303:221:0:o;49022:382::-;-1:-1:-1;;;;;49102:16:0;;49094:61;;;;-1:-1:-1;;;49094:61:0;;36895:2:1;49094:61:0;;;36877:21:1;;;36914:18;;;36907:30;36973:34;36953:18;;;36946:62;37025:18;;49094:61:0;36693:356:1;49094:61:0;47109:4;47133:16;;;:7;:16;;;;;;-1:-1:-1;;;;;47133:16:0;:30;49166:58;;;;-1:-1:-1;;;49166:58:0;;37256:2:1;49166:58:0;;;37238:21:1;37295:2;37275:18;;;37268:30;37334;37314:18;;;37307:58;37382:18;;49166:58:0;37054:352:1;49166:58:0;49237:45;49266:1;49270:2;49274:7;49237:20;:45::i;:::-;-1:-1:-1;;;;;49295:13:0;;;;;;:9;:13;;;;;:18;;49312:1;;49295:13;:18;;49312:1;;49295:18;:::i;:::-;;;;-1:-1:-1;;49324:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;49324:21:0;-1:-1:-1;;;;;49324:21:0;;;;;;;;49363:33;;49324:16;;;49363:33;;49324:16;;49363:33;49022:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;:::-;384:5;150:245;-1:-1:-1;;;150:245:1:o;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:::-;897:3;935:5;929:12;962:6;957:3;950:19;978:63;1034:6;1027:4;1022:3;1018:14;1011:4;1004:5;1000:16;978:63;:::i;:::-;1095:2;1074:15;-1:-1:-1;;1070:29:1;1061:39;;;;1102:4;1057:50;;855:258;-1:-1:-1;;855:258:1:o;1118:220::-;1267:2;1256:9;1249:21;1230:4;1287:45;1328:2;1317:9;1313:18;1305:6;1287:45;:::i;1343:180::-;1402:6;1455:2;1443:9;1434:7;1430:23;1426:32;1423:52;;;1471:1;1468;1461:12;1423:52;-1:-1:-1;1494:23:1;;1343:180;-1:-1:-1;1343:180:1:o;1736:173::-;1804:20;;-1:-1:-1;;;;;1853:31:1;;1843:42;;1833:70;;1899:1;1896;1889:12;1833:70;1736:173;;;:::o;1914:254::-;1982:6;1990;2043:2;2031:9;2022:7;2018:23;2014:32;2011:52;;;2059:1;2056;2049:12;2011:52;2082:29;2101:9;2082:29;:::i;:::-;2072:39;2158:2;2143:18;;;;2130:32;;-1:-1:-1;;;1914:254:1:o;2355:161::-;2421:5;2466:2;2457:6;2452:3;2448:16;2444:25;2441:45;;;2482:1;2479;2472:12;2521:368;2613:6;2666:2;2654:9;2645:7;2641:23;2637:32;2634:52;;;2682:1;2679;2672:12;2634:52;2722:9;2709:23;2755:18;2747:6;2744:30;2741:50;;;2787:1;2784;2777:12;2741:50;2810:73;2875:7;2866:6;2855:9;2851:22;2810:73;:::i;2894:328::-;2971:6;2979;2987;3040:2;3028:9;3019:7;3015:23;3011:32;3008:52;;;3056:1;3053;3046:12;3008:52;3079:29;3098:9;3079:29;:::i;:::-;3069:39;;3127:38;3161:2;3150:9;3146:18;3127:38;:::i;:::-;3117:48;;3212:2;3201:9;3197:18;3184:32;3174:42;;2894:328;;;;;:::o;3227:389::-;3312:8;3322:6;3376:3;3369:4;3361:6;3357:17;3353:27;3343:55;;3394:1;3391;3384:12;3343:55;-1:-1:-1;3417:20:1;;3460:18;3449:30;;3446:50;;;3492:1;3489;3482:12;3446:50;3529:4;3521:6;3517:17;3505:29;;3589:3;3582:4;3572:6;3569:1;3565:14;3557:6;3553:27;3549:38;3546:47;3543:67;;;3606:1;3603;3596:12;3543:67;3227:389;;;;;:::o;3621:492::-;3740:6;3748;3801:2;3789:9;3780:7;3776:23;3772:32;3769:52;;;3817:1;3814;3807:12;3769:52;3857:9;3844:23;3890:18;3882:6;3879:30;3876:50;;;3922:1;3919;3912:12;3876:50;3961:92;4045:7;4036:6;4025:9;4021:22;3961:92;:::i;:::-;4072:8;;3935:118;;-1:-1:-1;3621:492:1;-1:-1:-1;;;;3621:492:1:o;4118:186::-;4177:6;4230:2;4218:9;4209:7;4205:23;4201:32;4198:52;;;4246:1;4243;4236:12;4198:52;4269:29;4288:9;4269:29;:::i;4309:632::-;4480:2;4532:21;;;4602:13;;4505:18;;;4624:22;;;4451:4;;4480:2;4703:15;;;;4677:2;4662:18;;;4451:4;4746:169;4760:6;4757:1;4754:13;4746:169;;;4821:13;;4809:26;;4890:15;;;;4855:12;;;;4782:1;4775:9;4746:169;;;-1:-1:-1;4932:3:1;;4309:632;-1:-1:-1;;;;;;4309:632:1:o;4946:127::-;5007:10;5002:3;4998:20;4995:1;4988:31;5038:4;5035:1;5028:15;5062:4;5059:1;5052:15;5078:632;5143:5;5173:18;5214:2;5206:6;5203:14;5200:40;;;5220:18;;:::i;:::-;5295:2;5289:9;5263:2;5349:15;;-1:-1:-1;;5345:24:1;;;5371:2;5341:33;5337:42;5325:55;;;5395:18;;;5415:22;;;5392:46;5389:72;;;5441:18;;:::i;:::-;5481:10;5477:2;5470:22;5510:6;5501:15;;5540:6;5532;5525:22;5580:3;5571:6;5566:3;5562:16;5559:25;5556:45;;;5597:1;5594;5587:12;5556:45;5647:6;5642:3;5635:4;5627:6;5623:17;5610:44;5702:1;5695:4;5686:6;5678;5674:19;5670:30;5663:41;;;;5078:632;;;;;:::o;5715:451::-;5784:6;5837:2;5825:9;5816:7;5812:23;5808:32;5805:52;;;5853:1;5850;5843:12;5805:52;5893:9;5880:23;5926:18;5918:6;5915:30;5912:50;;;5958:1;5955;5948:12;5912:50;5981:22;;6034:4;6026:13;;6022:27;-1:-1:-1;6012:55:1;;6063:1;6060;6053:12;6012:55;6086:74;6152:7;6147:2;6134:16;6129:2;6125;6121:11;6086:74;:::i;6668:347::-;6733:6;6741;6794:2;6782:9;6773:7;6769:23;6765:32;6762:52;;;6810:1;6807;6800:12;6762:52;6833:29;6852:9;6833:29;:::i;:::-;6823:39;;6912:2;6901:9;6897:18;6884:32;6959:5;6952:13;6945:21;6938:5;6935:32;6925:60;;6981:1;6978;6971:12;6925:60;7004:5;6994:15;;;6668:347;;;;;:::o;7020:667::-;7115:6;7123;7131;7139;7192:3;7180:9;7171:7;7167:23;7163:33;7160:53;;;7209:1;7206;7199:12;7160:53;7232:29;7251:9;7232:29;:::i;:::-;7222:39;;7280:38;7314:2;7303:9;7299:18;7280:38;:::i;:::-;7270:48;;7365:2;7354:9;7350:18;7337:32;7327:42;;7420:2;7409:9;7405:18;7392:32;7447:18;7439:6;7436:30;7433:50;;;7479:1;7476;7469:12;7433:50;7502:22;;7555:4;7547:13;;7543:27;-1:-1:-1;7533:55:1;;7584:1;7581;7574:12;7533:55;7607:74;7673:7;7668:2;7655:16;7650:2;7646;7642:11;7607:74;:::i;:::-;7597:84;;;7020:667;;;;;;;:::o;8065:260::-;8133:6;8141;8194:2;8182:9;8173:7;8169:23;8165:32;8162:52;;;8210:1;8207;8200:12;8162:52;8233:29;8252:9;8233:29;:::i;:::-;8223:39;;8281:38;8315:2;8304:9;8300:18;8281:38;:::i;:::-;8271:48;;8065:260;;;;;:::o;8330:380::-;8409:1;8405:12;;;;8452;;;8473:61;;8527:4;8519:6;8515:17;8505:27;;8473:61;8580:2;8572:6;8569:14;8549:18;8546:38;8543:161;;;8626:10;8621:3;8617:20;8614:1;8607:31;8661:4;8658:1;8651:15;8689:4;8686:1;8679:15;9955:356;10157:2;10139:21;;;10176:18;;;10169:30;10235:34;10230:2;10215:18;;10208:62;10302:2;10287:18;;9955:356::o;10316:342::-;10518:2;10500:21;;;10557:2;10537:18;;;10530:30;-1:-1:-1;;;10591:2:1;10576:18;;10569:48;10649:2;10634:18;;10316:342::o;10663:516::-;10735:4;10741:6;10801:11;10788:25;10895:2;10891:7;10880:8;10864:14;10860:29;10856:43;10836:18;10832:68;10822:96;;10914:1;10911;10904:12;10822:96;10941:33;;10993:20;;;-1:-1:-1;11036:18:1;11025:30;;11022:50;;;11068:1;11065;11058:12;11022:50;11101:4;11089:17;;-1:-1:-1;11132:14:1;11128:27;;;11118:38;;11115:58;;;11169:1;11166;11159:12;11310:545;11412:2;11407:3;11404:11;11401:448;;;11448:1;11473:5;11469:2;11462:17;11518:4;11514:2;11504:19;11588:2;11576:10;11572:19;11569:1;11565:27;11559:4;11555:38;11624:4;11612:10;11609:20;11606:47;;;-1:-1:-1;11647:4:1;11606:47;11702:2;11697:3;11693:12;11690:1;11686:20;11680:4;11676:31;11666:41;;11757:82;11775:2;11768:5;11765:13;11757:82;;;11820:17;;;11801:1;11790:13;11757:82;;;11761:3;;;11310:545;;;:::o;12031:1190::-;12139:18;12134:3;12131:27;12128:53;;;12161:18;;:::i;:::-;12190:94;12280:3;12240:38;12272:4;12266:11;12240:38;:::i;:::-;12234:4;12190:94;:::i;:::-;12310:1;12335:2;12330:3;12327:11;12352:1;12347:616;;;;13007:1;13024:3;13021:93;;;-1:-1:-1;13080:19:1;;;13067:33;13021:93;-1:-1:-1;;11988:1:1;11984:11;;;11980:24;11976:29;11966:40;12012:1;12008:11;;;11963:57;13127:78;;12320:895;;12347:616;11257:1;11250:14;;;11294:4;11281:18;;-1:-1:-1;;12383:17:1;;;12484:9;12506:229;12520:7;12517:1;12514:14;12506:229;;;12609:19;;;12596:33;12581:49;;12716:4;12701:20;;;;12669:1;12657:14;;;;12536:12;12506:229;;;12510:3;12763;12754:7;12751:16;12748:159;;;12887:1;12883:6;12877:3;12871;12868:1;12864:11;12860:21;12856:34;12852:39;12839:9;12834:3;12830:19;12817:33;12813:79;12805:6;12798:95;12748:159;;;12950:1;12944:3;12941:1;12937:11;12933:19;12927:4;12920:33;12320:895;;;12031:1190;;;:::o;13226:1638::-;13378:50;13422:5;13415;13378:50;:::i;:::-;13458:18;13443:13;13440:37;13437:63;;;13480:18;;:::i;:::-;13509:104;13599:13;13559:38;13591:4;13585:11;13559:38;:::i;:::-;13553:4;13509:104;:::i;:::-;13639:1;13674:2;13659:13;13656:21;13691:1;13686:672;;;;14404:1;14421:13;14418:113;;;-1:-1:-1;14489:27:1;;;14476:41;14418:113;-1:-1:-1;;11988:1:1;11984:11;;;11980:24;11976:29;11966:40;12012:1;12008:11;;;11963:57;14544:90;;13649:995;;13686:672;11257:1;11250:14;;;11294:4;11281:18;;-1:-1:-1;;13722:27:1;;;13833:9;13855:237;13869:7;13866:1;13863:14;13855:237;;;13958:27;;;13945:41;13930:57;;14073:4;14058:20;;;;14026:1;14014:14;;;;13885:12;13855:237;;;13859:3;14120:13;14111:7;14108:26;14105:187;;;14272:1;14268:6;14262:3;14246:13;14243:1;14239:21;14235:31;14231:44;14227:49;14214:9;14201:11;14197:27;14184:41;14180:97;14172:6;14165:113;14105:187;;;14345:1;14329:13;14326:1;14322:21;14318:29;14312:4;14305:43;13649:995;;;;;14689:59;14744:2;14737:5;14733:14;14726:5;14689:59;:::i;:::-;14757:101;14844:13;14829;14825:1;14819:4;14815:12;14757:101;:::i;14869:249::-;15018:94;15106:5;15100:4;15018:94;:::i;15123:413::-;15325:2;15307:21;;;15364:2;15344:18;;;15337:30;15403:34;15398:2;15383:18;;15376:62;-1:-1:-1;;;15469:2:1;15454:18;;15447:47;15526:3;15511:19;;15123:413::o;15953:127::-;16014:10;16009:3;16005:20;16002:1;15995:31;16045:4;16042:1;16035:15;16069:4;16066:1;16059:15;16085:330;16184:4;16242:11;16229:25;16336:2;16332:7;16321:8;16305:14;16301:29;16297:43;16277:18;16273:68;16263:96;;16355:1;16352;16345:12;16263:96;16376:33;;;;;16085:330;-1:-1:-1;;16085:330:1:o;16420:127::-;16481:10;16476:3;16472:20;16469:1;16462:31;16512:4;16509:1;16502:15;16536:4;16533:1;16526:15;16552:135;16591:3;-1:-1:-1;;16612:17:1;;16609:43;;;16632:18;;:::i;:::-;-1:-1:-1;16679:1:1;16668:13;;16552:135::o;17926:128::-;17966:3;17997:1;17993:6;17990:1;17987:13;17984:39;;;18003:18;;:::i;:::-;-1:-1:-1;18039:9:1;;17926:128::o;20939:168::-;20979:7;21045:1;21041;21037:6;21033:14;21030:1;21027:21;21022:1;21015:9;21008:17;21004:45;21001:71;;;21052:18;;:::i;:::-;-1:-1:-1;21092:9:1;;20939:168::o;21821:1641::-;22288:3;22326:6;22320:13;22352:4;22365:51;22409:6;22404:3;22399:2;22391:6;22387:15;22365:51;:::i;:::-;22479:13;;22438:16;;;;22501:55;22479:13;22438:16;22523:15;;;22501:55;:::i;:::-;22623:13;;22578:20;;;22645:55;22623:13;22578:20;22667:15;;;22645:55;:::i;:::-;22767:13;;22722:20;;;22789:55;22767:13;22722:20;22811:15;;;22789:55;:::i;:::-;22911:13;;22866:20;;;22933:55;22911:13;22866:20;22955:15;;;22933:55;:::i;:::-;23055:13;;23010:20;;;23077:55;23055:13;23010:20;23099:15;;;23077:55;:::i;:::-;23199:13;;23154:20;;;23221:55;23199:13;23154:20;23243:15;;;23221:55;:::i;:::-;23343:13;;23298:20;;;23365:55;23343:13;23298:20;23387:15;;;23365:55;:::i;:::-;23436:20;;;;;21821:1641;-1:-1:-1;;;;;;;;;;;21821:1641:1:o;23467:1449::-;23886:3;23924:6;23918:13;23950:4;23963:51;24007:6;24002:3;23997:2;23989:6;23985:15;23963:51;:::i;:::-;24077:13;;24036:16;;;;24099:55;24077:13;24036:16;24121:15;;;24099:55;:::i;:::-;24221:13;;24176:20;;;24243:55;24221:13;24176:20;24265:15;;;24243:55;:::i;:::-;24365:13;;24320:20;;;24387:55;24365:13;24320:20;24409:15;;;24387:55;:::i;:::-;24509:13;;24464:20;;;24531:55;24509:13;24464:20;24553:15;;;24531:55;:::i;:::-;24653:13;;24608:20;;;24675:55;24653:13;24608:20;24697:15;;;24675:55;:::i;:::-;24797:13;;24752:20;;;24819:55;24797:13;24752:20;24841:15;;;24819:55;:::i;:::-;24890:20;;;;;23467:1449;-1:-1:-1;;;;;;;;;;23467:1449:1:o;24921:1767::-;25436:3;25474:6;25468:13;25490:53;25536:6;25531:3;25524:4;25516:6;25512:17;25490:53;:::i;:::-;25574:6;25568:13;25590:68;25649:8;25640:6;25635:3;25631:16;25624:4;25616:6;25612:17;25590:68;:::i;:::-;25736:13;;25684:16;;;25680:31;;25758:57;25736:13;25680:31;25792:4;25780:17;;25758:57;:::i;:::-;25846:6;25840:13;25862:72;25925:8;25914;25907:5;25903:20;25896:4;25888:6;25884:17;25862:72;:::i;:::-;26016:13;;25960:20;;;;25956:35;;26038:57;26016:13;25956:35;26072:4;26060:17;;26038:57;:::i;:::-;26126:6;26120:13;26142:72;26205:8;26194;26187:5;26183:20;26176:4;26168:6;26164:17;26142:72;:::i;:::-;26296:13;;26240:20;;;;26236:35;;26318:57;26296:13;26236:35;26352:4;26340:17;;26318:57;:::i;:::-;26406:6;26400:13;26422:72;26485:8;26474;26467:5;26463:20;26456:4;26448:6;26444:17;26422:72;:::i;:::-;26573:13;;26517:20;;;;26513:35;;26595:54;26573:13;26513:35;26629:4;26617:17;;26595:54;:::i;:::-;26665:17;;24921:1767;-1:-1:-1;;;;;;;;;;;24921:1767:1:o;26693:693::-;26743:3;26784:5;26778:12;26813:36;26839:9;26813:36;:::i;:::-;26868:1;26885:18;;;26912:104;;;;27030:1;27025:355;;;;26878:502;;26912:104;-1:-1:-1;;26945:24:1;;26933:37;;26990:16;;;;-1:-1:-1;26912:104:1;;27025:355;27056:5;27053:1;27046:16;27085:4;27130:2;27127:1;27117:16;27155:1;27169:165;27183:6;27180:1;27177:13;27169:165;;;27261:14;;27248:11;;;27241:35;27304:16;;;;27198:10;;27169:165;;;27173:3;;;27363:6;27358:3;27354:16;27347:23;;26878:502;;;;;26693:693;;;;:::o;27391:1670::-;-1:-1:-1;;;28186:55:1;;28264:13;;28168:3;;28286:62;28264:13;28336:2;28327:12;;28320:4;28308:17;;28286:62;:::i;:::-;-1:-1:-1;;;28407:2:1;28367:16;;;28399:11;;;28392:72;28483:46;28525:2;28517:11;;28509:6;28483:46;:::i;:::-;28473:56;;28549:66;28545:2;28538:78;-1:-1:-1;;;28640:4:1;28636:2;28632:13;28625:33;28689:6;28683:13;28705:63;28759:8;28754:2;28750;28746:11;28739:4;28731:6;28727:17;28705:63;:::i;:::-;-1:-1:-1;;;28828:2:1;28787:17;;;;28820:11;;;28813:36;28874:13;;28896:63;28874:13;28945:2;28937:11;;28930:4;28918:17;;28896:63;:::i;:::-;-1:-1:-1;;;29019:2:1;28978:17;;;;29011:11;;;29004:24;29052:2;29044:11;;27391:1670;-1:-1:-1;;;;;;27391:1670:1:o;29066:448::-;29328:31;29323:3;29316:44;29298:3;29389:6;29383:13;29405:62;29460:6;29455:2;29450:3;29446:12;29439:4;29431:6;29427:17;29405:62;:::i;:::-;29487:16;;;;29505:2;29483:25;;29066:448;-1:-1:-1;;29066:448:1:o;31154:125::-;31194:4;31222:1;31219;31216:8;31213:34;;;31227:18;;:::i;:::-;-1:-1:-1;31264:9:1;;31154:125::o;31638:414::-;31840:2;31822:21;;;31879:2;31859:18;;;31852:30;31918:34;31913:2;31898:18;;31891:62;-1:-1:-1;;;31984:2:1;31969:18;;31962:48;32042:3;32027:19;;31638:414::o;32057:500::-;-1:-1:-1;;;32359:3:1;32352:18;32334:3;32399:6;32393:13;32415:61;32469:6;32465:1;32460:3;32456:11;32449:4;32441:6;32437:17;32415:61;:::i;:::-;32492:59;32548:1;32539:6;32534:3;32530:16;32526:24;32518:6;32492:59;:::i;32562:127::-;32623:10;32618:3;32614:20;32611:1;32604:31;32654:4;32651:1;32644:15;32678:4;32675:1;32668:15;32694:112;32726:1;32752;32742:35;;32757:18;;:::i;:::-;-1:-1:-1;32791:9:1;;32694:112::o;32811:503::-;-1:-1:-1;;;33113:3:1;33106:21;33088:3;33156:6;33150:13;33172:61;33226:6;33222:1;33217:3;33213:11;33206:4;33198:6;33194:17;33172:61;:::i;:::-;33249:59;33305:1;33296:6;33291:3;33287:16;33283:24;33275:6;33249:59;:::i;33319:501::-;-1:-1:-1;;;33621:3:1;33614:19;33596:3;33662:6;33656:13;33678:61;33732:6;33728:1;33723:3;33719:11;33712:4;33704:6;33700:17;33678:61;:::i;:::-;33755:59;33811:1;33802:6;33797:3;33793:16;33789:24;33781:6;33755:59;:::i;33825:504::-;-1:-1:-1;;;34127:3:1;34120:22;34102:3;34171:6;34165:13;34187:61;34241:6;34237:1;34232:3;34228:11;34221:4;34213:6;34209:17;34187:61;:::i;:::-;34264:59;34320:1;34311:6;34306:3;34302:16;34298:24;34290:6;34264:59;:::i;34334:120::-;34374:1;34400;34390:35;;34405:18;;:::i;:::-;-1:-1:-1;34439:9:1;;34334:120::o;34459:489::-;-1:-1:-1;;;;;34728:15:1;;;34710:34;;34780:15;;34775:2;34760:18;;34753:43;34827:2;34812:18;;34805:34;;;34875:3;34870:2;34855:18;;34848:31;;;34653:4;;34896:46;;34922:19;;34914:6;34896:46;:::i;:::-;34888:54;34459:489;-1:-1:-1;;;;;;34459:489:1:o;34953:249::-;35022:6;35075:2;35063:9;35054:7;35050:23;35046:32;35043:52;;;35091:1;35088;35081:12;35043:52;35123:9;35117:16;35142:30;35166:5;35142:30;:::i;35207:276::-;35338:3;35376:6;35370:13;35392:53;35438:6;35433:3;35426:4;35418:6;35414:17;35392:53;:::i;35488:550::-;35712:3;35750:6;35744:13;35766:53;35812:6;35807:3;35800:4;35792:6;35788:17;35766:53;:::i;:::-;35882:13;;35841:16;;;;35904:57;35882:13;35841:16;35938:4;35926:17;;35904:57;:::i;:::-;35977:55;36022:8;36015:5;36011:20;36003:6;35977:55;:::i;36043:513::-;-1:-1:-1;;;36345:3:1;36338:29;36320:3;36396:6;36390:13;36412:62;36467:6;36462:2;36457:3;36453:12;36446:4;36438:6;36434:17;36412:62;:::i;:::-;36490:60;36546:2;36537:6;36532:3;36528:16;36524:25;36516:6;36490:60;:::i;36561:127::-;36622:10;36617:3;36613:20;36610:1;36603:31;36653:4;36650:1;36643:15;36677:4;36674:1;36667:15

Swarm Source

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