ETH Price: $3,444.23 (-1.05%)
Gas: 11 Gwei

Token

King Zevs Gems (GEM)
 

Overview

Max Total Supply

1,117 GEM

Holders

128

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 GEM
0x6cd2d84298f731fa443061255a9a84a09dbca769
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:
KingZevsGems

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-02-18
*/

// SPDX-License-Identifier: MIT

//                                  ////                                   //
///                                //////                                 ///
////                              ////////                               ////
/////                            //////////                             /////
//////                          ////////////                           //////
///////                        //////////////                         ///////
////////                      ////////////////                       ////////
/////////                    //////////////////                     /////////
//////////                  ////////////////////                   //////////                                                                   
///////////                //////////////////////                 ///////////                                                                    
////////////              ////////////////////////               ////////////                                                                   
/////////////            //////////////////////////             /////////////                                                                     
//////////////          ////////////////////////////           //////////////                                                          
/////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////

/**

As luck would have it... you made it.

My name is Botolf, a messenger of King Zev.

King Zev left me an urgent message to pass along.
Pray thee take the time to read as we need your help saving the Realm.

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

Anon,

The Whales of the Realm may be in possession of the 9 gems.
Their intentions are unknown, and now the Kingdom is at risk.

The gems are the key to a treasure trove.
If the treasure falls into their hands, the Realm will recede into darkness for 420 years.

I cry your mercy, collect the gems and find the treasure before the Whales.

Fortunately, you'll need more than the gems alone to unlock the vault the treasure resides.

There are hidden secrets planted throughout the Kingdom to mislead the Whales.
Tread carefully scavenger, you will soon realize things may not always appear as they seem.

I mustn't say anymore.

Resolutely,
King Zev

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

Botolf here again.

King Zev's message was quite cryptic.

To help clear things up, I was authorized to tell you the following:

1) King Zev's Gems are completely on-chain. They will persist forever as long as there is an Ethereum blockchain.
2) King Zev's Gems have
- No website
- No IPFS
- No Arweave
- No Twitter
- No Discord
- No APIs
- No external dependencies
3) Botolf will look for the hashtag #KingZevsGems on Twitter to see if a community website, Twitter, and/or Discord is created.
4) Keep an eye out for any contracts the deploying address may create. Your gems may be useful there.
5) Last, but not least, if it isn't clear what the treasure is, ask your smartest mate to review the code.

Oh, and if you've never minted with Etherscan before, read this tutorial https://blog.logrocket.com/how-to-mint-an-nft-with-etherscan/

Happy Treasure Hunting frens

 */

// File: @openzeppelin/contracts/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/math/SafeMath.sol



pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/utils/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/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/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() {
        _setOwner(_msgSender());
    }

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

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

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

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

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

// File: @openzeppelin/contracts/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



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



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



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



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/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/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 {
        require(operator != _msgSender(), "ERC721: approve to caller");

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
                return retval == IERC721Receiver.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: contracts/KingZevsGems.sol


pragma solidity ^0.8.0;


/// @title Base64
/// @author Brecht Devos - <[email protected]>
/// @notice Provides functions for encoding/decoding base64
library Base64 {
    string internal constant TABLE_ENCODE = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/';
    bytes  internal constant TABLE_DECODE = hex"0000000000000000000000000000000000000000000000000000000000000000"
                                            hex"00000000000000000000003e0000003f3435363738393a3b3c3d000000000000"
                                            hex"00000102030405060708090a0b0c0d0e0f101112131415161718190000000000"
                                            hex"001a1b1c1d1e1f202122232425262728292a2b2c2d2e2f303132330000000000";

    function encode(bytes memory data) internal pure returns (string memory) {
        if (data.length == 0) return '';

        // load the table into memory
        string memory table = TABLE_ENCODE;

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

        // add some extra buffer at the end required for the writing
        string memory result = new string(encodedLen + 32);

        assembly {
            // set the actual output length
            mstore(result, encodedLen)

            // prepare the lookup table
            let tablePtr := add(table, 1)

            // input ptr
            let dataPtr := data
            let endPtr := add(dataPtr, mload(data))

            // result ptr, jump over length
            let resultPtr := add(result, 32)

            // run over the input, 3 bytes at a time
            for {} lt(dataPtr, endPtr) {}
            {
                // read 3 bytes
                dataPtr := add(dataPtr, 3)
                let input := mload(dataPtr)

                // write 4 characters
                mstore8(resultPtr, mload(add(tablePtr, and(shr(18, input), 0x3F))))
                resultPtr := add(resultPtr, 1)
                mstore8(resultPtr, mload(add(tablePtr, and(shr(12, input), 0x3F))))
                resultPtr := add(resultPtr, 1)
                mstore8(resultPtr, mload(add(tablePtr, and(shr( 6, input), 0x3F))))
                resultPtr := add(resultPtr, 1)
                mstore8(resultPtr, mload(add(tablePtr, and(        input,  0x3F))))
                resultPtr := add(resultPtr, 1)
            }

            // padding with '='
            switch mod(mload(data), 3)
            case 1 { mstore(sub(resultPtr, 2), shl(240, 0x3d3d)) }
            case 2 { mstore(sub(resultPtr, 1), shl(248, 0x3d)) }
        }

        return result;
    }

    function decode(string memory _data) internal pure returns (bytes memory) {
        bytes memory data = bytes(_data);

        if (data.length == 0) return new bytes(0);
        require(data.length % 4 == 0, "invalid base64 decoder input");

        // load the table into memory
        bytes memory table = TABLE_DECODE;

        // every 4 characters represent 3 bytes
        uint256 decodedLen = (data.length / 4) * 3;

        // add some extra buffer at the end required for the writing
        bytes memory result = new bytes(decodedLen + 32);

        assembly {
            // padding with '='
            let lastBytes := mload(add(data, mload(data)))
            if eq(and(lastBytes, 0xFF), 0x3d) {
                decodedLen := sub(decodedLen, 1)
                if eq(and(lastBytes, 0xFFFF), 0x3d3d) {
                    decodedLen := sub(decodedLen, 1)
                }
            }

            // set the actual output length
            mstore(result, decodedLen)

            // prepare the lookup table
            let tablePtr := add(table, 1)

            // input ptr
            let dataPtr := data
            let endPtr := add(dataPtr, mload(data))

            // result ptr, jump over length
            let resultPtr := add(result, 32)

            // run over the input, 4 characters at a time
            for {} lt(dataPtr, endPtr) {}
            {
               // read 4 characters
               dataPtr := add(dataPtr, 4)
               let input := mload(dataPtr)

               // write 3 bytes
               let output := add(
                   add(
                       shl(18, and(mload(add(tablePtr, and(shr(24, input), 0xFF))), 0xFF)),
                       shl(12, and(mload(add(tablePtr, and(shr(16, input), 0xFF))), 0xFF))),
                   add(
                       shl( 6, and(mload(add(tablePtr, and(shr( 8, input), 0xFF))), 0xFF)),
                               and(mload(add(tablePtr, and(        input , 0xFF))), 0xFF)
                    )
                )
                mstore(resultPtr, shl(232, output))
                resultPtr := add(resultPtr, 3)
            }
        }

        return result;
    }
}

//// ~~~~~~~~~~~~~~~~~~~~~~~~~ ////
//// ~~~~ King Zev's Gems ~~~~ ////
//// ~~~~~~~~~~~~~~~~~~~~~~~~~ ////

interface ExternalInterface {
    function ownerOf(uint256 tokenId) external view returns (address owner);
}

contract KingZevsGems is ERC721, Ownable {
    using Strings for uint256;
    using SafeMath for uint256;
    using Counters for Counters.Counter;

    Counters.Counter private _gemCounter;

    uint256 public constant MAX_GEMS          = 8888;
    uint256 public constant MAX_YOU_ARE_EARLY = 1111;
    uint256 public constant MAX_GEMS_MINTED   = 10;    
    uint256 public constant GEM_MINT_PRICE    = 8 * 10**16; // 0.08 ETH
    uint256 private pinKeyB = 0;
    bool public isTreasureInVault = false;
    bool public isPortcullisOpen  = false;
    bool public isWhales          = false;

    string[] private gems         = ["topaz",   "ruby",    "sapphire", "emerald", "opal",    "zircon",  "onyx",    "jadeite", "amber"];
    string[] private gemsColorOne = ["#ffa830", "#990c41", "#093373",  "#319b54", "#c0ebff", "#681a1a", "#000000", "#005c3a", "#b38600"];
    string[] private gemsColorTwo = ["#ffe8c9", "#f14c8a", "#2875ee",  "#8adaa5", "#ffc0cb", "#d14a4a", "#404040", "#00f59c", "#ffd24d"];

    string[] private gemPoints = [
        "50,25 75,50 50,75 25,50",
        "50,12.5 75,50 50,87.5 25,50",
        "50,25 87.5,50 50,75 12.5,50",
        "40,25 60,25 87.5,50 60,75 40,75 12.5,50",
        "50,12.5 75,30 75,70 50,87.5 25,70 25,30",
        "12.5,50 25,35 75,35 87.5,50 75,65 25,65",
        "40,25 60,25 87.5,44 87.5,55 60,75 40,75 12.5,55 12.5,45"
    ];    

    ExternalInterface externalContract;

    event CreateGem(uint256 indexed id);

    constructor() public ERC721("King Zevs Gems", "GEM") {}

    function totalSupply() public view returns (uint256) {
        return _gemCounter.current();
    }

    function MINT_TO_THE_WHALE_OF_KING_ZEVS_KINGDOM_SO_THIS_POPS_UP_ON_NANSEN_AND_ICY_TOOLS_AND_STUFF() public payable {
        require(!isWhales);
        _mintManyGems(0xF7DcF798971452737f1E6196D36Dd215b43b428D, 0);
        _mintManyGems(0x6Cd2D84298F731fa443061255a9a84a09dbCA769, 1);
        _mintManyGems(0xA442dDf27063320789B59A8fdcA5b849Cd2CDeAC, 2);
        _mintManyGems(0x72FAe93d08A060A7f0A8919708c0Db74Ca46cbB6, 3);
        _mintManyGems(0xC46Db2d89327D4C41Eb81c43ED5e3dfF111f9A8f, 4);
        _mintManyGems(0xCb96594AbA4627e6064731b0098Dc97547b397BE, 5);
        _mintManyGems(0x4385FF4B76d8A7fa8075Ed1ee27c82fFE0951456, 6);
        _mintManyGems(0xaf469C4a0914938e6149CF621c54FB4b1EC0c202, 7);
        _mintManyGems(0xe9F1E4dC4D1F3F62d54d70Ea73A8c9B4Cd2BDE2D, 8);
        _mintManyGems(0xe1D29d0a39962a9a8d2A297ebe82e166F8b8EC18, 9);
        _mintManyGems(0xaBF107de3E01c7c257e64E0a18d60A733Aad395d, 10);
        _mintManyGems(0x442DCCEe68425828C106A3662014B4F131e3BD9b, 11);
        _mintManyGems(0xD387A6E4e84a6C86bd90C158C6028A58CC8Ac459, 12);
        _mintManyGems(0x7500935C3C34D0d48e9c388b3dFFa0AbBda52633, 13);
        _mintManyGems(0x11360F0c5552443b33720a44408aba01a809905e, 14);
        _mintManyGems(0xc5F59709974262c4AFacc5386287820bDBC7eB3A, 15);
        isWhales = true;
    }

    function unlockTheGates(address _contract) public {
        require(totalSupply() >= MAX_GEMS, "not permitted until all gems are minted");
        externalContract = ExternalInterface(_contract);
    }

    function openTheGates(uint256 _tokenId) public {
        require(totalSupply() >= MAX_GEMS, "not permitted until all gems are minted");
        require(balanceOf(_msgSender()) > 0, "need to own a gem, ser");
        require(externalContract.ownerOf(_tokenId) == msg.sender);
        isPortcullisOpen = true;
    }

    /**
     * @dev See {ERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        require(isPortcullisOpen);
        super.setApprovalForAll(operator, approved);
    }    

     /**
     * @dev See {ERC721-_beforeTokenTranfser}.
     */
    function _beforeTokenTransfer(address from, address to, uint256 tokenId) internal virtual override {
        require(from == address(0) || isPortcullisOpen);
        pinKeyB = tokenId % 420;
        super._beforeTokenTransfer(from, to, tokenId);
    }

    /**
     * @dev Mint your gems. payableAmount (ether) is 0.08 for 1, 0.16 for 2, 0.24 for 3, ..., 0.8 for 10.
     * @param _count The number of gems you want to mint. Max 10 per wallet.
     */
    function mintGem(uint256 _count) public payable {
        uint256 total = totalSupply();
        require(total + _count <= MAX_GEMS, "gems r minted silly scavenger");
        require(total <= MAX_GEMS, "gems r minted silly scavenger");
        require(balanceOf(_msgSender()) + _count <= MAX_GEMS_MINTED, "greedy, ser");
        // let the first 1111 scavengers mint for free, they're early
        require(msg.value >= GEM_MINT_PRICE.mul(_count) || total + _count < MAX_YOU_ARE_EARLY, "not enough ether, ser");

        _mintManyGems(msg.sender, _count);
    }

    function _mintManyGems(address _to, uint256 _count) private {
        for (uint256 i = 0; i < _count; i++) {
            _mintGem(_to);
        }
    }

    function _mintGem(address _to) private {
        uint256 id = totalSupply();
        _gemCounter.increment();
        _safeMint(_to, id);
        emit CreateGem(id);
    }

    function getGemId(uint256 _tokenId) internal pure returns (uint256) {
        uint256 rarity = uint256(keccak256(abi.encodePacked("GEM", Strings.toString(_tokenId)))) % 101;
        uint256 gemId = 0;
        if (rarity >= 25) {
            gemId = 1;
        }
        if (rarity >= 50) {
            gemId = 2;
        }
        if (rarity >= 75) {
            gemId = 3;
        }
        if (rarity >= 90) {
            gemId = 4;
        }
        if (rarity >= 96) {
            gemId = 5;
        }
        if (rarity >= 99) {
            gemId = 6;
        }
        if (rarity == 69) {
            gemId = 7;
        }
        if (rarity > 100) {
            gemId = 8;
        }
        return gemId;
    }

    function getGemGrade(uint256 _tokenId) internal pure returns (uint256) {
        uint256 rarity = uint256(keccak256(abi.encodePacked("GEM GRADE", Strings.toString(_tokenId)))) % 101;
        uint256 grade = 1;
        if (rarity >= 15) {
            grade = 2;
        }
        if (rarity >= 30) {
            grade = 3;
        }
        if (rarity >= 90) {
            grade = 4;
        }
        if (rarity >= 99) {
            grade = 5;
        }
        return grade;
    }

    function tokenURI(uint256 _tokenId) public view override returns (string memory) {
        require(_exists(_tokenId), "ERC721Metadata: URI query for nonexistent token");
        uint256 _gemId = getGemId(_tokenId);
        string memory _gem = gems[_gemId];
        string memory _gemGrade = Strings.toString(getGemGrade(_tokenId));
        if (totalSupply() < MAX_GEMS) {
            _gem      = "oN-cHaIn rEVeAl afTeR MinT";
            _gemGrade = "oN-cHaIn rEVeAl afTeR MinT";
        }
        string memory json = Base64.encode(abi.encodePacked(
            '{"name":"Gem ',
            Strings.toString(_tokenId), 
            '", "description":"A quest to find King Zev',
            "'",
            's treasure trove. Collect gems, find clues, solve puzzles. On-chain, no website, no IPFS.", "attributes":[{"trait_type":"gem","value":"',
            _gem,
            '"}, {"trait_type":"Rarity Grade","value":"',
            _gemGrade,
            '"}], "image":"',
            gemImage(_tokenId),
            '"}'
        ));
        string memory jsonUri = string(abi.encodePacked("data:application/json;base64,", json));
        return jsonUri;
    }

    function gemImage(uint256 _tokenId) private view returns(string memory) {
        uint256 _gemId = getGemId(_tokenId);
        string memory colorOne = gemsColorOne[_gemId];
        string memory colorTwo = gemsColorTwo[_gemId];
        string memory path = '<ellipse fill="url(#linear-gradient)" cx="50" cy="50" rx="30" ry="20"/></svg>';

        string[14] memory parts;
        parts[0] = '<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100"><defs><linearGradient id="linear-gradient" x1="0" y1="0" x2="100%" y2="0" ><stop offset="0"><animate attributeName="stop-color" values="';
        parts[1] = colorOne;
        parts[2] = ";";
        parts[3] = colorTwo;
        parts[4] = ";";
        parts[5] = colorOne;
        parts[6] = '" dur="1s" repeatCount="indefinite" /></stop><stop offset="1"><animate attributeName="stop-color" values="';
        parts[7] = colorTwo;
        parts[8] = ";";
        parts[9] = colorOne;
        parts[10] = ";";
        parts[11] = colorTwo;
        parts[12] = '" dur="1s" repeatCount="indefinite" /></stop></linearGradient></defs>';

        if (_gemId != 6) {
            string memory gemPoint = gemPoints[_tokenId % gemPoints.length];
            path = string(abi.encodePacked(
                '<polygon fill="url(#linear-gradient)" points="',
                gemPoint,
                '"/></svg>'
            ));
        }

        parts[13] = path;

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

        if (totalSupply() < MAX_GEMS) {
            svg = string(abi.encodePacked(
                '<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100"><defs><linearGradient id="linear-gradient" x1="0" y1="0" x2="100%" y2="0" ><stop offset="0"><animate attributeName="stop-color" values="#990c41;#f14c8a;#990c41" dur="1s" repeatCount="indefinite" /></stop><stop offset="1"><animate attributeName="stop-color" values="#f14c8a;#990c41;#f14c8a" dur="1s" repeatCount="indefinite" /></stop></linearGradient></defs><polygon fill="url(#linear-gradient)" points="12.5,70 25,55 75,55 87.5,70 75,85 25,85"/><text x="50%" y="25%" text-anchor="middle" font-family="monospace" font-weight="bold" fill="url(#linear-gradient)">King Zev',
                "'",
                's</text> <text x="50%" y="45%" text-anchor="middle" font-family="monospace" font-weight="bold" fill="url(#linear-gradient)">Gems</text></svg>'
            ));
        }

        string memory svgUri = string(abi.encodePacked('data:image/svg+xml;base64,', Base64.encode(abi.encodePacked(svg))));
        return svgUri;
    }

    function lockTreasureInVault() public payable onlyOwner {
        require(!isTreasureInVault);
        uint256 balance = address(this).balance.div(2);
        require(balance > 0);
        _withdraw(msg.sender, balance);

        // lock the owner so they can only call this once
        isTreasureInVault = true;
    }

    function claimKingZevsTreasure(uint256[] memory unlockIds) public payable {
        require(isTreasureInVault);
        require(unlockIds.length >= 14);
        require(balanceOf(_msgSender()) >= 25);

        for (uint256 i = 0; i < 10; i++) {
            uint256 _tokenId = unlockIds[i];
            require(ownerOf(_tokenId) == msg.sender);
            if (i < 9) {
                if (i == 8) {
                    require(getGemId(_tokenId) == 6);
                } else {
                    require(getGemId(_tokenId) == i);
                }
            } else {
                require(_tokenId < 1111);
            }
        }           

        uint256 _pinKeyA = uint256(keccak256(abi.encodePacked("KING ZEV PIN KEY")))         % 420;
        uint256 _pinKeyB = uint256(keccak256(abi.encodePacked(Strings.toString(pinKeyB))))  % 420;
        uint256 _pinKeyC = uint256(keccak256(abi.encodePacked(Strings.toString(_pinKeyA)))) % 420;
        uint256 _pinKeyD = 69; // nice
        require(unlockIds[10] == _pinKeyA, "oooooh, try again ser");
        require(unlockIds[11] ==  pinKeyB, "oooooh, try againn ser");
        require(unlockIds[12] == _pinKeyD, "oooooh, try againnn ser");
        require(unlockIds[13] == _pinKeyC, "oooooh, try againnnn ser");

        uint256 balance = address(this).balance.div(2);
        require(balance > 0);
        _withdraw(msg.sender, balance);

        for (uint256 i = 0; i < 9; i++) {
            _transfer(msg.sender, 0x000000000000000000000000000000000000dEaD, unlockIds[i]);
        }
    }

    function _withdraw(address _address, uint256 _amount) private {
        (bool success, ) = _address.call{value: _amount}("");
        require(success, "Transfer failed.");
    }
}

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":"uint256","name":"id","type":"uint256"}],"name":"CreateGem","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":"GEM_MINT_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_GEMS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_GEMS_MINTED","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_YOU_ARE_EARLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINT_TO_THE_WHALE_OF_KING_ZEVS_KINGDOM_SO_THIS_POPS_UP_ON_NANSEN_AND_ICY_TOOLS_AND_STUFF","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"unlockIds","type":"uint256[]"}],"name":"claimKingZevsTreasure","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPortcullisOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isTreasureInVault","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isWhales","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lockTreasureInVault","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"mintGem","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"openTheGates","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_contract","type":"address"}],"name":"unlockTheGates","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405260006008556000600960006101000a81548160ff0219169083151502179055506000600960016101000a81548160ff0219169083151502179055506000600960026101000a81548160ff0219169083151502179055506040518061012001604052806040518060400160405280600581526020017f746f70617a00000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600481526020017f727562790000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600881526020017f736170706869726500000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f656d6572616c640000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600481526020017f6f70616c0000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600681526020017f7a6972636f6e000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600481526020017f6f6e79780000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f6a6164656974650000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600581526020017f616d626572000000000000000000000000000000000000000000000000000000815250815250600a90600962000289929190620009d5565b506040518061012001604052806040518060400160405280600781526020017f236666613833300000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f233939306334310000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f233039333337330000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f233331396235340000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f236330656266660000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f233638316131610000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f233030303030300000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f233030356333610000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f2362333836303000000000000000000000000000000000000000000000000000815250815250600b906009620004b9929190620009d5565b506040518061012001604052806040518060400160405280600781526020017f236666653863390000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f236631346338610000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f233238373565650000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f233861646161350000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f236666633063620000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f236431346134610000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f233430343034300000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f233030663539630000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f2366666432346400000000000000000000000000000000000000000000000000815250815250600c906009620006e9929190620009d5565b506040518060e001604052806040518060400160405280601781526020017f35302c32352037352c35302035302c37352032352c353000000000000000000081525081526020016040518060400160405280601b81526020017f35302c31322e352037352c35302035302c38372e352032352c3530000000000081525081526020016040518060400160405280601b81526020017f35302c32352038372e352c35302035302c37352031322e352c353000000000008152508152602001604051806060016040528060278152602001620067a1602791398152602001604051806060016040528060278152602001620067536027913981526020016040518060600160405280602781526020016200677a6027913981526020016040518060600160405280603781526020016200671c60379139815250600d9060076200083292919062000a3c565b503480156200084057600080fd5b506040518060400160405280600e81526020017f4b696e67205a6576732047656d730000000000000000000000000000000000008152506040518060400160405280600381526020017f47454d00000000000000000000000000000000000000000000000000000000008152508160009080519060200190620008c592919062000aa3565b508060019080519060200190620008de92919062000aa3565b50505062000901620008f56200090760201b60201c565b6200090f60201b60201c565b62000c26565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b82805482825590600052602060002090810192821562000a29579160200282015b8281111562000a2857825182908051906020019062000a1792919062000aa3565b5091602001919060010190620009f6565b5b50905062000a38919062000b34565b5090565b82805482825590600052602060002090810192821562000a90579160200282015b8281111562000a8f57825182908051906020019062000a7e92919062000aa3565b509160200191906001019062000a5d565b5b50905062000a9f919062000b34565b5090565b82805462000ab19062000bc1565b90600052602060002090601f01602090048101928262000ad5576000855562000b21565b82601f1062000af057805160ff191683800117855562000b21565b8280016001018555821562000b21579182015b8281111562000b2057825182559160200191906001019062000b03565b5b50905062000b30919062000b5c565b5090565b5b8082111562000b58576000818162000b4e919062000b7b565b5060010162000b35565b5090565b5b8082111562000b7757600081600090555060010162000b5d565b5090565b50805462000b899062000bc1565b6000825580601f1062000b9d575062000bbe565b601f01602090049060005260206000209081019062000bbd919062000b5c565b5b50565b6000600282049050600182168062000bda57607f821691505b6020821081141562000bf15762000bf062000bf7565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b615ae68062000c366000396000f3fe6080604052600436106101cd5760003560e01c806382f4731f116100f7578063b88d4fde11610095578063e5881a1d11610064578063e5881a1d1461060a578063e985e9c514610635578063f2fde38b14610672578063fe7602141461069b576101cd565b8063b88d4fde14610550578063c28c921214610579578063c62d7dad146105a4578063c87b56dd146105cd576101cd565b80638da5cb5b116100d15780638da5cb5b146104c757806395d89b41146104f2578063a22cb4651461051d578063ae23f46114610546576101cd565b806382f4731f146104465780638634fdda146104715780638c5448a11461049c576101cd565b80632a9084b11161016f578063659eddc31161013e578063659eddc3146103ab57806368e54f70146103d657806370a08231146103f2578063715018a61461042f576101cd565b80632a9084b11461031057806336b5f3b01461033b57806342842e0e146103455780636352211e1461036e576101cd565b8063095ea7b3116101ab578063095ea7b31461027757806318160ddd146102a057806323b872dd146102cb57806328dccd0c146102f4576101cd565b806301ffc9a7146101d257806306fdde031461020f578063081812fc1461023a575b600080fd5b3480156101de57600080fd5b506101f960048036038101906101f491906138db565b6106c4565b60405161020691906142ff565b60405180910390f35b34801561021b57600080fd5b506102246107a6565b604051610231919061431a565b60405180910390f35b34801561024657600080fd5b50610261600480360381019061025c9190613935565b610838565b60405161026e9190614298565b60405180910390f35b34801561028357600080fd5b5061029e60048036038101906102999190613852565b6108bd565b005b3480156102ac57600080fd5b506102b56109d5565b6040516102c2919061467c565b60405180910390f35b3480156102d757600080fd5b506102f260048036038101906102ed919061373c565b6109e6565b005b61030e60048036038101906103099190613892565b610a46565b005b34801561031c57600080fd5b50610325610e1b565b604051610332919061467c565b60405180910390f35b610343610e27565b005b34801561035157600080fd5b5061036c6004803603810190610367919061373c565b610f0a565b005b34801561037a57600080fd5b5061039560048036038101906103909190613935565b610f2a565b6040516103a29190614298565b60405180910390f35b3480156103b757600080fd5b506103c0610fdc565b6040516103cd91906142ff565b60405180910390f35b6103f060048036038101906103eb9190613935565b610fef565b005b3480156103fe57600080fd5b50610419600480360381019061041491906136a2565b611170565b604051610426919061467c565b60405180910390f35b34801561043b57600080fd5b50610444611228565b005b34801561045257600080fd5b5061045b6112b0565b604051610468919061467c565b60405180910390f35b34801561047d57600080fd5b506104866112b6565b60405161049391906142ff565b60405180910390f35b3480156104a857600080fd5b506104b16112c9565b6040516104be919061467c565b60405180910390f35b3480156104d357600080fd5b506104dc6112ce565b6040516104e99190614298565b60405180910390f35b3480156104fe57600080fd5b506105076112f8565b604051610514919061431a565b60405180910390f35b34801561052957600080fd5b50610544600480360381019061053f9190613812565b61138a565b005b61054e6113b1565b005b34801561055c57600080fd5b506105776004803603810190610572919061378f565b6115d8565b005b34801561058557600080fd5b5061058e61163a565b60405161059b91906142ff565b60405180910390f35b3480156105b057600080fd5b506105cb60048036038101906105c691906136a2565b61164d565b005b3480156105d957600080fd5b506105f460048036038101906105ef9190613935565b6116dd565b604051610601919061431a565b60405180910390f35b34801561061657600080fd5b5061061f6118e9565b60405161062c919061467c565b60405180910390f35b34801561064157600080fd5b5061065c600480360381019061065791906136fc565b6118ef565b60405161066991906142ff565b60405180910390f35b34801561067e57600080fd5b50610699600480360381019061069491906136a2565b611983565b005b3480156106a757600080fd5b506106c260048036038101906106bd9190613935565b611a7b565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061078f57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061079f575061079e82611c19565b5b9050919050565b6060600080546107b590614932565b80601f01602080910402602001604051908101604052809291908181526020018280546107e190614932565b801561082e5780601f106108035761010080835404028352916020019161082e565b820191906000526020600020905b81548152906001019060200180831161081157829003601f168201915b5050505050905090565b600061084382611c83565b610882576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108799061451c565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006108c882610f2a565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610939576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610930906145fc565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610958611cef565b73ffffffffffffffffffffffffffffffffffffffff161480610987575061098681610981611cef565b6118ef565b5b6109c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109bd9061449c565b60405180910390fd5b6109d08383611cf7565b505050565b60006109e16007611db0565b905090565b6109f76109f1611cef565b82611dbe565b610a36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2d9061463c565b60405180910390fd5b610a41838383611e9c565b505050565b600960009054906101000a900460ff16610a5f57600080fd5b600e81511015610a6e57600080fd5b6019610a80610a7b611cef565b611170565b1015610a8b57600080fd5b60005b600a811015610b5f576000828281518110610aac57610aab614a9c565b5b602002602001015190503373ffffffffffffffffffffffffffffffffffffffff16610ad682610f2a565b73ffffffffffffffffffffffffffffffffffffffff1614610af657600080fd5b6009821015610b3c576008821415610b22576006610b13826120f8565b14610b1d57600080fd5b610b37565b81610b2c826120f8565b14610b3657600080fd5b5b610b4b565b6104578110610b4a57600080fd5b5b508080610b5790614995565b915050610a8e565b5060006101a4604051602001610b7490614234565b6040516020818303038152906040528051906020012060001c610b9791906149de565b905060006101a4610ba96008546121b1565b604051602001610bb99190614015565b6040516020818303038152906040528051906020012060001c610bdc91906149de565b905060006101a4610bec846121b1565b604051602001610bfc9190614015565b6040516020818303038152906040528051906020012060001c610c1f91906149de565b90506000604590508385600a81518110610c3c57610c3b614a9c565b5b602002602001015114610c84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7b906145bc565b60405180910390fd5b60085485600b81518110610c9b57610c9a614a9c565b5b602002602001015114610ce3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cda9061443c565b60405180910390fd5b8085600c81518110610cf857610cf7614a9c565b5b602002602001015114610d40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d379061465c565b60405180910390fd5b8185600d81518110610d5557610d54614a9c565b5b602002602001015114610d9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d949061433c565b60405180910390fd5b6000610db360024761231290919063ffffffff16565b905060008111610dc257600080fd5b610dcc3382612328565b60005b6009811015610e1257610dff3361dead898481518110610df257610df1614a9c565b5b6020026020010151611e9c565b8080610e0a90614995565b915050610dcf565b50505050505050565b67011c37937e08000081565b610e2f611cef565b73ffffffffffffffffffffffffffffffffffffffff16610e4d6112ce565b73ffffffffffffffffffffffffffffffffffffffff1614610ea3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9a9061453c565b60405180910390fd5b600960009054906101000a900460ff1615610ebd57600080fd5b6000610ed360024761231290919063ffffffff16565b905060008111610ee257600080fd5b610eec3382612328565b6001600960006101000a81548160ff02191690831515021790555050565b610f25838383604051806020016040528060008152506115d8565b505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610fd3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fca906144dc565b60405180910390fd5b80915050919050565b600960029054906101000a900460ff1681565b6000610ff96109d5565b90506122b8828261100a9190614767565b111561104b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611042906143fc565b60405180910390fd5b6122b8811115611090576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611087906143fc565b60405180910390fd5b600a826110a361109e611cef565b611170565b6110ad9190614767565b11156110ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e59061447c565b60405180910390fd5b6111098267011c37937e0800006123d990919063ffffffff16565b34101580611123575061045782826111219190614767565b105b611162576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611159906145dc565b60405180910390fd5b61116c33836123ef565b5050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156111e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d8906144bc565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611230611cef565b73ffffffffffffffffffffffffffffffffffffffff1661124e6112ce565b73ffffffffffffffffffffffffffffffffffffffff16146112a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129b9061453c565b60405180910390fd5b6112ae600061241b565b565b6122b881565b600960009054906101000a900460ff1681565b600a81565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461130790614932565b80601f016020809104026020016040519081016040528092919081815260200182805461133390614932565b80156113805780601f1061135557610100808354040283529160200191611380565b820191906000526020600020905b81548152906001019060200180831161136357829003601f168201915b5050505050905090565b600960019054906101000a900460ff166113a357600080fd5b6113ad82826124e1565b5050565b600960029054906101000a900460ff16156113cb57600080fd5b6113ea73f7dcf798971452737f1e6196d36dd215b43b428d60006123ef565b611409736cd2d84298f731fa443061255a9a84a09dbca76960016123ef565b61142873a442ddf27063320789b59a8fdca5b849cd2cdeac60026123ef565b6114477372fae93d08a060a7f0a8919708c0db74ca46cbb660036123ef565b61146673c46db2d89327d4c41eb81c43ed5e3dff111f9a8f60046123ef565b61148573cb96594aba4627e6064731b0098dc97547b397be60056123ef565b6114a4734385ff4b76d8a7fa8075ed1ee27c82ffe095145660066123ef565b6114c373af469c4a0914938e6149cf621c54fb4b1ec0c20260076123ef565b6114e273e9f1e4dc4d1f3f62d54d70ea73a8c9b4cd2bde2d60086123ef565b61150173e1d29d0a39962a9a8d2a297ebe82e166f8b8ec1860096123ef565b61152073abf107de3e01c7c257e64e0a18d60a733aad395d600a6123ef565b61153f73442dccee68425828c106a3662014b4f131e3bd9b600b6123ef565b61155e73d387a6e4e84a6c86bd90c158c6028a58cc8ac459600c6123ef565b61157d737500935c3c34d0d48e9c388b3dffa0abbda52633600d6123ef565b61159c7311360f0c5552443b33720a44408aba01a809905e600e6123ef565b6115bb73c5f59709974262c4afacc5386287820bdbc7eb3a600f6123ef565b6001600960026101000a81548160ff021916908315150217905550565b6115e96115e3611cef565b83611dbe565b611628576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161f9061463c565b60405180910390fd5b61163484848484612662565b50505050565b600960019054906101000a900460ff1681565b6122b86116586109d5565b1015611699576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116909061445c565b60405180910390fd5b80600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60606116e882611c83565b611727576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171e9061459c565b60405180910390fd5b6000611732836120f8565b90506000600a828154811061174a57611749614a9c565b5b90600052602060002001805461175f90614932565b80601f016020809104026020016040519081016040528092919081815260200182805461178b90614932565b80156117d85780601f106117ad576101008083540402835291602001916117d8565b820191906000526020600020905b8154815290600101906020018083116117bb57829003601f168201915b5050505050905060006117f26117ed866126be565b6121b1565b90506122b86117ff6109d5565b1015611876576040518060400160405280601a81526020017f6f4e2d634861496e2072455665416c206166546552204d696e5400000000000081525091506040518060400160405280601a81526020017f6f4e2d634861496e2072455665416c206166546552204d696e5400000000000081525090505b60006118b6611884876121b1565b848461188f8a612745565b6040516020016118a29493929190614103565b604051602081830303815290604052612ea4565b90506000816040516020016118cb91906141fd565b60405160208183030381529060405290508095505050505050919050565b61045781565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61198b611cef565b73ffffffffffffffffffffffffffffffffffffffff166119a96112ce565b73ffffffffffffffffffffffffffffffffffffffff16146119ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f69061453c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611a6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a669061437c565b60405180910390fd5b611a788161241b565b50565b6122b8611a866109d5565b1015611ac7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611abe9061445c565b60405180910390fd5b6000611ad9611ad4611cef565b611170565b11611b19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b109061455c565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff16600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e836040518263ffffffff1660e01b8152600401611b8b919061467c565b60206040518083038186803b158015611ba357600080fd5b505afa158015611bb7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611bdb91906136cf565b73ffffffffffffffffffffffffffffffffffffffff1614611bfb57600080fd5b6001600960016101000a81548160ff02191690831515021790555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611d6a83610f2a565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b6000611dc982611c83565b611e08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dff9061441c565b60405180910390fd5b6000611e1383610f2a565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611e8257508373ffffffffffffffffffffffffffffffffffffffff16611e6a84610838565b73ffffffffffffffffffffffffffffffffffffffff16145b80611e935750611e9281856118ef565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611ebc82610f2a565b73ffffffffffffffffffffffffffffffffffffffff1614611f12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f099061457c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611f82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f79906143bc565b60405180910390fd5b611f8d83838361301d565b611f98600082611cf7565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611fe89190614848565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461203f9190614767565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000806065612106846121b1565b604051602001612116919061418e565b6040516020818303038152906040528051906020012060001c61213991906149de565b905060006019821061214a57600190505b6032821061215757600290505b604b821061216457600390505b605a821061217157600490505b6060821061217e57600590505b6063821061218b57600690505b604582141561219957600790505b60648211156121a757600890505b8092505050919050565b606060008214156121f9576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061230d565b600082905060005b6000821461222b57808061221490614995565b915050600a8261222491906147bd565b9150612201565b60008167ffffffffffffffff81111561224757612246614acb565b5b6040519080825280601f01601f1916602001820160405280156122795781602001600182028036833780820191505090505b5090505b60008514612306576001826122929190614848565b9150600a856122a191906149de565b60306122ad9190614767565b60f81b8183815181106122c3576122c2614a9c565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856122ff91906147bd565b945061227d565b8093505050505b919050565b6000818361232091906147bd565b905092915050565b60008273ffffffffffffffffffffffffffffffffffffffff168260405161234e9061421f565b60006040518083038185875af1925050503d806000811461238b576040519150601f19603f3d011682016040523d82523d6000602084013e612390565b606091505b50509050806123d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123cb9061461c565b60405180910390fd5b505050565b600081836123e791906147ee565b905092915050565b60005b818110156124165761240383613091565b808061240e90614995565b9150506123f2565b505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6124e9611cef565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612557576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161254e906143dc565b60405180910390fd5b8060056000612564611cef565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16612611611cef565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161265691906142ff565b60405180910390a35050565b61266d848484611e9c565b612679848484846130e2565b6126b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126af9061435c565b60405180910390fd5b50505050565b60008060656126cc846121b1565b6040516020016126dc91906141b0565b6040516020818303038152906040528051906020012060001c6126ff91906149de565b9050600060019050600f821061271457600290505b601e821061272157600390505b605a821061272e57600490505b6063821061273b57600590505b8092505050919050565b60606000612752836120f8565b90506000600b828154811061276a57612769614a9c565b5b90600052602060002001805461277f90614932565b80601f01602080910402602001604051908101604052809291908181526020018280546127ab90614932565b80156127f85780601f106127cd576101008083540402835291602001916127f8565b820191906000526020600020905b8154815290600101906020018083116127db57829003601f168201915b505050505090506000600c838154811061281557612814614a9c565b5b90600052602060002001805461282a90614932565b80601f016020809104026020016040519081016040528092919081815260200182805461285690614932565b80156128a35780601f10612878576101008083540402835291602001916128a3565b820191906000526020600020905b81548152906001019060200180831161288657829003601f168201915b5050505050905060006040518060800160405280604d81526020016158ac604d913990506128cf6134ee565b60405180610100016040528060c981526020016158f960c99139816000600e81106128fd576128fc614a9c565b5b602002018190525083816001600e811061291a57612919614a9c565b5b60200201819052506040518060400160405280600181526020017f3b00000000000000000000000000000000000000000000000000000000000000815250816002600e811061296c5761296b614a9c565b5b602002018190525082816003600e811061298957612988614a9c565b5b60200201819052506040518060400160405280600181526020017f3b00000000000000000000000000000000000000000000000000000000000000815250816004600e81106129db576129da614a9c565b5b602002018190525083816005600e81106129f8576129f7614a9c565b5b60200201819052506040518060a00160405280606a8152602001615a47606a9139816006600e8110612a2d57612a2c614a9c565b5b602002018190525082816007600e8110612a4a57612a49614a9c565b5b60200201819052506040518060400160405280600181526020017f3b00000000000000000000000000000000000000000000000000000000000000815250816008600e8110612a9c57612a9b614a9c565b5b602002018190525083816009600e8110612ab957612ab8614a9c565b5b60200201819052506040518060400160405280600181526020017f3b0000000000000000000000000000000000000000000000000000000000000081525081600a600e8110612b0b57612b0a614a9c565b5b60200201819052508281600b600e8110612b2857612b27614a9c565b5b6020020181905250604051806080016040528060458152602001615a026045913981600c600e8110612b5d57612b5c614a9c565b5b602002018190525060068514612c4b576000600d808054905089612b8191906149de565b81548110612b9257612b91614a9c565b5b906000526020600020018054612ba790614932565b80601f0160208091040260200160405190810160405280929190818152602001828054612bd390614932565b8015612c205780601f10612bf557610100808354040283529160200191612c20565b820191906000526020600020905b815481529060010190602001808311612c0357829003601f168201915b5050505050905080604051602001612c38919061426b565b6040516020818303038152906040529250505b8181600d600e8110612c6057612c5f614a9c565b5b60200201819052506000816000600e8110612c7e57612c7d614a9c565b5b6020020151826001600e8110612c9757612c96614a9c565b5b6020020151836002600e8110612cb057612caf614a9c565b5b6020020151846003600e8110612cc957612cc8614a9c565b5b6020020151856004600e8110612ce257612ce1614a9c565b5b6020020151866005600e8110612cfb57612cfa614a9c565b5b6020020151876006600e8110612d1457612d13614a9c565b5b6020020151886007600e8110612d2d57612d2c614a9c565b5b6020020151896008600e8110612d4657612d45614a9c565b5b6020020151604051602001612d6399989796959493929190614084565b604051602081830303815290604052905080826009600e8110612d8957612d88614a9c565b5b602002015183600a600e8110612da257612da1614a9c565b5b602002015184600b600e8110612dbb57612dba614a9c565b5b602002015185600c600e8110612dd457612dd3614a9c565b5b602002015186600d600e8110612ded57612dec614a9c565b5b6020020151604051602001612e079695949392919061402c565b60405160208183030381529060405290506122b8612e236109d5565b1015612e4a57604051602001612e38906141d2565b60405160208183030381529060405290505b6000612e7482604051602001612e609190614015565b604051602081830303815290604052612ea4565b604051602001612e849190614249565b604051602081830303815290604052905080975050505050505050919050565b6060600082511415612ec757604051806020016040528060008152509050613018565b60006040518060600160405280604081526020016159c26040913990506000600360028551612ef69190614767565b612f0091906147bd565b6004612f0c91906147ee565b90506000602082612f1d9190614767565b67ffffffffffffffff811115612f3657612f35614acb565b5b6040519080825280601f01601f191660200182016040528015612f685781602001600182028036833780820191505090505b509050818152600183018586518101602084015b81831015612fd7576003830192508251603f8160121c168501518253600182019150603f81600c1c168501518253600182019150603f8160061c168501518253600182019150603f8116850151825360018201915050612f7c565b600389510660018114612ff157600281146130015761300c565b613d3d60f01b600283035261300c565b603d60f81b60018303525b50505050508093505050505b919050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614806130645750600960019054906101000a900460ff165b61306d57600080fd5b6101a48161307b91906149de565b60088190555061308c838383613279565b505050565b600061309b6109d5565b90506130a7600761327e565b6130b18282613294565b807fdcfa76fe24696611c02d3c15270dd1b5e8e3e85739650d972fedde748be10b1860405160405180910390a25050565b60006131038473ffffffffffffffffffffffffffffffffffffffff166132b2565b1561326c578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261312c611cef565b8786866040518563ffffffff1660e01b815260040161314e94939291906142b3565b602060405180830381600087803b15801561316857600080fd5b505af192505050801561319957506040513d601f19601f820116820180604052508101906131969190613908565b60015b61321c573d80600081146131c9576040519150601f19603f3d011682016040523d82523d6000602084013e6131ce565b606091505b50600081511415613214576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161320b9061435c565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613271565b600190505b949350505050565b505050565b6001816000016000828254019250508190555050565b6132ae8282604051806020016040528060008152506132c5565b5050565b600080823b905060008111915050919050565b6132cf8383613320565b6132dc60008484846130e2565b61331b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133129061435c565b60405180910390fd5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613390576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613387906144fc565b60405180910390fd5b61339981611c83565b156133d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133d09061439c565b60405180910390fd5b6133e56000838361301d565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546134359190614767565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b604051806101c00160405280600e905b60608152602001906001900390816134fe5790505090565b6000613529613524846146bc565b614697565b9050808382526020820190508285602086028201111561354c5761354b614aff565b5b60005b8581101561357c5781613562888261368d565b84526020840193506020830192505060018101905061354f565b5050509392505050565b6000613599613594846146e8565b614697565b9050828152602081018484840111156135b5576135b4614b04565b5b6135c08482856148f0565b509392505050565b6000813590506135d78161584f565b92915050565b6000815190506135ec8161584f565b92915050565b600082601f83011261360757613606614afa565b5b8135613617848260208601613516565b91505092915050565b60008135905061362f81615866565b92915050565b6000813590506136448161587d565b92915050565b6000815190506136598161587d565b92915050565b600082601f83011261367457613673614afa565b5b8135613684848260208601613586565b91505092915050565b60008135905061369c81615894565b92915050565b6000602082840312156136b8576136b7614b0e565b5b60006136c6848285016135c8565b91505092915050565b6000602082840312156136e5576136e4614b0e565b5b60006136f3848285016135dd565b91505092915050565b6000806040838503121561371357613712614b0e565b5b6000613721858286016135c8565b9250506020613732858286016135c8565b9150509250929050565b60008060006060848603121561375557613754614b0e565b5b6000613763868287016135c8565b9350506020613774868287016135c8565b92505060406137858682870161368d565b9150509250925092565b600080600080608085870312156137a9576137a8614b0e565b5b60006137b7878288016135c8565b94505060206137c8878288016135c8565b93505060406137d98782880161368d565b925050606085013567ffffffffffffffff8111156137fa576137f9614b09565b5b6138068782880161365f565b91505092959194509250565b6000806040838503121561382957613828614b0e565b5b6000613837858286016135c8565b925050602061384885828601613620565b9150509250929050565b6000806040838503121561386957613868614b0e565b5b6000613877858286016135c8565b92505060206138888582860161368d565b9150509250929050565b6000602082840312156138a8576138a7614b0e565b5b600082013567ffffffffffffffff8111156138c6576138c5614b09565b5b6138d2848285016135f2565b91505092915050565b6000602082840312156138f1576138f0614b0e565b5b60006138ff84828501613635565b91505092915050565b60006020828403121561391e5761391d614b0e565b5b600061392c8482850161364a565b91505092915050565b60006020828403121561394b5761394a614b0e565b5b60006139598482850161368d565b91505092915050565b61396b8161487c565b82525050565b61397a8161488e565b82525050565b600061398b82614719565b613995818561472f565b93506139a58185602086016148ff565b6139ae81614b13565b840191505092915050565b60006139c482614724565b6139ce818561474b565b93506139de8185602086016148ff565b6139e781614b13565b840191505092915050565b60006139fd82614724565b613a07818561475c565b9350613a178185602086016148ff565b80840191505092915050565b6000613a3060098361475c565b9150613a3b82614b24565b600982019050919050565b6000613a5360188361474b565b9150613a5e82614b4d565b602082019050919050565b6000613a7660328361474b565b9150613a8182614b76565b604082019050919050565b6000613a9960268361474b565b9150613aa482614bc5565b604082019050919050565b6000613abc601c8361474b565b9150613ac782614c14565b602082019050919050565b6000613adf608d8361475c565b9150613aea82614c3d565b608d82019050919050565b6000613b02600d8361475c565b9150613b0d82614cfe565b600d82019050919050565b6000613b2560038361475c565b9150613b3082614d27565b600382019050919050565b6000613b4860098361475c565b9150613b5382614d50565b600982019050919050565b6000613b6b60248361474b565b9150613b7682614d79565b604082019050919050565b6000613b8e60198361474b565b9150613b9982614dc8565b602082019050919050565b6000613bb1601d8361474b565b9150613bbc82614df1565b602082019050919050565b6000613bd4602c8361474b565b9150613bdf82614e1a565b604082019050919050565b6000613bf760168361474b565b9150613c0282614e69565b602082019050919050565b6000613c1a60278361474b565b9150613c2582614e92565b604082019050919050565b6000613c3d600b8361474b565b9150613c4882614ee1565b602082019050919050565b6000613c616102798361475c565b9150613c6c82614f0a565b61027982019050919050565b6000613c8560388361474b565b9150613c9082615211565b604082019050919050565b6000613ca8602a8361474b565b9150613cb382615260565b604082019050919050565b6000613ccb60298361474b565b9150613cd6826152af565b604082019050919050565b6000613cee60028361475c565b9150613cf9826152fe565b600282019050919050565b6000613d1160208361474b565b9150613d1c82615327565b602082019050919050565b6000613d34602c8361474b565b9150613d3f82615350565b604082019050919050565b6000613d5760208361474b565b9150613d628261539f565b602082019050919050565b6000613d7a60168361474b565b9150613d85826153c8565b602082019050919050565b6000613d9d60298361474b565b9150613da8826153f1565b604082019050919050565b6000613dc060018361475c565b9150613dcb82615440565b600182019050919050565b6000613de3602f8361474b565b9150613dee82615469565b604082019050919050565b6000613e0660158361474b565b9150613e11826154b8565b602082019050919050565b6000613e2960878361475c565b9150613e34826154e1565b608782019050919050565b6000613e4c602a8361475c565b9150613e57826155a2565b602a82019050919050565b6000613e6f600e8361475c565b9150613e7a826155f1565b600e82019050919050565b6000613e9260158361474b565b9150613e9d8261561a565b602082019050919050565b6000613eb560218361474b565b9150613ec082615643565b604082019050919050565b6000613ed8601d8361475c565b9150613ee382615692565b601d82019050919050565b6000613efb600083614740565b9150613f06826156bb565b600082019050919050565b6000613f1e60108361474b565b9150613f29826156be565b602082019050919050565b6000613f4160318361474b565b9150613f4c826156e7565b604082019050919050565b6000613f64602a8361475c565b9150613f6f82615736565b602a82019050919050565b6000613f8760108361475c565b9150613f9282615785565b601082019050919050565b6000613faa60178361474b565b9150613fb5826157ae565b602082019050919050565b6000613fcd601a8361475c565b9150613fd8826157d7565b601a82019050919050565b6000613ff0602e8361475c565b9150613ffb82615800565b602e82019050919050565b61400f816148e6565b82525050565b600061402182846139f2565b915081905092915050565b600061403882896139f2565b915061404482886139f2565b915061405082876139f2565b915061405c82866139f2565b915061406882856139f2565b915061407482846139f2565b9150819050979650505050505050565b6000614090828c6139f2565b915061409c828b6139f2565b91506140a8828a6139f2565b91506140b482896139f2565b91506140c082886139f2565b91506140cc82876139f2565b91506140d882866139f2565b91506140e482856139f2565b91506140f082846139f2565b91508190509a9950505050505050505050565b600061410e82613af5565b915061411a82876139f2565b915061412582613e3f565b915061413082613db3565b915061413b82613e1c565b915061414782866139f2565b915061415282613f57565b915061415e82856139f2565b915061416982613e62565b915061417582846139f2565b915061418082613ce1565b915081905095945050505050565b600061419982613b18565b91506141a582846139f2565b915081905092915050565b60006141bb82613b3b565b91506141c782846139f2565b915081905092915050565b60006141dd82613c53565b91506141e882613db3565b91506141f382613ad2565b9150819050919050565b600061420882613ecb565b915061421482846139f2565b915081905092915050565b600061422a82613eee565b9150819050919050565b600061423f82613f7a565b9150819050919050565b600061425482613fc0565b915061426082846139f2565b915081905092915050565b600061427682613fe3565b915061428282846139f2565b915061428d82613a23565b915081905092915050565b60006020820190506142ad6000830184613962565b92915050565b60006080820190506142c86000830187613962565b6142d56020830186613962565b6142e26040830185614006565b81810360608301526142f48184613980565b905095945050505050565b60006020820190506143146000830184613971565b92915050565b6000602082019050818103600083015261433481846139b9565b905092915050565b6000602082019050818103600083015261435581613a46565b9050919050565b6000602082019050818103600083015261437581613a69565b9050919050565b6000602082019050818103600083015261439581613a8c565b9050919050565b600060208201905081810360008301526143b581613aaf565b9050919050565b600060208201905081810360008301526143d581613b5e565b9050919050565b600060208201905081810360008301526143f581613b81565b9050919050565b6000602082019050818103600083015261441581613ba4565b9050919050565b6000602082019050818103600083015261443581613bc7565b9050919050565b6000602082019050818103600083015261445581613bea565b9050919050565b6000602082019050818103600083015261447581613c0d565b9050919050565b6000602082019050818103600083015261449581613c30565b9050919050565b600060208201905081810360008301526144b581613c78565b9050919050565b600060208201905081810360008301526144d581613c9b565b9050919050565b600060208201905081810360008301526144f581613cbe565b9050919050565b6000602082019050818103600083015261451581613d04565b9050919050565b6000602082019050818103600083015261453581613d27565b9050919050565b6000602082019050818103600083015261455581613d4a565b9050919050565b6000602082019050818103600083015261457581613d6d565b9050919050565b6000602082019050818103600083015261459581613d90565b9050919050565b600060208201905081810360008301526145b581613dd6565b9050919050565b600060208201905081810360008301526145d581613df9565b9050919050565b600060208201905081810360008301526145f581613e85565b9050919050565b6000602082019050818103600083015261461581613ea8565b9050919050565b6000602082019050818103600083015261463581613f11565b9050919050565b6000602082019050818103600083015261465581613f34565b9050919050565b6000602082019050818103600083015261467581613f9d565b9050919050565b60006020820190506146916000830184614006565b92915050565b60006146a16146b2565b90506146ad8282614964565b919050565b6000604051905090565b600067ffffffffffffffff8211156146d7576146d6614acb565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561470357614702614acb565b5b61470c82614b13565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000614772826148e6565b915061477d836148e6565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156147b2576147b1614a0f565b5b828201905092915050565b60006147c8826148e6565b91506147d3836148e6565b9250826147e3576147e2614a3e565b5b828204905092915050565b60006147f9826148e6565b9150614804836148e6565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561483d5761483c614a0f565b5b828202905092915050565b6000614853826148e6565b915061485e836148e6565b92508282101561487157614870614a0f565b5b828203905092915050565b6000614887826148c6565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561491d578082015181840152602081019050614902565b8381111561492c576000848401525b50505050565b6000600282049050600182168061494a57607f821691505b6020821081141561495e5761495d614a6d565b5b50919050565b61496d82614b13565b810181811067ffffffffffffffff8211171561498c5761498b614acb565b5b80604052505050565b60006149a0826148e6565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156149d3576149d2614a0f565b5b600182019050919050565b60006149e9826148e6565b91506149f4836148e6565b925082614a0457614a03614a3e565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f222f3e3c2f7376673e0000000000000000000000000000000000000000000000600082015250565b7f6f6f6f6f6f682c2074727920616761696e6e6e6e207365720000000000000000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f733c2f746578743e203c7465787420783d223530252220793d2234352522207460008201527f6578742d616e63686f723d226d6964646c652220666f6e742d66616d696c793d60208201527f226d6f6e6f73706163652220666f6e742d7765696768743d22626f6c6422206660408201527f696c6c3d2275726c28236c696e6561722d6772616469656e7429223e47656d7360608201527f3c2f746578743e3c2f7376673e00000000000000000000000000000000000000608082015250565b7f7b226e616d65223a2247656d2000000000000000000000000000000000000000600082015250565b7f47454d0000000000000000000000000000000000000000000000000000000000600082015250565b7f47454d2047524144450000000000000000000000000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f67656d732072206d696e7465642073696c6c792073636176656e676572000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f6f6f6f6f6f682c2074727920616761696e6e2073657200000000000000000000600082015250565b7f6e6f74207065726d697474656420756e74696c20616c6c2067656d732061726560008201527f206d696e74656400000000000000000000000000000000000000000000000000602082015250565b7f6772656564792c20736572000000000000000000000000000000000000000000600082015250565b7f3c73766720786d6c6e733d22687474703a2f2f7777772e77332e6f72672f323060008201527f30302f737667222077696474683d2231303022206865696768743d223130302260208201527f3e3c646566733e3c6c696e6561724772616469656e742069643d226c696e656160408201527f722d6772616469656e74222078313d2230222079313d2230222078323d22313060608201527f3025222079323d223022203e3c73746f70206f66667365743d2230223e3c616e60808201527f696d617465206174747269627574654e616d653d2273746f702d636f6c6f722260a08201527f2076616c7565733d22233939306334313b236631346338613b2339393063343160c08201527f22206475723d2231732220726570656174436f756e743d22696e646566696e6960e08201527f746522202f3e3c2f73746f703e3c73746f70206f66667365743d2231223e3c616101008201527f6e696d617465206174747269627574654e616d653d2273746f702d636f6c6f726101208201527f222076616c7565733d22236631346338613b233939306334313b2366313463386101408201527f6122206475723d2231732220726570656174436f756e743d22696e646566696e6101608201527f69746522202f3e3c2f73746f703e3c2f6c696e6561724772616469656e743e3c6101808201527f2f646566733e3c706f6c79676f6e2066696c6c3d2275726c28236c696e6561726101a08201527f2d6772616469656e74292220706f696e74733d2231322e352c37302032352c356101c08201527f352037352c35352038372e352c37302037352c38352032352c3835222f3e3c746101e08201527f65787420783d223530252220793d223235252220746578742d616e63686f723d6102008201527f226d6964646c652220666f6e742d66616d696c793d226d6f6e6f7370616365226102208201527f20666f6e742d7765696768743d22626f6c64222066696c6c3d2275726c28236c6102408201527f696e6561722d6772616469656e7429223e4b696e67205a65760000000000000061026082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f227d000000000000000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f6e65656420746f206f776e20612067656d2c2073657200000000000000000000600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f2700000000000000000000000000000000000000000000000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f6f6f6f6f6f682c2074727920616761696e207365720000000000000000000000600082015250565b7f732074726561737572652074726f76652e20436f6c6c6563742067656d732c2060008201527f66696e6420636c7565732c20736f6c76652070757a7a6c65732e204f6e2d636860208201527f61696e2c206e6f20776562736974652c206e6f20495046532e222c202261747460408201527f72696275746573223a5b7b2274726169745f74797065223a2267656d222c227660608201527f616c7565223a2200000000000000000000000000000000000000000000000000608082015250565b7f222c20226465736372697074696f6e223a224120717565737420746f2066696e60008201527f64204b696e67205a657600000000000000000000000000000000000000000000602082015250565b7f227d5d2c2022696d616765223a22000000000000000000000000000000000000600082015250565b7f6e6f7420656e6f7567682065746865722c207365720000000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c000000600082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f227d2c207b2274726169745f74797065223a225261726974792047726164652260008201527f2c2276616c7565223a2200000000000000000000000000000000000000000000602082015250565b7f4b494e47205a45562050494e204b455900000000000000000000000000000000600082015250565b7f6f6f6f6f6f682c2074727920616761696e6e6e20736572000000000000000000600082015250565b7f646174613a696d6167652f7376672b786d6c3b6261736536342c000000000000600082015250565b7f3c706f6c79676f6e2066696c6c3d2275726c28236c696e6561722d677261646960008201527f656e74292220706f696e74733d22000000000000000000000000000000000000602082015250565b6158588161487c565b811461586357600080fd5b50565b61586f8161488e565b811461587a57600080fd5b50565b6158868161489a565b811461589157600080fd5b50565b61589d816148e6565b81146158a857600080fd5b5056fe3c656c6c697073652066696c6c3d2275726c28236c696e6561722d6772616469656e7429222063783d223530222063793d223530222072783d223330222072793d223230222f3e3c2f7376673e3c73766720786d6c6e733d22687474703a2f2f7777772e77332e6f72672f323030302f737667222077696474683d2231303022206865696768743d22313030223e3c646566733e3c6c696e6561724772616469656e742069643d226c696e6561722d6772616469656e74222078313d2230222079313d2230222078323d2231303025222079323d223022203e3c73746f70206f66667365743d2230223e3c616e696d617465206174747269627574654e616d653d2273746f702d636f6c6f72222076616c7565733d224142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2f22206475723d2231732220726570656174436f756e743d22696e646566696e69746522202f3e3c2f73746f703e3c2f6c696e6561724772616469656e743e3c2f646566733e22206475723d2231732220726570656174436f756e743d22696e646566696e69746522202f3e3c2f73746f703e3c73746f70206f66667365743d2231223e3c616e696d617465206174747269627574654e616d653d2273746f702d636f6c6f72222076616c7565733d22a26469706673582212204a94b7f2b2c03704485a735e395636fa66d334d34c10df8d0180acd106dcad3464736f6c6343000807003334302c32352036302c32352038372e352c34342038372e352c35352036302c37352034302c37352031322e352c35352031322e352c343535302c31322e352037352c33302037352c37302035302c38372e352032352c37302032352c333031322e352c35302032352c33352037352c33352038372e352c35302037352c36352032352c363534302c32352036302c32352038372e352c35302036302c37352034302c37352031322e352c3530

Deployed Bytecode

0x6080604052600436106101cd5760003560e01c806382f4731f116100f7578063b88d4fde11610095578063e5881a1d11610064578063e5881a1d1461060a578063e985e9c514610635578063f2fde38b14610672578063fe7602141461069b576101cd565b8063b88d4fde14610550578063c28c921214610579578063c62d7dad146105a4578063c87b56dd146105cd576101cd565b80638da5cb5b116100d15780638da5cb5b146104c757806395d89b41146104f2578063a22cb4651461051d578063ae23f46114610546576101cd565b806382f4731f146104465780638634fdda146104715780638c5448a11461049c576101cd565b80632a9084b11161016f578063659eddc31161013e578063659eddc3146103ab57806368e54f70146103d657806370a08231146103f2578063715018a61461042f576101cd565b80632a9084b11461031057806336b5f3b01461033b57806342842e0e146103455780636352211e1461036e576101cd565b8063095ea7b3116101ab578063095ea7b31461027757806318160ddd146102a057806323b872dd146102cb57806328dccd0c146102f4576101cd565b806301ffc9a7146101d257806306fdde031461020f578063081812fc1461023a575b600080fd5b3480156101de57600080fd5b506101f960048036038101906101f491906138db565b6106c4565b60405161020691906142ff565b60405180910390f35b34801561021b57600080fd5b506102246107a6565b604051610231919061431a565b60405180910390f35b34801561024657600080fd5b50610261600480360381019061025c9190613935565b610838565b60405161026e9190614298565b60405180910390f35b34801561028357600080fd5b5061029e60048036038101906102999190613852565b6108bd565b005b3480156102ac57600080fd5b506102b56109d5565b6040516102c2919061467c565b60405180910390f35b3480156102d757600080fd5b506102f260048036038101906102ed919061373c565b6109e6565b005b61030e60048036038101906103099190613892565b610a46565b005b34801561031c57600080fd5b50610325610e1b565b604051610332919061467c565b60405180910390f35b610343610e27565b005b34801561035157600080fd5b5061036c6004803603810190610367919061373c565b610f0a565b005b34801561037a57600080fd5b5061039560048036038101906103909190613935565b610f2a565b6040516103a29190614298565b60405180910390f35b3480156103b757600080fd5b506103c0610fdc565b6040516103cd91906142ff565b60405180910390f35b6103f060048036038101906103eb9190613935565b610fef565b005b3480156103fe57600080fd5b50610419600480360381019061041491906136a2565b611170565b604051610426919061467c565b60405180910390f35b34801561043b57600080fd5b50610444611228565b005b34801561045257600080fd5b5061045b6112b0565b604051610468919061467c565b60405180910390f35b34801561047d57600080fd5b506104866112b6565b60405161049391906142ff565b60405180910390f35b3480156104a857600080fd5b506104b16112c9565b6040516104be919061467c565b60405180910390f35b3480156104d357600080fd5b506104dc6112ce565b6040516104e99190614298565b60405180910390f35b3480156104fe57600080fd5b506105076112f8565b604051610514919061431a565b60405180910390f35b34801561052957600080fd5b50610544600480360381019061053f9190613812565b61138a565b005b61054e6113b1565b005b34801561055c57600080fd5b506105776004803603810190610572919061378f565b6115d8565b005b34801561058557600080fd5b5061058e61163a565b60405161059b91906142ff565b60405180910390f35b3480156105b057600080fd5b506105cb60048036038101906105c691906136a2565b61164d565b005b3480156105d957600080fd5b506105f460048036038101906105ef9190613935565b6116dd565b604051610601919061431a565b60405180910390f35b34801561061657600080fd5b5061061f6118e9565b60405161062c919061467c565b60405180910390f35b34801561064157600080fd5b5061065c600480360381019061065791906136fc565b6118ef565b60405161066991906142ff565b60405180910390f35b34801561067e57600080fd5b50610699600480360381019061069491906136a2565b611983565b005b3480156106a757600080fd5b506106c260048036038101906106bd9190613935565b611a7b565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061078f57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061079f575061079e82611c19565b5b9050919050565b6060600080546107b590614932565b80601f01602080910402602001604051908101604052809291908181526020018280546107e190614932565b801561082e5780601f106108035761010080835404028352916020019161082e565b820191906000526020600020905b81548152906001019060200180831161081157829003601f168201915b5050505050905090565b600061084382611c83565b610882576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108799061451c565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006108c882610f2a565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610939576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610930906145fc565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610958611cef565b73ffffffffffffffffffffffffffffffffffffffff161480610987575061098681610981611cef565b6118ef565b5b6109c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109bd9061449c565b60405180910390fd5b6109d08383611cf7565b505050565b60006109e16007611db0565b905090565b6109f76109f1611cef565b82611dbe565b610a36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2d9061463c565b60405180910390fd5b610a41838383611e9c565b505050565b600960009054906101000a900460ff16610a5f57600080fd5b600e81511015610a6e57600080fd5b6019610a80610a7b611cef565b611170565b1015610a8b57600080fd5b60005b600a811015610b5f576000828281518110610aac57610aab614a9c565b5b602002602001015190503373ffffffffffffffffffffffffffffffffffffffff16610ad682610f2a565b73ffffffffffffffffffffffffffffffffffffffff1614610af657600080fd5b6009821015610b3c576008821415610b22576006610b13826120f8565b14610b1d57600080fd5b610b37565b81610b2c826120f8565b14610b3657600080fd5b5b610b4b565b6104578110610b4a57600080fd5b5b508080610b5790614995565b915050610a8e565b5060006101a4604051602001610b7490614234565b6040516020818303038152906040528051906020012060001c610b9791906149de565b905060006101a4610ba96008546121b1565b604051602001610bb99190614015565b6040516020818303038152906040528051906020012060001c610bdc91906149de565b905060006101a4610bec846121b1565b604051602001610bfc9190614015565b6040516020818303038152906040528051906020012060001c610c1f91906149de565b90506000604590508385600a81518110610c3c57610c3b614a9c565b5b602002602001015114610c84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7b906145bc565b60405180910390fd5b60085485600b81518110610c9b57610c9a614a9c565b5b602002602001015114610ce3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cda9061443c565b60405180910390fd5b8085600c81518110610cf857610cf7614a9c565b5b602002602001015114610d40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d379061465c565b60405180910390fd5b8185600d81518110610d5557610d54614a9c565b5b602002602001015114610d9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d949061433c565b60405180910390fd5b6000610db360024761231290919063ffffffff16565b905060008111610dc257600080fd5b610dcc3382612328565b60005b6009811015610e1257610dff3361dead898481518110610df257610df1614a9c565b5b6020026020010151611e9c565b8080610e0a90614995565b915050610dcf565b50505050505050565b67011c37937e08000081565b610e2f611cef565b73ffffffffffffffffffffffffffffffffffffffff16610e4d6112ce565b73ffffffffffffffffffffffffffffffffffffffff1614610ea3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9a9061453c565b60405180910390fd5b600960009054906101000a900460ff1615610ebd57600080fd5b6000610ed360024761231290919063ffffffff16565b905060008111610ee257600080fd5b610eec3382612328565b6001600960006101000a81548160ff02191690831515021790555050565b610f25838383604051806020016040528060008152506115d8565b505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610fd3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fca906144dc565b60405180910390fd5b80915050919050565b600960029054906101000a900460ff1681565b6000610ff96109d5565b90506122b8828261100a9190614767565b111561104b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611042906143fc565b60405180910390fd5b6122b8811115611090576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611087906143fc565b60405180910390fd5b600a826110a361109e611cef565b611170565b6110ad9190614767565b11156110ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e59061447c565b60405180910390fd5b6111098267011c37937e0800006123d990919063ffffffff16565b34101580611123575061045782826111219190614767565b105b611162576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611159906145dc565b60405180910390fd5b61116c33836123ef565b5050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156111e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d8906144bc565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611230611cef565b73ffffffffffffffffffffffffffffffffffffffff1661124e6112ce565b73ffffffffffffffffffffffffffffffffffffffff16146112a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129b9061453c565b60405180910390fd5b6112ae600061241b565b565b6122b881565b600960009054906101000a900460ff1681565b600a81565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461130790614932565b80601f016020809104026020016040519081016040528092919081815260200182805461133390614932565b80156113805780601f1061135557610100808354040283529160200191611380565b820191906000526020600020905b81548152906001019060200180831161136357829003601f168201915b5050505050905090565b600960019054906101000a900460ff166113a357600080fd5b6113ad82826124e1565b5050565b600960029054906101000a900460ff16156113cb57600080fd5b6113ea73f7dcf798971452737f1e6196d36dd215b43b428d60006123ef565b611409736cd2d84298f731fa443061255a9a84a09dbca76960016123ef565b61142873a442ddf27063320789b59a8fdca5b849cd2cdeac60026123ef565b6114477372fae93d08a060a7f0a8919708c0db74ca46cbb660036123ef565b61146673c46db2d89327d4c41eb81c43ed5e3dff111f9a8f60046123ef565b61148573cb96594aba4627e6064731b0098dc97547b397be60056123ef565b6114a4734385ff4b76d8a7fa8075ed1ee27c82ffe095145660066123ef565b6114c373af469c4a0914938e6149cf621c54fb4b1ec0c20260076123ef565b6114e273e9f1e4dc4d1f3f62d54d70ea73a8c9b4cd2bde2d60086123ef565b61150173e1d29d0a39962a9a8d2a297ebe82e166f8b8ec1860096123ef565b61152073abf107de3e01c7c257e64e0a18d60a733aad395d600a6123ef565b61153f73442dccee68425828c106a3662014b4f131e3bd9b600b6123ef565b61155e73d387a6e4e84a6c86bd90c158c6028a58cc8ac459600c6123ef565b61157d737500935c3c34d0d48e9c388b3dffa0abbda52633600d6123ef565b61159c7311360f0c5552443b33720a44408aba01a809905e600e6123ef565b6115bb73c5f59709974262c4afacc5386287820bdbc7eb3a600f6123ef565b6001600960026101000a81548160ff021916908315150217905550565b6115e96115e3611cef565b83611dbe565b611628576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161f9061463c565b60405180910390fd5b61163484848484612662565b50505050565b600960019054906101000a900460ff1681565b6122b86116586109d5565b1015611699576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116909061445c565b60405180910390fd5b80600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60606116e882611c83565b611727576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171e9061459c565b60405180910390fd5b6000611732836120f8565b90506000600a828154811061174a57611749614a9c565b5b90600052602060002001805461175f90614932565b80601f016020809104026020016040519081016040528092919081815260200182805461178b90614932565b80156117d85780601f106117ad576101008083540402835291602001916117d8565b820191906000526020600020905b8154815290600101906020018083116117bb57829003601f168201915b5050505050905060006117f26117ed866126be565b6121b1565b90506122b86117ff6109d5565b1015611876576040518060400160405280601a81526020017f6f4e2d634861496e2072455665416c206166546552204d696e5400000000000081525091506040518060400160405280601a81526020017f6f4e2d634861496e2072455665416c206166546552204d696e5400000000000081525090505b60006118b6611884876121b1565b848461188f8a612745565b6040516020016118a29493929190614103565b604051602081830303815290604052612ea4565b90506000816040516020016118cb91906141fd565b60405160208183030381529060405290508095505050505050919050565b61045781565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61198b611cef565b73ffffffffffffffffffffffffffffffffffffffff166119a96112ce565b73ffffffffffffffffffffffffffffffffffffffff16146119ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f69061453c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611a6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a669061437c565b60405180910390fd5b611a788161241b565b50565b6122b8611a866109d5565b1015611ac7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611abe9061445c565b60405180910390fd5b6000611ad9611ad4611cef565b611170565b11611b19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b109061455c565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff16600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e836040518263ffffffff1660e01b8152600401611b8b919061467c565b60206040518083038186803b158015611ba357600080fd5b505afa158015611bb7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611bdb91906136cf565b73ffffffffffffffffffffffffffffffffffffffff1614611bfb57600080fd5b6001600960016101000a81548160ff02191690831515021790555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611d6a83610f2a565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b6000611dc982611c83565b611e08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dff9061441c565b60405180910390fd5b6000611e1383610f2a565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611e8257508373ffffffffffffffffffffffffffffffffffffffff16611e6a84610838565b73ffffffffffffffffffffffffffffffffffffffff16145b80611e935750611e9281856118ef565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611ebc82610f2a565b73ffffffffffffffffffffffffffffffffffffffff1614611f12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f099061457c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611f82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f79906143bc565b60405180910390fd5b611f8d83838361301d565b611f98600082611cf7565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611fe89190614848565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461203f9190614767565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000806065612106846121b1565b604051602001612116919061418e565b6040516020818303038152906040528051906020012060001c61213991906149de565b905060006019821061214a57600190505b6032821061215757600290505b604b821061216457600390505b605a821061217157600490505b6060821061217e57600590505b6063821061218b57600690505b604582141561219957600790505b60648211156121a757600890505b8092505050919050565b606060008214156121f9576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061230d565b600082905060005b6000821461222b57808061221490614995565b915050600a8261222491906147bd565b9150612201565b60008167ffffffffffffffff81111561224757612246614acb565b5b6040519080825280601f01601f1916602001820160405280156122795781602001600182028036833780820191505090505b5090505b60008514612306576001826122929190614848565b9150600a856122a191906149de565b60306122ad9190614767565b60f81b8183815181106122c3576122c2614a9c565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856122ff91906147bd565b945061227d565b8093505050505b919050565b6000818361232091906147bd565b905092915050565b60008273ffffffffffffffffffffffffffffffffffffffff168260405161234e9061421f565b60006040518083038185875af1925050503d806000811461238b576040519150601f19603f3d011682016040523d82523d6000602084013e612390565b606091505b50509050806123d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123cb9061461c565b60405180910390fd5b505050565b600081836123e791906147ee565b905092915050565b60005b818110156124165761240383613091565b808061240e90614995565b9150506123f2565b505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6124e9611cef565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612557576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161254e906143dc565b60405180910390fd5b8060056000612564611cef565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16612611611cef565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161265691906142ff565b60405180910390a35050565b61266d848484611e9c565b612679848484846130e2565b6126b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126af9061435c565b60405180910390fd5b50505050565b60008060656126cc846121b1565b6040516020016126dc91906141b0565b6040516020818303038152906040528051906020012060001c6126ff91906149de565b9050600060019050600f821061271457600290505b601e821061272157600390505b605a821061272e57600490505b6063821061273b57600590505b8092505050919050565b60606000612752836120f8565b90506000600b828154811061276a57612769614a9c565b5b90600052602060002001805461277f90614932565b80601f01602080910402602001604051908101604052809291908181526020018280546127ab90614932565b80156127f85780601f106127cd576101008083540402835291602001916127f8565b820191906000526020600020905b8154815290600101906020018083116127db57829003601f168201915b505050505090506000600c838154811061281557612814614a9c565b5b90600052602060002001805461282a90614932565b80601f016020809104026020016040519081016040528092919081815260200182805461285690614932565b80156128a35780601f10612878576101008083540402835291602001916128a3565b820191906000526020600020905b81548152906001019060200180831161288657829003601f168201915b5050505050905060006040518060800160405280604d81526020016158ac604d913990506128cf6134ee565b60405180610100016040528060c981526020016158f960c99139816000600e81106128fd576128fc614a9c565b5b602002018190525083816001600e811061291a57612919614a9c565b5b60200201819052506040518060400160405280600181526020017f3b00000000000000000000000000000000000000000000000000000000000000815250816002600e811061296c5761296b614a9c565b5b602002018190525082816003600e811061298957612988614a9c565b5b60200201819052506040518060400160405280600181526020017f3b00000000000000000000000000000000000000000000000000000000000000815250816004600e81106129db576129da614a9c565b5b602002018190525083816005600e81106129f8576129f7614a9c565b5b60200201819052506040518060a00160405280606a8152602001615a47606a9139816006600e8110612a2d57612a2c614a9c565b5b602002018190525082816007600e8110612a4a57612a49614a9c565b5b60200201819052506040518060400160405280600181526020017f3b00000000000000000000000000000000000000000000000000000000000000815250816008600e8110612a9c57612a9b614a9c565b5b602002018190525083816009600e8110612ab957612ab8614a9c565b5b60200201819052506040518060400160405280600181526020017f3b0000000000000000000000000000000000000000000000000000000000000081525081600a600e8110612b0b57612b0a614a9c565b5b60200201819052508281600b600e8110612b2857612b27614a9c565b5b6020020181905250604051806080016040528060458152602001615a026045913981600c600e8110612b5d57612b5c614a9c565b5b602002018190525060068514612c4b576000600d808054905089612b8191906149de565b81548110612b9257612b91614a9c565b5b906000526020600020018054612ba790614932565b80601f0160208091040260200160405190810160405280929190818152602001828054612bd390614932565b8015612c205780601f10612bf557610100808354040283529160200191612c20565b820191906000526020600020905b815481529060010190602001808311612c0357829003601f168201915b5050505050905080604051602001612c38919061426b565b6040516020818303038152906040529250505b8181600d600e8110612c6057612c5f614a9c565b5b60200201819052506000816000600e8110612c7e57612c7d614a9c565b5b6020020151826001600e8110612c9757612c96614a9c565b5b6020020151836002600e8110612cb057612caf614a9c565b5b6020020151846003600e8110612cc957612cc8614a9c565b5b6020020151856004600e8110612ce257612ce1614a9c565b5b6020020151866005600e8110612cfb57612cfa614a9c565b5b6020020151876006600e8110612d1457612d13614a9c565b5b6020020151886007600e8110612d2d57612d2c614a9c565b5b6020020151896008600e8110612d4657612d45614a9c565b5b6020020151604051602001612d6399989796959493929190614084565b604051602081830303815290604052905080826009600e8110612d8957612d88614a9c565b5b602002015183600a600e8110612da257612da1614a9c565b5b602002015184600b600e8110612dbb57612dba614a9c565b5b602002015185600c600e8110612dd457612dd3614a9c565b5b602002015186600d600e8110612ded57612dec614a9c565b5b6020020151604051602001612e079695949392919061402c565b60405160208183030381529060405290506122b8612e236109d5565b1015612e4a57604051602001612e38906141d2565b60405160208183030381529060405290505b6000612e7482604051602001612e609190614015565b604051602081830303815290604052612ea4565b604051602001612e849190614249565b604051602081830303815290604052905080975050505050505050919050565b6060600082511415612ec757604051806020016040528060008152509050613018565b60006040518060600160405280604081526020016159c26040913990506000600360028551612ef69190614767565b612f0091906147bd565b6004612f0c91906147ee565b90506000602082612f1d9190614767565b67ffffffffffffffff811115612f3657612f35614acb565b5b6040519080825280601f01601f191660200182016040528015612f685781602001600182028036833780820191505090505b509050818152600183018586518101602084015b81831015612fd7576003830192508251603f8160121c168501518253600182019150603f81600c1c168501518253600182019150603f8160061c168501518253600182019150603f8116850151825360018201915050612f7c565b600389510660018114612ff157600281146130015761300c565b613d3d60f01b600283035261300c565b603d60f81b60018303525b50505050508093505050505b919050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614806130645750600960019054906101000a900460ff165b61306d57600080fd5b6101a48161307b91906149de565b60088190555061308c838383613279565b505050565b600061309b6109d5565b90506130a7600761327e565b6130b18282613294565b807fdcfa76fe24696611c02d3c15270dd1b5e8e3e85739650d972fedde748be10b1860405160405180910390a25050565b60006131038473ffffffffffffffffffffffffffffffffffffffff166132b2565b1561326c578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261312c611cef565b8786866040518563ffffffff1660e01b815260040161314e94939291906142b3565b602060405180830381600087803b15801561316857600080fd5b505af192505050801561319957506040513d601f19601f820116820180604052508101906131969190613908565b60015b61321c573d80600081146131c9576040519150601f19603f3d011682016040523d82523d6000602084013e6131ce565b606091505b50600081511415613214576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161320b9061435c565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613271565b600190505b949350505050565b505050565b6001816000016000828254019250508190555050565b6132ae8282604051806020016040528060008152506132c5565b5050565b600080823b905060008111915050919050565b6132cf8383613320565b6132dc60008484846130e2565b61331b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133129061435c565b60405180910390fd5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613390576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613387906144fc565b60405180910390fd5b61339981611c83565b156133d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133d09061439c565b60405180910390fd5b6133e56000838361301d565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546134359190614767565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b604051806101c00160405280600e905b60608152602001906001900390816134fe5790505090565b6000613529613524846146bc565b614697565b9050808382526020820190508285602086028201111561354c5761354b614aff565b5b60005b8581101561357c5781613562888261368d565b84526020840193506020830192505060018101905061354f565b5050509392505050565b6000613599613594846146e8565b614697565b9050828152602081018484840111156135b5576135b4614b04565b5b6135c08482856148f0565b509392505050565b6000813590506135d78161584f565b92915050565b6000815190506135ec8161584f565b92915050565b600082601f83011261360757613606614afa565b5b8135613617848260208601613516565b91505092915050565b60008135905061362f81615866565b92915050565b6000813590506136448161587d565b92915050565b6000815190506136598161587d565b92915050565b600082601f83011261367457613673614afa565b5b8135613684848260208601613586565b91505092915050565b60008135905061369c81615894565b92915050565b6000602082840312156136b8576136b7614b0e565b5b60006136c6848285016135c8565b91505092915050565b6000602082840312156136e5576136e4614b0e565b5b60006136f3848285016135dd565b91505092915050565b6000806040838503121561371357613712614b0e565b5b6000613721858286016135c8565b9250506020613732858286016135c8565b9150509250929050565b60008060006060848603121561375557613754614b0e565b5b6000613763868287016135c8565b9350506020613774868287016135c8565b92505060406137858682870161368d565b9150509250925092565b600080600080608085870312156137a9576137a8614b0e565b5b60006137b7878288016135c8565b94505060206137c8878288016135c8565b93505060406137d98782880161368d565b925050606085013567ffffffffffffffff8111156137fa576137f9614b09565b5b6138068782880161365f565b91505092959194509250565b6000806040838503121561382957613828614b0e565b5b6000613837858286016135c8565b925050602061384885828601613620565b9150509250929050565b6000806040838503121561386957613868614b0e565b5b6000613877858286016135c8565b92505060206138888582860161368d565b9150509250929050565b6000602082840312156138a8576138a7614b0e565b5b600082013567ffffffffffffffff8111156138c6576138c5614b09565b5b6138d2848285016135f2565b91505092915050565b6000602082840312156138f1576138f0614b0e565b5b60006138ff84828501613635565b91505092915050565b60006020828403121561391e5761391d614b0e565b5b600061392c8482850161364a565b91505092915050565b60006020828403121561394b5761394a614b0e565b5b60006139598482850161368d565b91505092915050565b61396b8161487c565b82525050565b61397a8161488e565b82525050565b600061398b82614719565b613995818561472f565b93506139a58185602086016148ff565b6139ae81614b13565b840191505092915050565b60006139c482614724565b6139ce818561474b565b93506139de8185602086016148ff565b6139e781614b13565b840191505092915050565b60006139fd82614724565b613a07818561475c565b9350613a178185602086016148ff565b80840191505092915050565b6000613a3060098361475c565b9150613a3b82614b24565b600982019050919050565b6000613a5360188361474b565b9150613a5e82614b4d565b602082019050919050565b6000613a7660328361474b565b9150613a8182614b76565b604082019050919050565b6000613a9960268361474b565b9150613aa482614bc5565b604082019050919050565b6000613abc601c8361474b565b9150613ac782614c14565b602082019050919050565b6000613adf608d8361475c565b9150613aea82614c3d565b608d82019050919050565b6000613b02600d8361475c565b9150613b0d82614cfe565b600d82019050919050565b6000613b2560038361475c565b9150613b3082614d27565b600382019050919050565b6000613b4860098361475c565b9150613b5382614d50565b600982019050919050565b6000613b6b60248361474b565b9150613b7682614d79565b604082019050919050565b6000613b8e60198361474b565b9150613b9982614dc8565b602082019050919050565b6000613bb1601d8361474b565b9150613bbc82614df1565b602082019050919050565b6000613bd4602c8361474b565b9150613bdf82614e1a565b604082019050919050565b6000613bf760168361474b565b9150613c0282614e69565b602082019050919050565b6000613c1a60278361474b565b9150613c2582614e92565b604082019050919050565b6000613c3d600b8361474b565b9150613c4882614ee1565b602082019050919050565b6000613c616102798361475c565b9150613c6c82614f0a565b61027982019050919050565b6000613c8560388361474b565b9150613c9082615211565b604082019050919050565b6000613ca8602a8361474b565b9150613cb382615260565b604082019050919050565b6000613ccb60298361474b565b9150613cd6826152af565b604082019050919050565b6000613cee60028361475c565b9150613cf9826152fe565b600282019050919050565b6000613d1160208361474b565b9150613d1c82615327565b602082019050919050565b6000613d34602c8361474b565b9150613d3f82615350565b604082019050919050565b6000613d5760208361474b565b9150613d628261539f565b602082019050919050565b6000613d7a60168361474b565b9150613d85826153c8565b602082019050919050565b6000613d9d60298361474b565b9150613da8826153f1565b604082019050919050565b6000613dc060018361475c565b9150613dcb82615440565b600182019050919050565b6000613de3602f8361474b565b9150613dee82615469565b604082019050919050565b6000613e0660158361474b565b9150613e11826154b8565b602082019050919050565b6000613e2960878361475c565b9150613e34826154e1565b608782019050919050565b6000613e4c602a8361475c565b9150613e57826155a2565b602a82019050919050565b6000613e6f600e8361475c565b9150613e7a826155f1565b600e82019050919050565b6000613e9260158361474b565b9150613e9d8261561a565b602082019050919050565b6000613eb560218361474b565b9150613ec082615643565b604082019050919050565b6000613ed8601d8361475c565b9150613ee382615692565b601d82019050919050565b6000613efb600083614740565b9150613f06826156bb565b600082019050919050565b6000613f1e60108361474b565b9150613f29826156be565b602082019050919050565b6000613f4160318361474b565b9150613f4c826156e7565b604082019050919050565b6000613f64602a8361475c565b9150613f6f82615736565b602a82019050919050565b6000613f8760108361475c565b9150613f9282615785565b601082019050919050565b6000613faa60178361474b565b9150613fb5826157ae565b602082019050919050565b6000613fcd601a8361475c565b9150613fd8826157d7565b601a82019050919050565b6000613ff0602e8361475c565b9150613ffb82615800565b602e82019050919050565b61400f816148e6565b82525050565b600061402182846139f2565b915081905092915050565b600061403882896139f2565b915061404482886139f2565b915061405082876139f2565b915061405c82866139f2565b915061406882856139f2565b915061407482846139f2565b9150819050979650505050505050565b6000614090828c6139f2565b915061409c828b6139f2565b91506140a8828a6139f2565b91506140b482896139f2565b91506140c082886139f2565b91506140cc82876139f2565b91506140d882866139f2565b91506140e482856139f2565b91506140f082846139f2565b91508190509a9950505050505050505050565b600061410e82613af5565b915061411a82876139f2565b915061412582613e3f565b915061413082613db3565b915061413b82613e1c565b915061414782866139f2565b915061415282613f57565b915061415e82856139f2565b915061416982613e62565b915061417582846139f2565b915061418082613ce1565b915081905095945050505050565b600061419982613b18565b91506141a582846139f2565b915081905092915050565b60006141bb82613b3b565b91506141c782846139f2565b915081905092915050565b60006141dd82613c53565b91506141e882613db3565b91506141f382613ad2565b9150819050919050565b600061420882613ecb565b915061421482846139f2565b915081905092915050565b600061422a82613eee565b9150819050919050565b600061423f82613f7a565b9150819050919050565b600061425482613fc0565b915061426082846139f2565b915081905092915050565b600061427682613fe3565b915061428282846139f2565b915061428d82613a23565b915081905092915050565b60006020820190506142ad6000830184613962565b92915050565b60006080820190506142c86000830187613962565b6142d56020830186613962565b6142e26040830185614006565b81810360608301526142f48184613980565b905095945050505050565b60006020820190506143146000830184613971565b92915050565b6000602082019050818103600083015261433481846139b9565b905092915050565b6000602082019050818103600083015261435581613a46565b9050919050565b6000602082019050818103600083015261437581613a69565b9050919050565b6000602082019050818103600083015261439581613a8c565b9050919050565b600060208201905081810360008301526143b581613aaf565b9050919050565b600060208201905081810360008301526143d581613b5e565b9050919050565b600060208201905081810360008301526143f581613b81565b9050919050565b6000602082019050818103600083015261441581613ba4565b9050919050565b6000602082019050818103600083015261443581613bc7565b9050919050565b6000602082019050818103600083015261445581613bea565b9050919050565b6000602082019050818103600083015261447581613c0d565b9050919050565b6000602082019050818103600083015261449581613c30565b9050919050565b600060208201905081810360008301526144b581613c78565b9050919050565b600060208201905081810360008301526144d581613c9b565b9050919050565b600060208201905081810360008301526144f581613cbe565b9050919050565b6000602082019050818103600083015261451581613d04565b9050919050565b6000602082019050818103600083015261453581613d27565b9050919050565b6000602082019050818103600083015261455581613d4a565b9050919050565b6000602082019050818103600083015261457581613d6d565b9050919050565b6000602082019050818103600083015261459581613d90565b9050919050565b600060208201905081810360008301526145b581613dd6565b9050919050565b600060208201905081810360008301526145d581613df9565b9050919050565b600060208201905081810360008301526145f581613e85565b9050919050565b6000602082019050818103600083015261461581613ea8565b9050919050565b6000602082019050818103600083015261463581613f11565b9050919050565b6000602082019050818103600083015261465581613f34565b9050919050565b6000602082019050818103600083015261467581613f9d565b9050919050565b60006020820190506146916000830184614006565b92915050565b60006146a16146b2565b90506146ad8282614964565b919050565b6000604051905090565b600067ffffffffffffffff8211156146d7576146d6614acb565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561470357614702614acb565b5b61470c82614b13565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000614772826148e6565b915061477d836148e6565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156147b2576147b1614a0f565b5b828201905092915050565b60006147c8826148e6565b91506147d3836148e6565b9250826147e3576147e2614a3e565b5b828204905092915050565b60006147f9826148e6565b9150614804836148e6565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561483d5761483c614a0f565b5b828202905092915050565b6000614853826148e6565b915061485e836148e6565b92508282101561487157614870614a0f565b5b828203905092915050565b6000614887826148c6565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561491d578082015181840152602081019050614902565b8381111561492c576000848401525b50505050565b6000600282049050600182168061494a57607f821691505b6020821081141561495e5761495d614a6d565b5b50919050565b61496d82614b13565b810181811067ffffffffffffffff8211171561498c5761498b614acb565b5b80604052505050565b60006149a0826148e6565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156149d3576149d2614a0f565b5b600182019050919050565b60006149e9826148e6565b91506149f4836148e6565b925082614a0457614a03614a3e565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f222f3e3c2f7376673e0000000000000000000000000000000000000000000000600082015250565b7f6f6f6f6f6f682c2074727920616761696e6e6e6e207365720000000000000000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f733c2f746578743e203c7465787420783d223530252220793d2234352522207460008201527f6578742d616e63686f723d226d6964646c652220666f6e742d66616d696c793d60208201527f226d6f6e6f73706163652220666f6e742d7765696768743d22626f6c6422206660408201527f696c6c3d2275726c28236c696e6561722d6772616469656e7429223e47656d7360608201527f3c2f746578743e3c2f7376673e00000000000000000000000000000000000000608082015250565b7f7b226e616d65223a2247656d2000000000000000000000000000000000000000600082015250565b7f47454d0000000000000000000000000000000000000000000000000000000000600082015250565b7f47454d2047524144450000000000000000000000000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f67656d732072206d696e7465642073696c6c792073636176656e676572000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f6f6f6f6f6f682c2074727920616761696e6e2073657200000000000000000000600082015250565b7f6e6f74207065726d697474656420756e74696c20616c6c2067656d732061726560008201527f206d696e74656400000000000000000000000000000000000000000000000000602082015250565b7f6772656564792c20736572000000000000000000000000000000000000000000600082015250565b7f3c73766720786d6c6e733d22687474703a2f2f7777772e77332e6f72672f323060008201527f30302f737667222077696474683d2231303022206865696768743d223130302260208201527f3e3c646566733e3c6c696e6561724772616469656e742069643d226c696e656160408201527f722d6772616469656e74222078313d2230222079313d2230222078323d22313060608201527f3025222079323d223022203e3c73746f70206f66667365743d2230223e3c616e60808201527f696d617465206174747269627574654e616d653d2273746f702d636f6c6f722260a08201527f2076616c7565733d22233939306334313b236631346338613b2339393063343160c08201527f22206475723d2231732220726570656174436f756e743d22696e646566696e6960e08201527f746522202f3e3c2f73746f703e3c73746f70206f66667365743d2231223e3c616101008201527f6e696d617465206174747269627574654e616d653d2273746f702d636f6c6f726101208201527f222076616c7565733d22236631346338613b233939306334313b2366313463386101408201527f6122206475723d2231732220726570656174436f756e743d22696e646566696e6101608201527f69746522202f3e3c2f73746f703e3c2f6c696e6561724772616469656e743e3c6101808201527f2f646566733e3c706f6c79676f6e2066696c6c3d2275726c28236c696e6561726101a08201527f2d6772616469656e74292220706f696e74733d2231322e352c37302032352c356101c08201527f352037352c35352038372e352c37302037352c38352032352c3835222f3e3c746101e08201527f65787420783d223530252220793d223235252220746578742d616e63686f723d6102008201527f226d6964646c652220666f6e742d66616d696c793d226d6f6e6f7370616365226102208201527f20666f6e742d7765696768743d22626f6c64222066696c6c3d2275726c28236c6102408201527f696e6561722d6772616469656e7429223e4b696e67205a65760000000000000061026082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f227d000000000000000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f6e65656420746f206f776e20612067656d2c2073657200000000000000000000600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f2700000000000000000000000000000000000000000000000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f6f6f6f6f6f682c2074727920616761696e207365720000000000000000000000600082015250565b7f732074726561737572652074726f76652e20436f6c6c6563742067656d732c2060008201527f66696e6420636c7565732c20736f6c76652070757a7a6c65732e204f6e2d636860208201527f61696e2c206e6f20776562736974652c206e6f20495046532e222c202261747460408201527f72696275746573223a5b7b2274726169745f74797065223a2267656d222c227660608201527f616c7565223a2200000000000000000000000000000000000000000000000000608082015250565b7f222c20226465736372697074696f6e223a224120717565737420746f2066696e60008201527f64204b696e67205a657600000000000000000000000000000000000000000000602082015250565b7f227d5d2c2022696d616765223a22000000000000000000000000000000000000600082015250565b7f6e6f7420656e6f7567682065746865722c207365720000000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c000000600082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f227d2c207b2274726169745f74797065223a225261726974792047726164652260008201527f2c2276616c7565223a2200000000000000000000000000000000000000000000602082015250565b7f4b494e47205a45562050494e204b455900000000000000000000000000000000600082015250565b7f6f6f6f6f6f682c2074727920616761696e6e6e20736572000000000000000000600082015250565b7f646174613a696d6167652f7376672b786d6c3b6261736536342c000000000000600082015250565b7f3c706f6c79676f6e2066696c6c3d2275726c28236c696e6561722d677261646960008201527f656e74292220706f696e74733d22000000000000000000000000000000000000602082015250565b6158588161487c565b811461586357600080fd5b50565b61586f8161488e565b811461587a57600080fd5b50565b6158868161489a565b811461589157600080fd5b50565b61589d816148e6565b81146158a857600080fd5b5056fe3c656c6c697073652066696c6c3d2275726c28236c696e6561722d6772616469656e7429222063783d223530222063793d223530222072783d223330222072793d223230222f3e3c2f7376673e3c73766720786d6c6e733d22687474703a2f2f7777772e77332e6f72672f323030302f737667222077696474683d2231303022206865696768743d22313030223e3c646566733e3c6c696e6561724772616469656e742069643d226c696e6561722d6772616469656e74222078313d2230222079313d2230222078323d2231303025222079323d223022203e3c73746f70206f66667365743d2230223e3c616e696d617465206174747269627574654e616d653d2273746f702d636f6c6f72222076616c7565733d224142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2f22206475723d2231732220726570656174436f756e743d22696e646566696e69746522202f3e3c2f73746f703e3c2f6c696e6561724772616469656e743e3c2f646566733e22206475723d2231732220726570656174436f756e743d22696e646566696e69746522202f3e3c2f73746f703e3c73746f70206f66667365743d2231223e3c616e696d617465206174747269627574654e616d653d2273746f702d636f6c6f72222076616c7565733d22a26469706673582212204a94b7f2b2c03704485a735e395636fa66d334d34c10df8d0180acd106dcad3464736f6c63430008070033

Deployed Bytecode Sourcemap

52548:12622:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35234:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36179:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37738:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37261:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54114:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38628:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;63399:1580;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52917:54;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63064:327;;;:::i;:::-;;39038:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35873:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53112:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56878:570;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35603:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16869:94;;;;;;;;;;;;;:::i;:::-;;52750:48;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53024:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52860:46;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16218:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36348:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56151:182;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54222:1320;;;:::i;:::-;;39294:328;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53068:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55550:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59060:1188;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52805:48;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38397:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17118:192;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55762:318;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35234:305;35336:4;35388:25;35373:40;;;:11;:40;;;;:105;;;;35445:33;35430:48;;;:11;:48;;;;35373:105;:158;;;;35495:36;35519:11;35495:23;:36::i;:::-;35373:158;35353:178;;35234:305;;;:::o;36179:100::-;36233:13;36266:5;36259:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36179:100;:::o;37738:221::-;37814:7;37842:16;37850:7;37842;:16::i;:::-;37834:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;37927:15;:24;37943:7;37927:24;;;;;;;;;;;;;;;;;;;;;37920:31;;37738:221;;;:::o;37261:411::-;37342:13;37358:23;37373:7;37358:14;:23::i;:::-;37342:39;;37406:5;37400:11;;:2;:11;;;;37392:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;37500:5;37484:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;37509:37;37526:5;37533:12;:10;:12::i;:::-;37509:16;:37::i;:::-;37484:62;37462:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;37643:21;37652:2;37656:7;37643:8;:21::i;:::-;37331:341;37261:411;;:::o;54114:100::-;54158:7;54185:21;:11;:19;:21::i;:::-;54178:28;;54114:100;:::o;38628:339::-;38823:41;38842:12;:10;:12::i;:::-;38856:7;38823:18;:41::i;:::-;38815:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;38931:28;38941:4;38947:2;38951:7;38931:9;:28::i;:::-;38628:339;;;:::o;63399:1580::-;63492:17;;;;;;;;;;;63484:26;;;;;;63549:2;63529:9;:16;:22;;63521:31;;;;;;63598:2;63571:23;63581:12;:10;:12::i;:::-;63571:9;:23::i;:::-;:29;;63563:38;;;;;;63619:9;63614:438;63638:2;63634:1;:6;63614:438;;;63662:16;63681:9;63691:1;63681:12;;;;;;;;:::i;:::-;;;;;;;;63662:31;;63737:10;63716:31;;:17;63724:8;63716:7;:17::i;:::-;:31;;;63708:40;;;;;;63771:1;63767;:5;63763:278;;;63802:1;63797;:6;63793:168;;;63858:1;63836:18;63845:8;63836;:18::i;:::-;:23;63828:32;;;;;;63793:168;;;63939:1;63917:18;63926:8;63917;:18::i;:::-;:23;63909:32;;;;;;63793:168;63763:278;;;64020:4;64009:8;:15;64001:24;;;;;;63763:278;63647:405;63642:3;;;;;:::i;:::-;;;;63614:438;;;;64075:16;64161:3;64112:36;;;;;;;:::i;:::-;;;;;;;;;;;;;64102:47;;;;;;64094:56;;:70;;;;:::i;:::-;64075:89;;64175:16;64261:3;64229:25;64246:7;;64229:16;:25::i;:::-;64212:43;;;;;;;;:::i;:::-;;;;;;;;;;;;;64202:54;;;;;;64194:63;;:70;;;;:::i;:::-;64175:89;;64275:16;64361:3;64329:26;64346:8;64329:16;:26::i;:::-;64312:44;;;;;;;;:::i;:::-;;;;;;;;;;;;;64302:55;;;;;;64294:64;;:70;;;;:::i;:::-;64275:89;;64375:16;64394:2;64375:21;;64440:8;64423:9;64433:2;64423:13;;;;;;;;:::i;:::-;;;;;;;;:25;64415:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;64511:7;;64493:9;64503:2;64493:13;;;;;;;;:::i;:::-;;;;;;;;:25;64485:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;64581:8;64564:9;64574:2;64564:13;;;;;;;;:::i;:::-;;;;;;;;:25;64556:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;64653:8;64636:9;64646:2;64636:13;;;;;;;;:::i;:::-;;;;;;;;:25;64628:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;64703:15;64721:28;64747:1;64721:21;:25;;:28;;;;:::i;:::-;64703:46;;64778:1;64768:7;:11;64760:20;;;;;;64791:30;64801:10;64813:7;64791:9;:30::i;:::-;64839:9;64834:138;64858:1;64854;:5;64834:138;;;64881:79;64891:10;64903:42;64947:9;64957:1;64947:12;;;;;;;;:::i;:::-;;;;;;;;64881:9;:79::i;:::-;64861:3;;;;;:::i;:::-;;;;64834:138;;;;63473:1506;;;;;63399:1580;:::o;52917:54::-;52961:10;52917:54;:::o;63064:327::-;16449:12;:10;:12::i;:::-;16438:23;;:7;:5;:7::i;:::-;:23;;;16430:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;63140:17:::1;;;;;;;;;;;63139:18;63131:27;;;::::0;::::1;;63169:15;63187:28;63213:1;63187:21;:25;;:28;;;;:::i;:::-;63169:46;;63244:1;63234:7;:11;63226:20;;;::::0;::::1;;63257:30;63267:10;63279:7;63257:9;:30::i;:::-;63379:4;63359:17;;:24;;;;;;;;;;;;;;;;;;63120:271;63064:327::o:0;39038:185::-;39176:39;39193:4;39199:2;39203:7;39176:39;;;;;;;;;;;;:16;:39::i;:::-;39038:185;;;:::o;35873:239::-;35945:7;35965:13;35981:7;:16;35989:7;35981:16;;;;;;;;;;;;;;;;;;;;;35965:32;;36033:1;36016:19;;:5;:19;;;;36008:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;36099:5;36092:12;;;35873:239;;;:::o;53112:37::-;;;;;;;;;;;;;:::o;56878:570::-;56937:13;56953;:11;:13::i;:::-;56937:29;;52794:4;56993:6;56985:5;:14;;;;:::i;:::-;:26;;56977:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52794:4;57064:5;:17;;57056:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;52904:2;57160:6;57134:23;57144:12;:10;:12::i;:::-;57134:9;:23::i;:::-;:32;;;;:::i;:::-;:51;;57126:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;57304:26;57323:6;52961:10;57304:18;;:26;;;;:::i;:::-;57291:9;:39;;:77;;;;52849:4;57342:6;57334:5;:14;;;;:::i;:::-;:34;57291:77;57283:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;57407:33;57421:10;57433:6;57407:13;:33::i;:::-;56926:522;56878:570;:::o;35603:208::-;35675:7;35720:1;35703:19;;:5;:19;;;;35695:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;35787:9;:16;35797:5;35787:16;;;;;;;;;;;;;;;;35780:23;;35603:208;;;:::o;16869:94::-;16449:12;:10;:12::i;:::-;16438:23;;:7;:5;:7::i;:::-;:23;;;16430:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;16934:21:::1;16952:1;16934:9;:21::i;:::-;16869:94::o:0;52750:48::-;52794:4;52750:48;:::o;53024:37::-;;;;;;;;;;;;;:::o;52860:46::-;52904:2;52860:46;:::o;16218:87::-;16264:7;16291:6;;;;;;;;;;;16284:13;;16218:87;:::o;36348:104::-;36404:13;36437:7;36430:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36348:104;:::o;56151:182::-;56254:16;;;;;;;;;;;56246:25;;;;;;56282:43;56306:8;56316;56282:23;:43::i;:::-;56151:182;;:::o;54222:1320::-;54357:8;;;;;;;;;;;54356:9;54348:18;;;;;;54377:60;54391:42;54435:1;54377:13;:60::i;:::-;54448;54462:42;54506:1;54448:13;:60::i;:::-;54519;54533:42;54577:1;54519:13;:60::i;:::-;54590;54604:42;54648:1;54590:13;:60::i;:::-;54661;54675:42;54719:1;54661:13;:60::i;:::-;54732;54746:42;54790:1;54732:13;:60::i;:::-;54803;54817:42;54861:1;54803:13;:60::i;:::-;54874;54888:42;54932:1;54874:13;:60::i;:::-;54945;54959:42;55003:1;54945:13;:60::i;:::-;55016;55030:42;55074:1;55016:13;:60::i;:::-;55087:61;55101:42;55145:2;55087:13;:61::i;:::-;55159;55173:42;55217:2;55159:13;:61::i;:::-;55231;55245:42;55289:2;55231:13;:61::i;:::-;55303;55317:42;55361:2;55303:13;:61::i;:::-;55375;55389:42;55433:2;55375:13;:61::i;:::-;55447;55461:42;55505:2;55447:13;:61::i;:::-;55530:4;55519:8;;:15;;;;;;;;;;;;;;;;;;54222:1320::o;39294:328::-;39469:41;39488:12;:10;:12::i;:::-;39502:7;39469:18;:41::i;:::-;39461:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;39575:39;39589:4;39595:2;39599:7;39608:5;39575:13;:39::i;:::-;39294:328;;;;:::o;53068:37::-;;;;;;;;;;;;;:::o;55550:204::-;52794:4;55619:13;:11;:13::i;:::-;:25;;55611:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;55736:9;55699:16;;:47;;;;;;;;;;;;;;;;;;55550:204;:::o;59060:1188::-;59126:13;59160:17;59168:8;59160:7;:17::i;:::-;59152:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;59240:14;59257:18;59266:8;59257;:18::i;:::-;59240:35;;59286:18;59307:4;59312:6;59307:12;;;;;;;;:::i;:::-;;;;;;;;;59286:33;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59330:23;59356:39;59373:21;59385:8;59373:11;:21::i;:::-;59356:16;:39::i;:::-;59330:65;;52794:4;59410:13;:11;:13::i;:::-;:24;59406:152;;;59451:40;;;;;;;;;;;;;;;;;;;59506;;;;;;;;;;;;;;;;;;;59406:152;59568:18;59589:528;59664:26;59681:8;59664:16;:26::i;:::-;59935:4;60013:9;60068:18;60077:8;60068;:18::i;:::-;59603:513;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;59589:13;:528::i;:::-;59568:549;;60128:21;60209:4;60159:55;;;;;;;;:::i;:::-;;;;;;;;;;;;;60128:87;;60233:7;60226:14;;;;;;;59060:1188;;;:::o;52805:48::-;52849:4;52805:48;:::o;38397:164::-;38494:4;38518:18;:25;38537:5;38518:25;;;;;;;;;;;;;;;:35;38544:8;38518:35;;;;;;;;;;;;;;;;;;;;;;;;;38511:42;;38397:164;;;;:::o;17118:192::-;16449:12;:10;:12::i;:::-;16438:23;;:7;:5;:7::i;:::-;:23;;;16430:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17227:1:::1;17207:22;;:8;:22;;;;17199:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;17283:19;17293:8;17283:9;:19::i;:::-;17118:192:::0;:::o;55762:318::-;52794:4;55828:13;:11;:13::i;:::-;:25;;55820:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;55942:1;55916:23;55926:12;:10;:12::i;:::-;55916:9;:23::i;:::-;:27;55908:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;56027:10;55989:48;;:16;;;;;;;;;;;:24;;;56014:8;55989:34;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:48;;;55981:57;;;;;;56068:4;56049:16;;:23;;;;;;;;;;;;;;;;;;55762:318;:::o;28204:157::-;28289:4;28328:25;28313:40;;;:11;:40;;;;28306:47;;28204:157;;;:::o;41132:127::-;41197:4;41249:1;41221:30;;:7;:16;41229:7;41221:16;;;;;;;;;;;;;;;;;;;;;:30;;;;41214:37;;41132:127;;;:::o;15006:98::-;15059:7;15086:10;15079:17;;15006:98;:::o;45114:174::-;45216:2;45189:15;:24;45205:7;45189:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;45272:7;45268:2;45234:46;;45243:23;45258:7;45243:14;:23::i;:::-;45234:46;;;;;;;;;;;;45114:174;;:::o;4761:114::-;4826:7;4853;:14;;;4846:21;;4761:114;;;:::o;41426:348::-;41519:4;41544:16;41552:7;41544;:16::i;:::-;41536:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;41620:13;41636:23;41651:7;41636:14;:23::i;:::-;41620:39;;41689:5;41678:16;;:7;:16;;;:51;;;;41722:7;41698:31;;:20;41710:7;41698:11;:20::i;:::-;:31;;;41678:51;:87;;;;41733:32;41750:5;41757:7;41733:16;:32::i;:::-;41678:87;41670:96;;;41426:348;;;;:::o;44418:578::-;44577:4;44550:31;;:23;44565:7;44550:14;:23::i;:::-;:31;;;44542:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;44660:1;44646:16;;:2;:16;;;;44638:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;44716:39;44737:4;44743:2;44747:7;44716:20;:39::i;:::-;44820:29;44837:1;44841:7;44820:8;:29::i;:::-;44881:1;44862:9;:15;44872:4;44862:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;44910:1;44893:9;:13;44903:2;44893:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;44941:2;44922:7;:16;44930:7;44922:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;44980:7;44976:2;44961:27;;44970:4;44961:27;;;;;;;;;;;;44418:578;;;:::o;57803:744::-;57862:7;57882:14;57973:3;57941:26;57958:8;57941:16;:26::i;:::-;57917:51;;;;;;;;:::i;:::-;;;;;;;;;;;;;57907:62;;;;;;57899:71;;:77;;;;:::i;:::-;57882:94;;57987:13;58029:2;58019:6;:12;58015:54;;58056:1;58048:9;;58015:54;58093:2;58083:6;:12;58079:54;;58120:1;58112:9;;58079:54;58157:2;58147:6;:12;58143:54;;58184:1;58176:9;;58143:54;58221:2;58211:6;:12;58207:54;;58248:1;58240:9;;58207:54;58285:2;58275:6;:12;58271:54;;58312:1;58304:9;;58271:54;58349:2;58339:6;:12;58335:54;;58376:1;58368:9;;58335:54;58413:2;58403:6;:12;58399:54;;;58440:1;58432:9;;58399:54;58476:3;58467:6;:12;58463:54;;;58504:1;58496:9;;58463:54;58534:5;58527:12;;;;57803:744;;;:::o;12622:723::-;12678:13;12908:1;12899:5;:10;12895:53;;;12926:10;;;;;;;;;;;;;;;;;;;;;12895:53;12958:12;12973:5;12958:20;;12989:14;13014:78;13029:1;13021:4;:9;13014:78;;13047:8;;;;;:::i;:::-;;;;13078:2;13070:10;;;;;:::i;:::-;;;13014:78;;;13102:19;13134:6;13124:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13102:39;;13152:154;13168:1;13159:5;:10;13152:154;;13196:1;13186:11;;;;;:::i;:::-;;;13263:2;13255:5;:10;;;;:::i;:::-;13242:2;:24;;;;:::i;:::-;13229:39;;13212:6;13219;13212:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;13292:2;13283:11;;;;;:::i;:::-;;;13152:154;;;13330:6;13316:21;;;;;12622:723;;;;:::o;9283:98::-;9341:7;9372:1;9368;:5;;;;:::i;:::-;9361:12;;9283:98;;;;:::o;64987:180::-;65061:12;65079:8;:13;;65100:7;65079:33;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65060:52;;;65131:7;65123:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;65049:118;64987:180;;:::o;8884:98::-;8942:7;8973:1;8969;:5;;;;:::i;:::-;8962:12;;8884:98;;;;:::o;57456:155::-;57532:9;57527:77;57551:6;57547:1;:10;57527:77;;;57579:13;57588:3;57579:8;:13::i;:::-;57559:3;;;;;:::i;:::-;;;;57527:77;;;;57456:155;;:::o;17318:173::-;17374:16;17393:6;;;;;;;;;;;17374:25;;17419:8;17410:6;;:17;;;;;;;;;;;;;;;;;;17474:8;17443:40;;17464:8;17443:40;;;;;;;;;;;;17363:128;17318:173;:::o;38031:295::-;38146:12;:10;:12::i;:::-;38134:24;;:8;:24;;;;38126:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;38246:8;38201:18;:32;38220:12;:10;:12::i;:::-;38201:32;;;;;;;;;;;;;;;:42;38234:8;38201:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;38299:8;38270:48;;38285:12;:10;:12::i;:::-;38270:48;;;38309:8;38270:48;;;;;;:::i;:::-;;;;;;;;38031:295;;:::o;40504:315::-;40661:28;40671:4;40677:2;40681:7;40661:9;:28::i;:::-;40708:48;40731:4;40737:2;40741:7;40750:5;40708:22;:48::i;:::-;40700:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;40504:315;;;;:::o;58555:497::-;58617:7;58637:14;58734:3;58702:26;58719:8;58702:16;:26::i;:::-;58672:57;;;;;;;;:::i;:::-;;;;;;;;;;;;;58662:68;;;;;;58654:77;;:83;;;;:::i;:::-;58637:100;;58748:13;58764:1;58748:17;;58790:2;58780:6;:12;58776:54;;58817:1;58809:9;;58776:54;58854:2;58844:6;:12;58840:54;;58881:1;58873:9;;58840:54;58918:2;58908:6;:12;58904:54;;58945:1;58937:9;;58904:54;58982:2;58972:6;:12;58968:54;;59009:1;59001:9;;58968:54;59039:5;59032:12;;;;58555:497;;;:::o;60256:2800::-;60313:13;60339:14;60356:18;60365:8;60356;:18::i;:::-;60339:35;;60385:22;60410:12;60423:6;60410:20;;;;;;;;:::i;:::-;;;;;;;;;60385:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60441:22;60466:12;60479:6;60466:20;;;;;;;;:::i;:::-;;;;;;;;;60441:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60497:18;:100;;;;;;;;;;;;;;;;;;;60610:23;;:::i;:::-;60644:214;;;;;;;;;;;;;;;;;:5;60650:1;60644:8;;;;;;;:::i;:::-;;;;;:214;;;;60880:8;60869:5;60875:1;60869:8;;;;;;;:::i;:::-;;;;;:19;;;;60899:14;;;;;;;;;;;;;;;;;:5;60905:1;60899:8;;;;;;;:::i;:::-;;;;;:14;;;;60935:8;60924:5;60930:1;60924:8;;;;;;;:::i;:::-;;;;;:19;;;;60954:14;;;;;;;;;;;;;;;;;:5;60960:1;60954:8;;;;;;;:::i;:::-;;;;;:14;;;;60990:8;60979:5;60985:1;60979:8;;;;;;;:::i;:::-;;;;;:19;;;;61009:119;;;;;;;;;;;;;;;;;:5;61015:1;61009:8;;;;;;;:::i;:::-;;;;;:119;;;;61150:8;61139:5;61145:1;61139:8;;;;;;;:::i;:::-;;;;;:19;;;;61169:14;;;;;;;;;;;;;;;;;:5;61175:1;61169:8;;;;;;;:::i;:::-;;;;;:14;;;;61205:8;61194:5;61200:1;61194:8;;;;;;;:::i;:::-;;;;;:19;;;;61224:15;;;;;;;;;;;;;;;;;:5;61230:2;61224:9;;;;;;;:::i;:::-;;;;;:15;;;;61262:8;61250:5;61256:2;61250:9;;;;;;;:::i;:::-;;;;;:20;;;;61281:83;;;;;;;;;;;;;;;;;:5;61287:2;61281:9;;;;;;;:::i;:::-;;;;;:83;;;;61391:1;61381:6;:11;61377:292;;61409:22;61434:9;61455;:16;;;;61444:8;:27;;;;:::i;:::-;61434:38;;;;;;;;:::i;:::-;;;;;;;;;61409:63;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61603:8;61501:155;;;;;;;;:::i;:::-;;;;;;;;;;;;;61487:170;;61394:275;61377:292;61693:4;61681:5;61687:2;61681:9;;;;;;;:::i;:::-;;;;;:16;;;;61710:17;61754:5;61760:1;61754:8;;;;;;;:::i;:::-;;;;;;61764:5;61770:1;61764:8;;;;;;;:::i;:::-;;;;;;61774:5;61780:1;61774:8;;;;;;;:::i;:::-;;;;;;61784:5;61790:1;61784:8;;;;;;;:::i;:::-;;;;;;61794:5;61800:1;61794:8;;;;;;;:::i;:::-;;;;;;61804:5;61810:1;61804:8;;;;;;;:::i;:::-;;;;;;61814:5;61820:1;61814:8;;;;;;;:::i;:::-;;;;;;61824:5;61830:1;61824:8;;;;;;;:::i;:::-;;;;;;61834:5;61840:1;61834:8;;;;;;;:::i;:::-;;;;;;61737:106;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;61710:134;;61885:3;61890:5;61896:1;61890:8;;;;;;;:::i;:::-;;;;;;61900:5;61906:2;61900:9;;;;;;;:::i;:::-;;;;;;61911:5;61917:2;61911:9;;;;;;;:::i;:::-;;;;;;61922:5;61928:2;61922:9;;;;;;;:::i;:::-;;;;;;61933:5;61939:2;61933:9;;;;;;;:::i;:::-;;;;;;61868:75;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;61855:89;;52794:4;61961:13;:11;:13::i;:::-;:24;61957:940;;;62015:869;;;;;;;:::i;:::-;;;;;;;;;;;;;62002:883;;61957:940;62909:20;62986:36;63017:3;63000:21;;;;;;;;:::i;:::-;;;;;;;;;;;;;62986:13;:36::i;:::-;62939:84;;;;;;;;:::i;:::-;;;;;;;;;;;;;62909:115;;63042:6;63035:13;;;;;;;;;60256:2800;;;:::o;48155:1912::-;48213:13;48258:1;48243:4;:11;:16;48239:31;;;48261:9;;;;;;;;;;;;;;;;48239:31;48322:19;48344:12;;;;;;;;;;;;;;;;;48322:34;;48408:18;48454:1;48449;48435:4;:11;:15;;;;:::i;:::-;48434:21;;;;:::i;:::-;48429:1;:27;;;;:::i;:::-;48408:48;;48539:20;48586:2;48573:10;:15;;;;:::i;:::-;48562:27;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48539:50;;48686:10;48678:6;48671:26;48781:1;48774:5;48770:13;48840:4;48891;48885:11;48876:7;48872:25;48987:2;48979:6;48975:15;49060:754;49079:6;49070:7;49067:19;49060:754;;;49179:1;49170:7;49166:15;49155:26;;49218:7;49212:14;49344:4;49336:5;49332:2;49328:14;49324:25;49314:8;49310:40;49304:47;49293:9;49285:67;49398:1;49387:9;49383:17;49370:30;;49477:4;49469:5;49465:2;49461:14;49457:25;49447:8;49443:40;49437:47;49426:9;49418:67;49531:1;49520:9;49516:17;49503:30;;49610:4;49602:5;49599:1;49594:14;49590:25;49580:8;49576:40;49570:47;49559:9;49551:67;49664:1;49653:9;49649:17;49636:30;;49743:4;49735:5;49723:25;49713:8;49709:40;49703:47;49692:9;49684:67;49797:1;49786:9;49782:17;49769:30;;49103:711;49060:754;;;49887:1;49880:4;49874:11;49870:19;49908:1;49903:54;;;;49976:1;49971:52;;;;49863:160;;49903:54;49947:6;49942:3;49938:16;49934:1;49923:9;49919:17;49912:43;49903:54;;49971:52;50015:4;50010:3;50006:14;50002:1;49991:9;49987:17;49980:41;49863:160;;48611:1423;;;;50053:6;50046:13;;;;;48155:1912;;;;:::o;56412:255::-;56546:1;56530:18;;:4;:18;;;:38;;;;56552:16;;;;;;;;;;;56530:38;56522:47;;;;;;56600:3;56590:7;:13;;;;:::i;:::-;56580:7;:23;;;;56614:45;56641:4;56647:2;56651:7;56614:26;:45::i;:::-;56412:255;;;:::o;57619:176::-;57669:10;57682:13;:11;:13::i;:::-;57669:26;;57706:23;:11;:21;:23::i;:::-;57740:18;57750:3;57755:2;57740:9;:18::i;:::-;57784:2;57774:13;;;;;;;;;;57658:137;57619:176;:::o;45853:799::-;46008:4;46029:15;:2;:13;;;:15::i;:::-;46025:620;;;46081:2;46065:36;;;46102:12;:10;:12::i;:::-;46116:4;46122:7;46131:5;46065:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;46061:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46324:1;46307:6;:13;:18;46303:272;;;46350:60;;;;;;;;;;:::i;:::-;;;;;;;;46303:272;46525:6;46519:13;46510:6;46506:2;46502:15;46495:38;46061:529;46198:41;;;46188:51;;;:6;:51;;;;46181:58;;;;;46025:620;46629:4;46622:11;;45853:799;;;;;;;:::o;47224:126::-;;;;:::o;4883:127::-;4990:1;4972:7;:14;;;:19;;;;;;;;;;;4883:127;:::o;42116:110::-;42192:26;42202:2;42206:7;42192:26;;;;;;;;;;;;:9;:26::i;:::-;42116:110;;:::o;18264:387::-;18324:4;18532:12;18599:7;18587:20;18579:28;;18642:1;18635:4;:8;18628:15;;;18264:387;;;:::o;42453:321::-;42583:18;42589:2;42593:7;42583:5;:18::i;:::-;42634:54;42665:1;42669:2;42673:7;42682:5;42634:22;:54::i;:::-;42612:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;42453:321;;;:::o;43110:382::-;43204:1;43190:16;;:2;:16;;;;43182:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;43263:16;43271:7;43263;:16::i;:::-;43262:17;43254:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;43325:45;43354:1;43358:2;43362:7;43325:20;:45::i;:::-;43400:1;43383:9;:13;43393:2;43383:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;43431:2;43412:7;:16;43420:7;43412:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;43476:7;43472:2;43451:33;;43468:1;43451:33;;;;;;;;;;;;43110:382;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;24:722:1:-;120:5;145:81;161:64;218:6;161:64;:::i;:::-;145:81;:::i;:::-;136:90;;246:5;275:6;268:5;261:21;309:4;302:5;298:16;291:23;;335:6;385:3;377:4;369:6;365:17;360:3;356:27;353:36;350:143;;;404:79;;:::i;:::-;350:143;517:1;502:238;527:6;524:1;521:13;502:238;;;595:3;624:37;657:3;645:10;624:37;:::i;:::-;619:3;612:50;691:4;686:3;682:14;675:21;;725:4;720:3;716:14;709:21;;562:178;549:1;546;542:9;537:14;;502:238;;;506:14;126:620;;24:722;;;;;:::o;752:410::-;829:5;854:65;870:48;911:6;870:48;:::i;:::-;854:65;:::i;:::-;845:74;;942:6;935:5;928:21;980:4;973:5;969:16;1018:3;1009:6;1004:3;1000:16;997:25;994:112;;;1025:79;;:::i;:::-;994:112;1115:41;1149:6;1144:3;1139;1115:41;:::i;:::-;835:327;752:410;;;;;:::o;1168:139::-;1214:5;1252:6;1239:20;1230:29;;1268:33;1295:5;1268:33;:::i;:::-;1168:139;;;;:::o;1313:143::-;1370:5;1401:6;1395:13;1386:22;;1417:33;1444:5;1417:33;:::i;:::-;1313:143;;;;:::o;1479:370::-;1550:5;1599:3;1592:4;1584:6;1580:17;1576:27;1566:122;;1607:79;;:::i;:::-;1566:122;1724:6;1711:20;1749:94;1839:3;1831:6;1824:4;1816:6;1812:17;1749:94;:::i;:::-;1740:103;;1556:293;1479:370;;;;:::o;1855:133::-;1898:5;1936:6;1923:20;1914:29;;1952:30;1976:5;1952:30;:::i;:::-;1855:133;;;;:::o;1994:137::-;2039:5;2077:6;2064:20;2055:29;;2093:32;2119:5;2093:32;:::i;:::-;1994:137;;;;:::o;2137:141::-;2193:5;2224:6;2218:13;2209:22;;2240:32;2266:5;2240:32;:::i;:::-;2137:141;;;;:::o;2297:338::-;2352:5;2401:3;2394:4;2386:6;2382:17;2378:27;2368:122;;2409:79;;:::i;:::-;2368:122;2526:6;2513:20;2551:78;2625:3;2617:6;2610:4;2602:6;2598:17;2551:78;:::i;:::-;2542:87;;2358:277;2297:338;;;;:::o;2641:139::-;2687:5;2725:6;2712:20;2703:29;;2741:33;2768:5;2741:33;:::i;:::-;2641:139;;;;:::o;2786:329::-;2845:6;2894:2;2882:9;2873:7;2869:23;2865:32;2862:119;;;2900:79;;:::i;:::-;2862:119;3020:1;3045:53;3090:7;3081:6;3070:9;3066:22;3045:53;:::i;:::-;3035:63;;2991:117;2786:329;;;;:::o;3121:351::-;3191:6;3240:2;3228:9;3219:7;3215:23;3211:32;3208:119;;;3246:79;;:::i;:::-;3208:119;3366:1;3391:64;3447:7;3438:6;3427:9;3423:22;3391:64;:::i;:::-;3381:74;;3337:128;3121:351;;;;:::o;3478:474::-;3546:6;3554;3603:2;3591:9;3582:7;3578:23;3574:32;3571:119;;;3609:79;;:::i;:::-;3571:119;3729:1;3754:53;3799:7;3790:6;3779:9;3775:22;3754:53;:::i;:::-;3744:63;;3700:117;3856:2;3882:53;3927:7;3918:6;3907:9;3903:22;3882:53;:::i;:::-;3872:63;;3827:118;3478:474;;;;;:::o;3958:619::-;4035:6;4043;4051;4100:2;4088:9;4079:7;4075:23;4071:32;4068:119;;;4106:79;;:::i;:::-;4068:119;4226:1;4251:53;4296:7;4287:6;4276:9;4272:22;4251:53;:::i;:::-;4241:63;;4197:117;4353:2;4379:53;4424:7;4415:6;4404:9;4400:22;4379:53;:::i;:::-;4369:63;;4324:118;4481:2;4507:53;4552:7;4543:6;4532:9;4528:22;4507:53;:::i;:::-;4497:63;;4452:118;3958:619;;;;;:::o;4583:943::-;4678:6;4686;4694;4702;4751:3;4739:9;4730:7;4726:23;4722:33;4719:120;;;4758:79;;:::i;:::-;4719:120;4878:1;4903:53;4948:7;4939:6;4928:9;4924:22;4903:53;:::i;:::-;4893:63;;4849:117;5005:2;5031:53;5076:7;5067:6;5056:9;5052:22;5031:53;:::i;:::-;5021:63;;4976:118;5133:2;5159:53;5204:7;5195:6;5184:9;5180:22;5159:53;:::i;:::-;5149:63;;5104:118;5289:2;5278:9;5274:18;5261:32;5320:18;5312:6;5309:30;5306:117;;;5342:79;;:::i;:::-;5306:117;5447:62;5501:7;5492:6;5481:9;5477:22;5447:62;:::i;:::-;5437:72;;5232:287;4583:943;;;;;;;:::o;5532:468::-;5597:6;5605;5654:2;5642:9;5633:7;5629:23;5625:32;5622:119;;;5660:79;;:::i;:::-;5622:119;5780:1;5805:53;5850:7;5841:6;5830:9;5826:22;5805:53;:::i;:::-;5795:63;;5751:117;5907:2;5933:50;5975:7;5966:6;5955:9;5951:22;5933:50;:::i;:::-;5923:60;;5878:115;5532:468;;;;;:::o;6006:474::-;6074:6;6082;6131:2;6119:9;6110:7;6106:23;6102:32;6099:119;;;6137:79;;:::i;:::-;6099:119;6257:1;6282:53;6327:7;6318:6;6307:9;6303:22;6282:53;:::i;:::-;6272:63;;6228:117;6384:2;6410:53;6455:7;6446:6;6435:9;6431:22;6410:53;:::i;:::-;6400:63;;6355:118;6006:474;;;;;:::o;6486:539::-;6570:6;6619:2;6607:9;6598:7;6594:23;6590:32;6587:119;;;6625:79;;:::i;:::-;6587:119;6773:1;6762:9;6758:17;6745:31;6803:18;6795:6;6792:30;6789:117;;;6825:79;;:::i;:::-;6789:117;6930:78;7000:7;6991:6;6980:9;6976:22;6930:78;:::i;:::-;6920:88;;6716:302;6486:539;;;;:::o;7031:327::-;7089:6;7138:2;7126:9;7117:7;7113:23;7109:32;7106:119;;;7144:79;;:::i;:::-;7106:119;7264:1;7289:52;7333:7;7324:6;7313:9;7309:22;7289:52;:::i;:::-;7279:62;;7235:116;7031:327;;;;:::o;7364:349::-;7433:6;7482:2;7470:9;7461:7;7457:23;7453:32;7450:119;;;7488:79;;:::i;:::-;7450:119;7608:1;7633:63;7688:7;7679:6;7668:9;7664:22;7633:63;:::i;:::-;7623:73;;7579:127;7364:349;;;;:::o;7719:329::-;7778:6;7827:2;7815:9;7806:7;7802:23;7798:32;7795:119;;;7833:79;;:::i;:::-;7795:119;7953:1;7978:53;8023:7;8014:6;8003:9;7999:22;7978:53;:::i;:::-;7968:63;;7924:117;7719:329;;;;:::o;8054:118::-;8141:24;8159:5;8141:24;:::i;:::-;8136:3;8129:37;8054:118;;:::o;8178:109::-;8259:21;8274:5;8259:21;:::i;:::-;8254:3;8247:34;8178:109;;:::o;8293:360::-;8379:3;8407:38;8439:5;8407:38;:::i;:::-;8461:70;8524:6;8519:3;8461:70;:::i;:::-;8454:77;;8540:52;8585:6;8580:3;8573:4;8566:5;8562:16;8540:52;:::i;:::-;8617:29;8639:6;8617:29;:::i;:::-;8612:3;8608:39;8601:46;;8383:270;8293:360;;;;:::o;8659:364::-;8747:3;8775:39;8808:5;8775:39;:::i;:::-;8830:71;8894:6;8889:3;8830:71;:::i;:::-;8823:78;;8910:52;8955:6;8950:3;8943:4;8936:5;8932:16;8910:52;:::i;:::-;8987:29;9009:6;8987:29;:::i;:::-;8982:3;8978:39;8971:46;;8751:272;8659:364;;;;:::o;9029:377::-;9135:3;9163:39;9196:5;9163:39;:::i;:::-;9218:89;9300:6;9295:3;9218:89;:::i;:::-;9211:96;;9316:52;9361:6;9356:3;9349:4;9342:5;9338:16;9316:52;:::i;:::-;9393:6;9388:3;9384:16;9377:23;;9139:267;9029:377;;;;:::o;9412:400::-;9572:3;9593:84;9675:1;9670:3;9593:84;:::i;:::-;9586:91;;9686:93;9775:3;9686:93;:::i;:::-;9804:1;9799:3;9795:11;9788:18;;9412:400;;;:::o;9818:366::-;9960:3;9981:67;10045:2;10040:3;9981:67;:::i;:::-;9974:74;;10057:93;10146:3;10057:93;:::i;:::-;10175:2;10170:3;10166:12;10159:19;;9818:366;;;:::o;10190:::-;10332:3;10353:67;10417:2;10412:3;10353:67;:::i;:::-;10346:74;;10429:93;10518:3;10429:93;:::i;:::-;10547:2;10542:3;10538:12;10531:19;;10190:366;;;:::o;10562:::-;10704:3;10725:67;10789:2;10784:3;10725:67;:::i;:::-;10718:74;;10801:93;10890:3;10801:93;:::i;:::-;10919:2;10914:3;10910:12;10903:19;;10562:366;;;:::o;10934:::-;11076:3;11097:67;11161:2;11156:3;11097:67;:::i;:::-;11090:74;;11173:93;11262:3;11173:93;:::i;:::-;11291:2;11286:3;11282:12;11275:19;;10934:366;;;:::o;11306:404::-;11466:3;11487:86;11569:3;11564;11487:86;:::i;:::-;11480:93;;11582;11671:3;11582:93;:::i;:::-;11700:3;11695;11691:13;11684:20;;11306:404;;;:::o;11716:402::-;11876:3;11897:85;11979:2;11974:3;11897:85;:::i;:::-;11890:92;;11991:93;12080:3;11991:93;:::i;:::-;12109:2;12104:3;12100:12;12093:19;;11716:402;;;:::o;12124:400::-;12284:3;12305:84;12387:1;12382:3;12305:84;:::i;:::-;12298:91;;12398:93;12487:3;12398:93;:::i;:::-;12516:1;12511:3;12507:11;12500:18;;12124:400;;;:::o;12530:::-;12690:3;12711:84;12793:1;12788:3;12711:84;:::i;:::-;12704:91;;12804:93;12893:3;12804:93;:::i;:::-;12922:1;12917:3;12913:11;12906:18;;12530:400;;;:::o;12936:366::-;13078:3;13099:67;13163:2;13158:3;13099:67;:::i;:::-;13092:74;;13175:93;13264:3;13175:93;:::i;:::-;13293:2;13288:3;13284:12;13277:19;;12936:366;;;:::o;13308:::-;13450:3;13471:67;13535:2;13530:3;13471:67;:::i;:::-;13464:74;;13547:93;13636:3;13547:93;:::i;:::-;13665:2;13660:3;13656:12;13649:19;;13308:366;;;:::o;13680:::-;13822:3;13843:67;13907:2;13902:3;13843:67;:::i;:::-;13836:74;;13919:93;14008:3;13919:93;:::i;:::-;14037:2;14032:3;14028:12;14021:19;;13680:366;;;:::o;14052:::-;14194:3;14215:67;14279:2;14274:3;14215:67;:::i;:::-;14208:74;;14291:93;14380:3;14291:93;:::i;:::-;14409:2;14404:3;14400:12;14393:19;;14052:366;;;:::o;14424:::-;14566:3;14587:67;14651:2;14646:3;14587:67;:::i;:::-;14580:74;;14663:93;14752:3;14663:93;:::i;:::-;14781:2;14776:3;14772:12;14765:19;;14424:366;;;:::o;14796:::-;14938:3;14959:67;15023:2;15018:3;14959:67;:::i;:::-;14952:74;;15035:93;15124:3;15035:93;:::i;:::-;15153:2;15148:3;15144:12;15137:19;;14796:366;;;:::o;15168:::-;15310:3;15331:67;15395:2;15390:3;15331:67;:::i;:::-;15324:74;;15407:93;15496:3;15407:93;:::i;:::-;15525:2;15520:3;15516:12;15509:19;;15168:366;;;:::o;15540:404::-;15700:3;15721:86;15803:3;15798;15721:86;:::i;:::-;15714:93;;15816;15905:3;15816:93;:::i;:::-;15934:3;15929;15925:13;15918:20;;15540:404;;;:::o;15950:366::-;16092:3;16113:67;16177:2;16172:3;16113:67;:::i;:::-;16106:74;;16189:93;16278:3;16189:93;:::i;:::-;16307:2;16302:3;16298:12;16291:19;;15950:366;;;:::o;16322:::-;16464:3;16485:67;16549:2;16544:3;16485:67;:::i;:::-;16478:74;;16561:93;16650:3;16561:93;:::i;:::-;16679:2;16674:3;16670:12;16663:19;;16322:366;;;:::o;16694:::-;16836:3;16857:67;16921:2;16916:3;16857:67;:::i;:::-;16850:74;;16933:93;17022:3;16933:93;:::i;:::-;17051:2;17046:3;17042:12;17035:19;;16694:366;;;:::o;17066:400::-;17226:3;17247:84;17329:1;17324:3;17247:84;:::i;:::-;17240:91;;17340:93;17429:3;17340:93;:::i;:::-;17458:1;17453:3;17449:11;17442:18;;17066:400;;;:::o;17472:366::-;17614:3;17635:67;17699:2;17694:3;17635:67;:::i;:::-;17628:74;;17711:93;17800:3;17711:93;:::i;:::-;17829:2;17824:3;17820:12;17813:19;;17472:366;;;:::o;17844:::-;17986:3;18007:67;18071:2;18066:3;18007:67;:::i;:::-;18000:74;;18083:93;18172:3;18083:93;:::i;:::-;18201:2;18196:3;18192:12;18185:19;;17844:366;;;:::o;18216:::-;18358:3;18379:67;18443:2;18438:3;18379:67;:::i;:::-;18372:74;;18455:93;18544:3;18455:93;:::i;:::-;18573:2;18568:3;18564:12;18557:19;;18216:366;;;:::o;18588:::-;18730:3;18751:67;18815:2;18810:3;18751:67;:::i;:::-;18744:74;;18827:93;18916:3;18827:93;:::i;:::-;18945:2;18940:3;18936:12;18929:19;;18588:366;;;:::o;18960:::-;19102:3;19123:67;19187:2;19182:3;19123:67;:::i;:::-;19116:74;;19199:93;19288:3;19199:93;:::i;:::-;19317:2;19312:3;19308:12;19301:19;;18960:366;;;:::o;19332:400::-;19492:3;19513:84;19595:1;19590:3;19513:84;:::i;:::-;19506:91;;19606:93;19695:3;19606:93;:::i;:::-;19724:1;19719:3;19715:11;19708:18;;19332:400;;;:::o;19738:366::-;19880:3;19901:67;19965:2;19960:3;19901:67;:::i;:::-;19894:74;;19977:93;20066:3;19977:93;:::i;:::-;20095:2;20090:3;20086:12;20079:19;;19738:366;;;:::o;20110:::-;20252:3;20273:67;20337:2;20332:3;20273:67;:::i;:::-;20266:74;;20349:93;20438:3;20349:93;:::i;:::-;20467:2;20462:3;20458:12;20451:19;;20110:366;;;:::o;20482:404::-;20642:3;20663:86;20745:3;20740;20663:86;:::i;:::-;20656:93;;20758;20847:3;20758:93;:::i;:::-;20876:3;20871;20867:13;20860:20;;20482:404;;;:::o;20892:402::-;21052:3;21073:85;21155:2;21150:3;21073:85;:::i;:::-;21066:92;;21167:93;21256:3;21167:93;:::i;:::-;21285:2;21280:3;21276:12;21269:19;;20892:402;;;:::o;21300:::-;21460:3;21481:85;21563:2;21558:3;21481:85;:::i;:::-;21474:92;;21575:93;21664:3;21575:93;:::i;:::-;21693:2;21688:3;21684:12;21677:19;;21300:402;;;:::o;21708:366::-;21850:3;21871:67;21935:2;21930:3;21871:67;:::i;:::-;21864:74;;21947:93;22036:3;21947:93;:::i;:::-;22065:2;22060:3;22056:12;22049:19;;21708:366;;;:::o;22080:::-;22222:3;22243:67;22307:2;22302:3;22243:67;:::i;:::-;22236:74;;22319:93;22408:3;22319:93;:::i;:::-;22437:2;22432:3;22428:12;22421:19;;22080:366;;;:::o;22452:402::-;22612:3;22633:85;22715:2;22710:3;22633:85;:::i;:::-;22626:92;;22727:93;22816:3;22727:93;:::i;:::-;22845:2;22840:3;22836:12;22829:19;;22452:402;;;:::o;22860:398::-;23019:3;23040:83;23121:1;23116:3;23040:83;:::i;:::-;23033:90;;23132:93;23221:3;23132:93;:::i;:::-;23250:1;23245:3;23241:11;23234:18;;22860:398;;;:::o;23264:366::-;23406:3;23427:67;23491:2;23486:3;23427:67;:::i;:::-;23420:74;;23503:93;23592:3;23503:93;:::i;:::-;23621:2;23616:3;23612:12;23605:19;;23264:366;;;:::o;23636:::-;23778:3;23799:67;23863:2;23858:3;23799:67;:::i;:::-;23792:74;;23875:93;23964:3;23875:93;:::i;:::-;23993:2;23988:3;23984:12;23977:19;;23636:366;;;:::o;24008:402::-;24168:3;24189:85;24271:2;24266:3;24189:85;:::i;:::-;24182:92;;24283:93;24372:3;24283:93;:::i;:::-;24401:2;24396:3;24392:12;24385:19;;24008:402;;;:::o;24416:::-;24576:3;24597:85;24679:2;24674:3;24597:85;:::i;:::-;24590:92;;24691:93;24780:3;24691:93;:::i;:::-;24809:2;24804:3;24800:12;24793:19;;24416:402;;;:::o;24824:366::-;24966:3;24987:67;25051:2;25046:3;24987:67;:::i;:::-;24980:74;;25063:93;25152:3;25063:93;:::i;:::-;25181:2;25176:3;25172:12;25165:19;;24824:366;;;:::o;25196:402::-;25356:3;25377:85;25459:2;25454:3;25377:85;:::i;:::-;25370:92;;25471:93;25560:3;25471:93;:::i;:::-;25589:2;25584:3;25580:12;25573:19;;25196:402;;;:::o;25604:::-;25764:3;25785:85;25867:2;25862:3;25785:85;:::i;:::-;25778:92;;25879:93;25968:3;25879:93;:::i;:::-;25997:2;25992:3;25988:12;25981:19;;25604:402;;;:::o;26012:118::-;26099:24;26117:5;26099:24;:::i;:::-;26094:3;26087:37;26012:118;;:::o;26136:275::-;26268:3;26290:95;26381:3;26372:6;26290:95;:::i;:::-;26283:102;;26402:3;26395:10;;26136:275;;;;:::o;26417:1075::-;26789:3;26811:95;26902:3;26893:6;26811:95;:::i;:::-;26804:102;;26923:95;27014:3;27005:6;26923:95;:::i;:::-;26916:102;;27035:95;27126:3;27117:6;27035:95;:::i;:::-;27028:102;;27147:95;27238:3;27229:6;27147:95;:::i;:::-;27140:102;;27259:95;27350:3;27341:6;27259:95;:::i;:::-;27252:102;;27371:95;27462:3;27453:6;27371:95;:::i;:::-;27364:102;;27483:3;27476:10;;26417:1075;;;;;;;;;:::o;27498:1555::-;28014:3;28036:95;28127:3;28118:6;28036:95;:::i;:::-;28029:102;;28148:95;28239:3;28230:6;28148:95;:::i;:::-;28141:102;;28260:95;28351:3;28342:6;28260:95;:::i;:::-;28253:102;;28372:95;28463:3;28454:6;28372:95;:::i;:::-;28365:102;;28484:95;28575:3;28566:6;28484:95;:::i;:::-;28477:102;;28596:95;28687:3;28678:6;28596:95;:::i;:::-;28589:102;;28708:95;28799:3;28790:6;28708:95;:::i;:::-;28701:102;;28820:95;28911:3;28902:6;28820:95;:::i;:::-;28813:102;;28932:95;29023:3;29014:6;28932:95;:::i;:::-;28925:102;;29044:3;29037:10;;27498:1555;;;;;;;;;;;;:::o;29059:2617::-;30042:3;30064:148;30208:3;30064:148;:::i;:::-;30057:155;;30229:95;30320:3;30311:6;30229:95;:::i;:::-;30222:102;;30341:148;30485:3;30341:148;:::i;:::-;30334:155;;30506:148;30650:3;30506:148;:::i;:::-;30499:155;;30671:148;30815:3;30671:148;:::i;:::-;30664:155;;30836:95;30927:3;30918:6;30836:95;:::i;:::-;30829:102;;30948:148;31092:3;30948:148;:::i;:::-;30941:155;;31113:95;31204:3;31195:6;31113:95;:::i;:::-;31106:102;;31225:148;31369:3;31225:148;:::i;:::-;31218:155;;31390:95;31481:3;31472:6;31390:95;:::i;:::-;31383:102;;31502:148;31646:3;31502:148;:::i;:::-;31495:155;;31667:3;31660:10;;29059:2617;;;;;;;:::o;31682:541::-;31915:3;31937:148;32081:3;31937:148;:::i;:::-;31930:155;;32102:95;32193:3;32184:6;32102:95;:::i;:::-;32095:102;;32214:3;32207:10;;31682:541;;;;:::o;32229:::-;32462:3;32484:148;32628:3;32484:148;:::i;:::-;32477:155;;32649:95;32740:3;32731:6;32649:95;:::i;:::-;32642:102;;32761:3;32754:10;;32229:541;;;;:::o;32776:913::-;33163:3;33185:148;33329:3;33185:148;:::i;:::-;33178:155;;33350:148;33494:3;33350:148;:::i;:::-;33343:155;;33515:148;33659:3;33515:148;:::i;:::-;33508:155;;33680:3;33673:10;;32776:913;;;:::o;33695:541::-;33928:3;33950:148;34094:3;33950:148;:::i;:::-;33943:155;;34115:95;34206:3;34197:6;34115:95;:::i;:::-;34108:102;;34227:3;34220:10;;33695:541;;;;:::o;34242:379::-;34426:3;34448:147;34591:3;34448:147;:::i;:::-;34441:154;;34612:3;34605:10;;34242:379;;;:::o;34627:381::-;34812:3;34834:148;34978:3;34834:148;:::i;:::-;34827:155;;34999:3;34992:10;;34627:381;;;:::o;35014:541::-;35247:3;35269:148;35413:3;35269:148;:::i;:::-;35262:155;;35434:95;35525:3;35516:6;35434:95;:::i;:::-;35427:102;;35546:3;35539:10;;35014:541;;;;:::o;35561:807::-;35895:3;35917:148;36061:3;35917:148;:::i;:::-;35910:155;;36082:95;36173:3;36164:6;36082:95;:::i;:::-;36075:102;;36194:148;36338:3;36194:148;:::i;:::-;36187:155;;36359:3;36352:10;;35561:807;;;;:::o;36374:222::-;36467:4;36505:2;36494:9;36490:18;36482:26;;36518:71;36586:1;36575:9;36571:17;36562:6;36518:71;:::i;:::-;36374:222;;;;:::o;36602:640::-;36797:4;36835:3;36824:9;36820:19;36812:27;;36849:71;36917:1;36906:9;36902:17;36893:6;36849:71;:::i;:::-;36930:72;36998:2;36987:9;36983:18;36974:6;36930:72;:::i;:::-;37012;37080:2;37069:9;37065:18;37056:6;37012:72;:::i;:::-;37131:9;37125:4;37121:20;37116:2;37105:9;37101:18;37094:48;37159:76;37230:4;37221:6;37159:76;:::i;:::-;37151:84;;36602:640;;;;;;;:::o;37248:210::-;37335:4;37373:2;37362:9;37358:18;37350:26;;37386:65;37448:1;37437:9;37433:17;37424:6;37386:65;:::i;:::-;37248:210;;;;:::o;37464:313::-;37577:4;37615:2;37604:9;37600:18;37592:26;;37664:9;37658:4;37654:20;37650:1;37639:9;37635:17;37628:47;37692:78;37765:4;37756:6;37692:78;:::i;:::-;37684:86;;37464:313;;;;:::o;37783:419::-;37949:4;37987:2;37976:9;37972:18;37964:26;;38036:9;38030:4;38026:20;38022:1;38011:9;38007:17;38000:47;38064:131;38190:4;38064:131;:::i;:::-;38056:139;;37783:419;;;:::o;38208:::-;38374:4;38412:2;38401:9;38397:18;38389:26;;38461:9;38455:4;38451:20;38447:1;38436:9;38432:17;38425:47;38489:131;38615:4;38489:131;:::i;:::-;38481:139;;38208:419;;;:::o;38633:::-;38799:4;38837:2;38826:9;38822:18;38814:26;;38886:9;38880:4;38876:20;38872:1;38861:9;38857:17;38850:47;38914:131;39040:4;38914:131;:::i;:::-;38906:139;;38633:419;;;:::o;39058:::-;39224:4;39262:2;39251:9;39247:18;39239:26;;39311:9;39305:4;39301:20;39297:1;39286:9;39282:17;39275:47;39339:131;39465:4;39339:131;:::i;:::-;39331:139;;39058:419;;;:::o;39483:::-;39649:4;39687:2;39676:9;39672:18;39664:26;;39736:9;39730:4;39726:20;39722:1;39711:9;39707:17;39700:47;39764:131;39890:4;39764:131;:::i;:::-;39756:139;;39483:419;;;:::o;39908:::-;40074:4;40112:2;40101:9;40097:18;40089:26;;40161:9;40155:4;40151:20;40147:1;40136:9;40132:17;40125:47;40189:131;40315:4;40189:131;:::i;:::-;40181:139;;39908:419;;;:::o;40333:::-;40499:4;40537:2;40526:9;40522:18;40514:26;;40586:9;40580:4;40576:20;40572:1;40561:9;40557:17;40550:47;40614:131;40740:4;40614:131;:::i;:::-;40606:139;;40333:419;;;:::o;40758:::-;40924:4;40962:2;40951:9;40947:18;40939:26;;41011:9;41005:4;41001:20;40997:1;40986:9;40982:17;40975:47;41039:131;41165:4;41039:131;:::i;:::-;41031:139;;40758:419;;;:::o;41183:::-;41349:4;41387:2;41376:9;41372:18;41364:26;;41436:9;41430:4;41426:20;41422:1;41411:9;41407:17;41400:47;41464:131;41590:4;41464:131;:::i;:::-;41456:139;;41183:419;;;:::o;41608:::-;41774:4;41812:2;41801:9;41797:18;41789:26;;41861:9;41855:4;41851:20;41847:1;41836:9;41832:17;41825:47;41889:131;42015:4;41889:131;:::i;:::-;41881:139;;41608:419;;;:::o;42033:::-;42199:4;42237:2;42226:9;42222:18;42214:26;;42286:9;42280:4;42276:20;42272:1;42261:9;42257:17;42250:47;42314:131;42440:4;42314:131;:::i;:::-;42306:139;;42033:419;;;:::o;42458:::-;42624:4;42662:2;42651:9;42647:18;42639:26;;42711:9;42705:4;42701:20;42697:1;42686:9;42682:17;42675:47;42739:131;42865:4;42739:131;:::i;:::-;42731:139;;42458:419;;;:::o;42883:::-;43049:4;43087:2;43076:9;43072:18;43064:26;;43136:9;43130:4;43126:20;43122:1;43111:9;43107:17;43100:47;43164:131;43290:4;43164:131;:::i;:::-;43156:139;;42883:419;;;:::o;43308:::-;43474:4;43512:2;43501:9;43497:18;43489:26;;43561:9;43555:4;43551:20;43547:1;43536:9;43532:17;43525:47;43589:131;43715:4;43589:131;:::i;:::-;43581:139;;43308:419;;;:::o;43733:::-;43899:4;43937:2;43926:9;43922:18;43914:26;;43986:9;43980:4;43976:20;43972:1;43961:9;43957:17;43950:47;44014:131;44140:4;44014:131;:::i;:::-;44006:139;;43733:419;;;:::o;44158:::-;44324:4;44362:2;44351:9;44347:18;44339:26;;44411:9;44405:4;44401:20;44397:1;44386:9;44382:17;44375:47;44439:131;44565:4;44439:131;:::i;:::-;44431:139;;44158:419;;;:::o;44583:::-;44749:4;44787:2;44776:9;44772:18;44764:26;;44836:9;44830:4;44826:20;44822:1;44811:9;44807:17;44800:47;44864:131;44990:4;44864:131;:::i;:::-;44856:139;;44583:419;;;:::o;45008:::-;45174:4;45212:2;45201:9;45197:18;45189:26;;45261:9;45255:4;45251:20;45247:1;45236:9;45232:17;45225:47;45289:131;45415:4;45289:131;:::i;:::-;45281:139;;45008:419;;;:::o;45433:::-;45599:4;45637:2;45626:9;45622:18;45614:26;;45686:9;45680:4;45676:20;45672:1;45661:9;45657:17;45650:47;45714:131;45840:4;45714:131;:::i;:::-;45706:139;;45433:419;;;:::o;45858:::-;46024:4;46062:2;46051:9;46047:18;46039:26;;46111:9;46105:4;46101:20;46097:1;46086:9;46082:17;46075:47;46139:131;46265:4;46139:131;:::i;:::-;46131:139;;45858:419;;;:::o;46283:::-;46449:4;46487:2;46476:9;46472:18;46464:26;;46536:9;46530:4;46526:20;46522:1;46511:9;46507:17;46500:47;46564:131;46690:4;46564:131;:::i;:::-;46556:139;;46283:419;;;:::o;46708:::-;46874:4;46912:2;46901:9;46897:18;46889:26;;46961:9;46955:4;46951:20;46947:1;46936:9;46932:17;46925:47;46989:131;47115:4;46989:131;:::i;:::-;46981:139;;46708:419;;;:::o;47133:::-;47299:4;47337:2;47326:9;47322:18;47314:26;;47386:9;47380:4;47376:20;47372:1;47361:9;47357:17;47350:47;47414:131;47540:4;47414:131;:::i;:::-;47406:139;;47133:419;;;:::o;47558:::-;47724:4;47762:2;47751:9;47747:18;47739:26;;47811:9;47805:4;47801:20;47797:1;47786:9;47782:17;47775:47;47839:131;47965:4;47839:131;:::i;:::-;47831:139;;47558:419;;;:::o;47983:::-;48149:4;48187:2;48176:9;48172:18;48164:26;;48236:9;48230:4;48226:20;48222:1;48211:9;48207:17;48200:47;48264:131;48390:4;48264:131;:::i;:::-;48256:139;;47983:419;;;:::o;48408:::-;48574:4;48612:2;48601:9;48597:18;48589:26;;48661:9;48655:4;48651:20;48647:1;48636:9;48632:17;48625:47;48689:131;48815:4;48689:131;:::i;:::-;48681:139;;48408:419;;;:::o;48833:222::-;48926:4;48964:2;48953:9;48949:18;48941:26;;48977:71;49045:1;49034:9;49030:17;49021:6;48977:71;:::i;:::-;48833:222;;;;:::o;49061:129::-;49095:6;49122:20;;:::i;:::-;49112:30;;49151:33;49179:4;49171:6;49151:33;:::i;:::-;49061:129;;;:::o;49196:75::-;49229:6;49262:2;49256:9;49246:19;;49196:75;:::o;49277:311::-;49354:4;49444:18;49436:6;49433:30;49430:56;;;49466:18;;:::i;:::-;49430:56;49516:4;49508:6;49504:17;49496:25;;49576:4;49570;49566:15;49558:23;;49277:311;;;:::o;49594:307::-;49655:4;49745:18;49737:6;49734:30;49731:56;;;49767:18;;:::i;:::-;49731:56;49805:29;49827:6;49805:29;:::i;:::-;49797:37;;49889:4;49883;49879:15;49871:23;;49594:307;;;:::o;49907:98::-;49958:6;49992:5;49986:12;49976:22;;49907:98;;;:::o;50011:99::-;50063:6;50097:5;50091:12;50081:22;;50011:99;;;:::o;50116:168::-;50199:11;50233:6;50228:3;50221:19;50273:4;50268:3;50264:14;50249:29;;50116:168;;;;:::o;50290:147::-;50391:11;50428:3;50413:18;;50290:147;;;;:::o;50443:169::-;50527:11;50561:6;50556:3;50549:19;50601:4;50596:3;50592:14;50577:29;;50443:169;;;;:::o;50618:148::-;50720:11;50757:3;50742:18;;50618:148;;;;:::o;50772:305::-;50812:3;50831:20;50849:1;50831:20;:::i;:::-;50826:25;;50865:20;50883:1;50865:20;:::i;:::-;50860:25;;51019:1;50951:66;50947:74;50944:1;50941:81;50938:107;;;51025:18;;:::i;:::-;50938:107;51069:1;51066;51062:9;51055:16;;50772:305;;;;:::o;51083:185::-;51123:1;51140:20;51158:1;51140:20;:::i;:::-;51135:25;;51174:20;51192:1;51174:20;:::i;:::-;51169:25;;51213:1;51203:35;;51218:18;;:::i;:::-;51203:35;51260:1;51257;51253:9;51248:14;;51083:185;;;;:::o;51274:348::-;51314:7;51337:20;51355:1;51337:20;:::i;:::-;51332:25;;51371:20;51389:1;51371:20;:::i;:::-;51366:25;;51559:1;51491:66;51487:74;51484:1;51481:81;51476:1;51469:9;51462:17;51458:105;51455:131;;;51566:18;;:::i;:::-;51455:131;51614:1;51611;51607:9;51596:20;;51274:348;;;;:::o;51628:191::-;51668:4;51688:20;51706:1;51688:20;:::i;:::-;51683:25;;51722:20;51740:1;51722:20;:::i;:::-;51717:25;;51761:1;51758;51755:8;51752:34;;;51766:18;;:::i;:::-;51752:34;51811:1;51808;51804:9;51796:17;;51628:191;;;;:::o;51825:96::-;51862:7;51891:24;51909:5;51891:24;:::i;:::-;51880:35;;51825:96;;;:::o;51927:90::-;51961:7;52004:5;51997:13;51990:21;51979:32;;51927:90;;;:::o;52023:149::-;52059:7;52099:66;52092:5;52088:78;52077:89;;52023:149;;;:::o;52178:126::-;52215:7;52255:42;52248:5;52244:54;52233:65;;52178:126;;;:::o;52310:77::-;52347:7;52376:5;52365:16;;52310:77;;;:::o;52393:154::-;52477:6;52472:3;52467;52454:30;52539:1;52530:6;52525:3;52521:16;52514:27;52393:154;;;:::o;52553:307::-;52621:1;52631:113;52645:6;52642:1;52639:13;52631:113;;;52730:1;52725:3;52721:11;52715:18;52711:1;52706:3;52702:11;52695:39;52667:2;52664:1;52660:10;52655:15;;52631:113;;;52762:6;52759:1;52756:13;52753:101;;;52842:1;52833:6;52828:3;52824:16;52817:27;52753:101;52602:258;52553:307;;;:::o;52866:320::-;52910:6;52947:1;52941:4;52937:12;52927:22;;52994:1;52988:4;52984:12;53015:18;53005:81;;53071:4;53063:6;53059:17;53049:27;;53005:81;53133:2;53125:6;53122:14;53102:18;53099:38;53096:84;;;53152:18;;:::i;:::-;53096:84;52917:269;52866:320;;;:::o;53192:281::-;53275:27;53297:4;53275:27;:::i;:::-;53267:6;53263:40;53405:6;53393:10;53390:22;53369:18;53357:10;53354:34;53351:62;53348:88;;;53416:18;;:::i;:::-;53348:88;53456:10;53452:2;53445:22;53235:238;53192:281;;:::o;53479:233::-;53518:3;53541:24;53559:5;53541:24;:::i;:::-;53532:33;;53587:66;53580:5;53577:77;53574:103;;;53657:18;;:::i;:::-;53574:103;53704:1;53697:5;53693:13;53686:20;;53479:233;;;:::o;53718:176::-;53750:1;53767:20;53785:1;53767:20;:::i;:::-;53762:25;;53801:20;53819:1;53801:20;:::i;:::-;53796:25;;53840:1;53830:35;;53845:18;;:::i;:::-;53830:35;53886:1;53883;53879:9;53874:14;;53718:176;;;;:::o;53900:180::-;53948:77;53945:1;53938:88;54045:4;54042:1;54035:15;54069:4;54066:1;54059:15;54086:180;54134:77;54131:1;54124:88;54231:4;54228:1;54221:15;54255:4;54252:1;54245:15;54272:180;54320:77;54317:1;54310:88;54417:4;54414:1;54407:15;54441:4;54438:1;54431:15;54458:180;54506:77;54503:1;54496:88;54603:4;54600:1;54593:15;54627:4;54624:1;54617:15;54644:180;54692:77;54689:1;54682:88;54789:4;54786:1;54779:15;54813:4;54810:1;54803:15;54830:117;54939:1;54936;54929:12;54953:117;55062:1;55059;55052:12;55076:117;55185:1;55182;55175:12;55199:117;55308:1;55305;55298:12;55322:117;55431:1;55428;55421:12;55445:102;55486:6;55537:2;55533:7;55528:2;55521:5;55517:14;55513:28;55503:38;;55445:102;;;:::o;55553:214::-;55693:66;55689:1;55681:6;55677:14;55670:90;55553:214;:::o;55773:174::-;55913:26;55909:1;55901:6;55897:14;55890:50;55773:174;:::o;55953:237::-;56093:34;56089:1;56081:6;56077:14;56070:58;56162:20;56157:2;56149:6;56145:15;56138:45;55953:237;:::o;56196:225::-;56336:34;56332:1;56324:6;56320:14;56313:58;56405:8;56400:2;56392:6;56388:15;56381:33;56196:225;:::o;56427:178::-;56567:30;56563:1;56555:6;56551:14;56544:54;56427:178;:::o;56611:568::-;56751:66;56747:1;56739:6;56735:14;56728:90;56852:66;56847:2;56839:6;56835:15;56828:91;56953:66;56948:2;56940:6;56936:15;56929:91;57054:66;57049:2;57041:6;57037:15;57030:91;57156:15;57150:3;57142:6;57138:16;57131:41;56611:568;:::o;57185:214::-;57325:66;57321:1;57313:6;57309:14;57302:90;57185:214;:::o;57405:153::-;57545:5;57541:1;57533:6;57529:14;57522:29;57405:153;:::o;57564:159::-;57704:11;57700:1;57692:6;57688:14;57681:35;57564:159;:::o;57729:223::-;57869:34;57865:1;57857:6;57853:14;57846:58;57938:6;57933:2;57925:6;57921:15;57914:31;57729:223;:::o;57958:175::-;58098:27;58094:1;58086:6;58082:14;58075:51;57958:175;:::o;58139:179::-;58279:31;58275:1;58267:6;58263:14;58256:55;58139:179;:::o;58324:231::-;58464:34;58460:1;58452:6;58448:14;58441:58;58533:14;58528:2;58520:6;58516:15;58509:39;58324:231;:::o;58561:172::-;58701:24;58697:1;58689:6;58685:14;58678:48;58561:172;:::o;58739:226::-;58879:34;58875:1;58867:6;58863:14;58856:58;58948:9;58943:2;58935:6;58931:15;58924:34;58739:226;:::o;58971:161::-;59111:13;59107:1;59099:6;59095:14;59088:37;58971:161;:::o;59138:2149::-;59278:66;59274:1;59266:6;59262:14;59255:90;59379:66;59374:2;59366:6;59362:15;59355:91;59480:66;59475:2;59467:6;59463:15;59456:91;59581:66;59576:2;59568:6;59564:15;59557:91;59683:66;59677:3;59669:6;59665:16;59658:92;59785:66;59779:3;59771:6;59767:16;59760:92;59887:66;59881:3;59873:6;59869:16;59862:92;59989:66;59983:3;59975:6;59971:16;59964:92;60091:66;60085:3;60077:6;60073:16;60066:92;60193:66;60187:3;60179:6;60175:16;60168:92;60295:66;60289:3;60281:6;60277:16;60270:92;60397:66;60391:3;60383:6;60379:16;60372:92;60499:66;60493:3;60485:6;60481:16;60474:92;60601:66;60595:3;60587:6;60583:16;60576:92;60703:66;60697:3;60689:6;60685:16;60678:92;60805:66;60799:3;60791:6;60787:16;60780:92;60907:66;60901:3;60893:6;60889:16;60882:92;61009:66;61003:3;60995:6;60991:16;60984:92;61111:66;61105:3;61097:6;61093:16;61086:92;61213:66;61207:3;61199:6;61195:16;61188:92;59138:2149;:::o;61293:243::-;61433:34;61429:1;61421:6;61417:14;61410:58;61502:26;61497:2;61489:6;61485:15;61478:51;61293:243;:::o;61542:229::-;61682:34;61678:1;61670:6;61666:14;61659:58;61751:12;61746:2;61738:6;61734:15;61727:37;61542:229;:::o;61777:228::-;61917:34;61913:1;61905:6;61901:14;61894:58;61986:11;61981:2;61973:6;61969:15;61962:36;61777:228;:::o;62011:214::-;62151:66;62147:1;62139:6;62135:14;62128:90;62011:214;:::o;62231:182::-;62371:34;62367:1;62359:6;62355:14;62348:58;62231:182;:::o;62419:231::-;62559:34;62555:1;62547:6;62543:14;62536:58;62628:14;62623:2;62615:6;62611:15;62604:39;62419:231;:::o;62656:182::-;62796:34;62792:1;62784:6;62780:14;62773:58;62656:182;:::o;62844:172::-;62984:24;62980:1;62972:6;62968:14;62961:48;62844:172;:::o;63022:228::-;63162:34;63158:1;63150:6;63146:14;63139:58;63231:11;63226:2;63218:6;63214:15;63207:36;63022:228;:::o;63256:151::-;63396:3;63392:1;63384:6;63380:14;63373:27;63256:151;:::o;63413:234::-;63553:34;63549:1;63541:6;63537:14;63530:58;63622:17;63617:2;63609:6;63605:15;63598:42;63413:234;:::o;63653:171::-;63793:23;63789:1;63781:6;63777:14;63770:47;63653:171;:::o;63830:555::-;63970:34;63966:1;63958:6;63954:14;63947:58;64039:34;64034:2;64026:6;64022:15;64015:59;64108:66;64103:2;64095:6;64091:15;64084:91;64209:66;64204:2;64196:6;64192:15;64185:91;64311:66;64305:3;64297:6;64293:16;64286:92;63830:555;:::o;64391:261::-;64531:66;64527:1;64519:6;64515:14;64508:90;64632:12;64627:2;64619:6;64615:15;64608:37;64391:261;:::o;64658:214::-;64798:66;64794:1;64786:6;64782:14;64775:90;64658:214;:::o;64878:171::-;65018:23;65014:1;65006:6;65002:14;64995:47;64878:171;:::o;65055:220::-;65195:34;65191:1;65183:6;65179:14;65172:58;65264:3;65259:2;65251:6;65247:15;65240:28;65055:220;:::o;65281:179::-;65421:31;65417:1;65409:6;65405:14;65398:55;65281:179;:::o;65466:114::-;;:::o;65586:166::-;65726:18;65722:1;65714:6;65710:14;65703:42;65586:166;:::o;65758:236::-;65898:34;65894:1;65886:6;65882:14;65875:58;65967:19;65962:2;65954:6;65950:15;65943:44;65758:236;:::o;66000:315::-;66140:66;66136:1;66128:6;66124:14;66117:90;66241:66;66236:2;66228:6;66224:15;66217:91;66000:315;:::o;66321:166::-;66461:18;66457:1;66449:6;66445:14;66438:42;66321:166;:::o;66493:173::-;66633:25;66629:1;66621:6;66617:14;66610:49;66493:173;:::o;66672:176::-;66812:28;66808:1;66800:6;66796:14;66789:52;66672:176;:::o;66854:315::-;66994:66;66990:1;66982:6;66978:14;66971:90;67095:66;67090:2;67082:6;67078:15;67071:91;66854:315;:::o;67175:122::-;67248:24;67266:5;67248:24;:::i;:::-;67241:5;67238:35;67228:63;;67287:1;67284;67277:12;67228:63;67175:122;:::o;67303:116::-;67373:21;67388:5;67373:21;:::i;:::-;67366:5;67363:32;67353:60;;67409:1;67406;67399:12;67353:60;67303:116;:::o;67425:120::-;67497:23;67514:5;67497:23;:::i;:::-;67490:5;67487:34;67477:62;;67535:1;67532;67525:12;67477:62;67425:120;:::o;67551:122::-;67624:24;67642:5;67624:24;:::i;:::-;67617:5;67614:35;67604:63;;67663:1;67660;67653:12;67604:63;67551:122;:::o

Swarm Source

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