ETH Price: $3,269.38 (+0.57%)
Gas: 2 Gwei

Token

0xBROKERZ (BRKRZ)
 

Overview

Max Total Supply

1,477 BRKRZ

Holders

170

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
10 BRKRZ
0x5a934DD1967C9BB3a6Ff5A329de373A9dB920607
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:
OxBROKERZ

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-03-11
*/

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @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
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;


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

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

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

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


// OpenZeppelin Contracts v4.4.1 (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/security/ReentrancyGuard.sol


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

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

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


// OpenZeppelin Contracts v4.4.1 (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: contracts/ERC721A.sol


// Creators: locationtba.eth, 2pmflow.eth

pragma solidity ^0.8.0;









/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..).
 *
 * Does not support burning tokens to address(0).
 */
contract ERC721A is
  Context,
  ERC165,
  IERC721,
  IERC721Metadata,
  IERC721Enumerable
{
  using Address for address;
  using Strings for uint256;

  struct TokenOwnership {
    address addr;
    uint64 startTimestamp;
  }

  struct AddressData {
    uint128 balance;
    uint128 numberMinted;
  }

  uint256 private currentIndex = 0;

  uint256 internal immutable collectionSize;
  uint256 internal immutable maxBatchSize;

  // Token name
  string private _name;

  // Token symbol
  string private _symbol;

  // Mapping from token ID to ownership details
  // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details.
  mapping(uint256 => TokenOwnership) private _ownerships;

  // Mapping owner address to address data
  mapping(address => AddressData) private _addressData;

  // 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
   * `maxBatchSize` refers to how much a minter can mint at a time.
   */
  constructor(
    string memory name_,
    string memory symbol_,
    uint256 maxBatchSize_,
    uint256 collectionSize_
  ) {
    require(
      collectionSize_ > 0,
      "ERC721A: collection must have a nonzero supply"
    );
    require(maxBatchSize_ > 0, "ERC721A: max batch size must be nonzero");
    _name = name_;
    _symbol = symbol_;
    maxBatchSize = maxBatchSize_;
    collectionSize = collectionSize_;
  }

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

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

  /**
   * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
   * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first.
   * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
   */
  function tokenOfOwnerByIndex(address owner, uint256 index)
    public
    view
    override
    returns (uint256)
  {
    require(index < balanceOf(owner), "ERC721A: owner index out of bounds");
    uint256 numMintedSoFar = totalSupply();
    uint256 tokenIdsIdx = 0;
    address currOwnershipAddr = address(0);
    for (uint256 i = 0; i < numMintedSoFar; i++) {
      TokenOwnership memory ownership = _ownerships[i];
      if (ownership.addr != address(0)) {
        currOwnershipAddr = ownership.addr;
      }
      if (currOwnershipAddr == owner) {
        if (tokenIdsIdx == index) {
          return i;
        }
        tokenIdsIdx++;
      }
    }
    revert("ERC721A: unable to get token of owner by index");
  }

  /**
   * @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 ||
      interfaceId == type(IERC721Enumerable).interfaceId ||
      super.supportsInterface(interfaceId);
  }

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

  function _numberMinted(address owner) internal view returns (uint256) {
    require(
      owner != address(0),
      "ERC721A: number minted query for the zero address"
    );
    return uint256(_addressData[owner].numberMinted);
  }

  function ownershipOf(uint256 tokenId)
    internal
    view
    returns (TokenOwnership memory)
  {
    require(_exists(tokenId), "ERC721A: owner query for nonexistent token");

    uint256 lowestTokenToCheck;
    if (tokenId >= maxBatchSize) {
      lowestTokenToCheck = tokenId - maxBatchSize + 1;
    }

    for (uint256 curr = tokenId; curr >= lowestTokenToCheck; curr--) {
      TokenOwnership memory ownership = _ownerships[curr];
      if (ownership.addr != address(0)) {
        return ownership;
      }
    }

    revert("ERC721A: unable to determine the owner of token");
  }

  /**
   * @dev See {IERC721-ownerOf}.
   */
  function ownerOf(uint256 tokenId) public view override returns (address) {
    return ownershipOf(tokenId).addr;
  }

  /**
   * @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 override {
    address owner = ERC721A.ownerOf(tokenId);
    require(to != owner, "ERC721A: approval to current owner");

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

    _approve(to, tokenId, owner);
  }

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

    return _tokenApprovals[tokenId];
  }

  /**
   * @dev See {IERC721-setApprovalForAll}.
   */
  function setApprovalForAll(address operator, bool approved) public override {
    require(operator != _msgSender(), "ERC721A: 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 override {
    _transfer(from, to, tokenId);
  }

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

  /**
   * @dev See {IERC721-safeTransferFrom}.
   */
  function safeTransferFrom(
    address from,
    address to,
    uint256 tokenId,
    bytes memory _data
  ) public override {
    _transfer(from, to, tokenId);
    require(
      _checkOnERC721Received(from, to, tokenId, _data),
      "ERC721A: 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`),
   */
  function _exists(uint256 tokenId) internal view returns (bool) {
    return tokenId < currentIndex;
  }

  function _safeMint(address to, uint256 quantity) internal {
    _safeMint(to, quantity, "");
  }

  /**
   * @dev Mints `quantity` tokens and transfers them to `to`.
   *
   * Requirements:
   *
   * - `to` cannot be the zero address.
   * - `quantity` cannot be larger than the max batch size.
   *
   * Emits a {Transfer} event.
   */
  function _safeMint(
    address to,
    uint256 quantity,
    bytes memory _data
  ) internal {
    uint256 startTokenId = currentIndex;
    require(to != address(0), "ERC721A: mint to the zero address");
    // We know if the first token in the batch doesn't exist, the other ones don't as well, because of serial ordering.
    require(!_exists(startTokenId), "ERC721A: token already minted");
    require(quantity <= maxBatchSize, "ERC721A: quantity to mint too high");

    _beforeTokenTransfers(address(0), to, startTokenId, quantity);

    AddressData memory addressData = _addressData[to];
    _addressData[to] = AddressData(
      addressData.balance + uint128(quantity),
      addressData.numberMinted + uint128(quantity)
    );
    _ownerships[startTokenId] = TokenOwnership(to, uint64(block.timestamp));

    uint256 updatedIndex = startTokenId;

    for (uint256 i = 0; i < quantity; i++) {
      emit Transfer(address(0), to, updatedIndex);
      require(
        _checkOnERC721Received(address(0), to, updatedIndex, _data),
        "ERC721A: transfer to non ERC721Receiver implementer"
      );
      updatedIndex++;
    }

    currentIndex = updatedIndex;
    _afterTokenTransfers(address(0), to, startTokenId, quantity);
  }

  /**
   * @dev Transfers `tokenId` from `from` to `to`.
   *
   * 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
  ) private {
    TokenOwnership memory prevOwnership = ownershipOf(tokenId);

    bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr ||
      getApproved(tokenId) == _msgSender() ||
      isApprovedForAll(prevOwnership.addr, _msgSender()));

    require(
      isApprovedOrOwner,
      "ERC721A: transfer caller is not owner nor approved"
    );

    require(
      prevOwnership.addr == from,
      "ERC721A: transfer from incorrect owner"
    );
    require(to != address(0), "ERC721A: transfer to the zero address");

    _beforeTokenTransfers(from, to, tokenId, 1);

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

    _addressData[from].balance -= 1;
    _addressData[to].balance += 1;
    _ownerships[tokenId] = TokenOwnership(to, uint64(block.timestamp));

    // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
    // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
    uint256 nextTokenId = tokenId + 1;
    if (_ownerships[nextTokenId].addr == address(0)) {
      if (_exists(nextTokenId)) {
        _ownerships[nextTokenId] = TokenOwnership(
          prevOwnership.addr,
          prevOwnership.startTimestamp
        );
      }
    }

    emit Transfer(from, to, tokenId);
    _afterTokenTransfers(from, to, tokenId, 1);
  }

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

  uint256 public nextOwnerToExplicitlySet = 0;

  /**
   * @dev Explicitly set `owners` to eliminate loops in future calls of ownerOf().
   */
  function _setOwnersExplicit(uint256 quantity) internal {
    uint256 oldNextOwnerToSet = nextOwnerToExplicitlySet;
    require(quantity > 0, "quantity must be nonzero");
    uint256 endIndex = oldNextOwnerToSet + quantity - 1;
    if (endIndex > currentIndex - 1) {
      endIndex = currentIndex - 1;
    }
    // We know if the last one in the group exists, all in the group exist, due to serial ordering.
    require(_exists(endIndex), "not enough minted yet for this cleanup");
    for (uint256 i = oldNextOwnerToSet; i <= endIndex; i++) {
      if (_ownerships[i].addr == address(0)) {
        TokenOwnership memory ownership = ownershipOf(i);
        _ownerships[i] = TokenOwnership(
          ownership.addr,
          ownership.startTimestamp
        );
      }
    }
    nextOwnerToExplicitlySet = endIndex + 1;
  }

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

  /**
   * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
   *
   * startTokenId - the first token id to be transferred
   * quantity - the amount to be transferred
   *
   * 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`.
   */
  function _beforeTokenTransfers(
    address from,
    address to,
    uint256 startTokenId,
    uint256 quantity
  ) internal virtual {}

  /**
   * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes
   * minting.
   *
   * startTokenId - the first token id to be transferred
   * quantity - the amount to be transferred
   *
   * Calling conditions:
   *
   * - when `from` and `to` are both non-zero.
   * - `from` and `to` are never both zero.
   */
  function _afterTokenTransfers(
    address from,
    address to,
    uint256 startTokenId,
    uint256 quantity
  ) internal virtual {}
}

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

// File: contracts/contract_template_721a.sol



pragma solidity ^0.8.0;





contract OxBROKERZ is ERC721A, Ownable {
    uint256 public NFT_PRICE = 0.0069 ether;
    uint256 public MAX_SUPPLY = 2222;
    uint256 public MAX_MINTS = 10;
    string public projName = "0xBROKERZ";
    string public projSym = "BRKRZ";

    bool public DROP_ACTIVE = false;

    string public baseURI = "https://ipfs.io/ipfs/QmQZgWC5JMNLuNY1yCuSe8eEsheu8ut3ufy1cpn1VYJLnk/";
    mapping(address => uint) addressToReservedMints;
    
    constructor() ERC721A(projName, projSym, MAX_MINTS, MAX_SUPPLY) {}

    function mint(uint256 numTokens) public payable {
        require(DROP_ACTIVE, "Sale not started");
        require(
            numTokens > 0 && numTokens <= MAX_MINTS,
            "Must mint between 1 and 10 tokens"
        );
        require(totalSupply() + numTokens <= MAX_SUPPLY, "Sold Out");
        require(
            msg.value >= NFT_PRICE * numTokens,
            "Amount of ether sent is not enough"
        );

        _safeMint(msg.sender, numTokens);
    }

    function flipDropState() public onlyOwner {
        DROP_ACTIVE = !DROP_ACTIVE;
    }

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

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

    function setMaxMints(uint256 newMax) public onlyOwner {
        MAX_MINTS = newMax;
    }

    function staffMint(uint256 numTokens) public onlyOwner {
        MAX_SUPPLY = numTokens;
        _safeMint(msg.sender, 50);
    }

    function _baseURI() internal view virtual override returns (string memory) {
        return baseURI;
    }
    
    function reservedMintedBy() external view returns (uint256) {
        return addressToReservedMints[msg.sender];
    }

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"DROP_ACTIVE","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_MINTS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"NFT_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipDropState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numTokens","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"projName","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"projSym","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reservedMintedBy","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMax","type":"uint256"}],"name":"setMaxMints","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"numTokens","type":"uint256"}],"name":"staffMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60c06040526000805560006007556618838370f340006009556108ae600a55600a600b556040518060400160405280600981526020017f307842524f4b45525a0000000000000000000000000000000000000000000000815250600c9080519060200190620000709291906200040c565b506040518060400160405280600581526020017f42524b525a000000000000000000000000000000000000000000000000000000815250600d9080519060200190620000be9291906200040c565b506000600e60006101000a81548160ff02191690831515021790555060405180608001604052806044815260200162004da760449139600f90805190602001906200010b9291906200040c565b503480156200011957600080fd5b50600c805462000129906200055f565b80601f016020809104026020016040519081016040528092919081815260200182805462000157906200055f565b8015620001a85780601f106200017c57610100808354040283529160200191620001a8565b820191906000526020600020905b8154815290600101906020018083116200018a57829003601f168201915b5050505050600d8054620001bc906200055f565b80601f0160208091040260200160405190810160405280929190818152602001828054620001ea906200055f565b80156200023b5780601f106200020f576101008083540402835291602001916200023b565b820191906000526020600020905b8154815290600101906020018083116200021d57829003601f168201915b5050505050600b54600a54600081116200028c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000283906200052c565b60405180910390fd5b60008211620002d2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002c9906200050a565b60405180910390fd5b8360019080519060200190620002ea9291906200040c565b508260029080519060200190620003039291906200040c565b508160a08181525050806080818152505050505050620003386200032c6200033e60201b60201c565b6200034660201b60201c565b62000662565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200041a906200055f565b90600052602060002090601f0160209004810192826200043e57600085556200048a565b82601f106200045957805160ff19168380011785556200048a565b828001600101855582156200048a579182015b82811115620004895782518255916020019190600101906200046c565b5b5090506200049991906200049d565b5090565b5b80821115620004b85760008160009055506001016200049e565b5090565b6000620004cb6027836200054e565b9150620004d882620005c4565b604082019050919050565b6000620004f2602e836200054e565b9150620004ff8262000613565b604082019050919050565b600060208201905081810360008301526200052581620004bc565b9050919050565b600060208201905081810360008301526200054781620004e3565b9050919050565b600082825260208201905092915050565b600060028204905060018216806200057857607f821691505b602082108114156200058f576200058e62000595565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f455243373231413a206d61782062617463682073697a65206d7573742062652060008201527f6e6f6e7a65726f00000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060008201527f6e6f6e7a65726f20737570706c79000000000000000000000000000000000000602082015250565b60805160a05161471462000693600039600081816122d5015281816122fe01526129950152600050506147146000f3fe6080604052600436106102045760003560e01c8063715018a611610118578063b88d4fde116100a0578063da241d061161006f578063da241d0614610734578063e03c69e81461075f578063e985e9c51461078a578063f2fde38b146107c7578063f7cd09c7146107f057610204565b8063b88d4fde14610678578063c87b56dd146106a1578063cce132d1146106de578063d7224ba01461070957610204565b806395d89b41116100e757806395d89b41146105c657806396f8f6dd146105f1578063a0712d6814610608578063a22cb46514610624578063a7b8cd4d1461064d57610204565b8063715018a61461053257806379c9cb7b146105495780638da5cb5b1461057257806391b7f5ed1461059d57610204565b806332cb6b0c1161019b57806355f804b31161016a57806355f804b3146104395780636352211e14610462578063676dd5631461049f5780636c0360eb146104ca57806370a08231146104f557610204565b806332cb6b0c146103915780633ccfd60b146103bc57806342842e0e146103d35780634f6ccce7146103fc57610204565b806318160ddd116101d757806318160ddd146102d757806318ce801e1461030257806323b872dd1461032b5780632f745c591461035457610204565b806301ffc9a71461020957806306fdde0314610246578063081812fc14610271578063095ea7b3146102ae575b600080fd5b34801561021557600080fd5b50610230600480360381019061022b91906131cb565b61081b565b60405161023d919061373e565b60405180910390f35b34801561025257600080fd5b5061025b610965565b6040516102689190613759565b60405180910390f35b34801561027d57600080fd5b506102986004803603810190610293919061326e565b6109f7565b6040516102a591906136d7565b60405180910390f35b3480156102ba57600080fd5b506102d560048036038101906102d0919061318b565b610a7c565b005b3480156102e357600080fd5b506102ec610b95565b6040516102f99190613a7b565b60405180910390f35b34801561030e57600080fd5b506103296004803603810190610324919061326e565b610b9e565b005b34801561033757600080fd5b50610352600480360381019061034d9190613075565b610c2f565b005b34801561036057600080fd5b5061037b6004803603810190610376919061318b565b610c3f565b6040516103889190613a7b565b60405180910390f35b34801561039d57600080fd5b506103a6610e3d565b6040516103b39190613a7b565b60405180910390f35b3480156103c857600080fd5b506103d1610e43565b005b3480156103df57600080fd5b506103fa60048036038101906103f59190613075565b610eff565b005b34801561040857600080fd5b50610423600480360381019061041e919061326e565b610f1f565b6040516104309190613a7b565b60405180910390f35b34801561044557600080fd5b50610460600480360381019061045b9190613225565b610f72565b005b34801561046e57600080fd5b506104896004803603810190610484919061326e565b611008565b60405161049691906136d7565b60405180910390f35b3480156104ab57600080fd5b506104b461101e565b6040516104c19190613a7b565b60405180910390f35b3480156104d657600080fd5b506104df611024565b6040516104ec9190613759565b60405180910390f35b34801561050157600080fd5b5061051c60048036038101906105179190613008565b6110b2565b6040516105299190613a7b565b60405180910390f35b34801561053e57600080fd5b5061054761119b565b005b34801561055557600080fd5b50610570600480360381019061056b919061326e565b611223565b005b34801561057e57600080fd5b506105876112a9565b60405161059491906136d7565b60405180910390f35b3480156105a957600080fd5b506105c460048036038101906105bf919061326e565b6112d3565b005b3480156105d257600080fd5b506105db611359565b6040516105e89190613759565b60405180910390f35b3480156105fd57600080fd5b506106066113eb565b005b610622600480360381019061061d919061326e565b611493565b005b34801561063057600080fd5b5061064b6004803603810190610646919061314b565b6115e7565b005b34801561065957600080fd5b50610662611768565b60405161066f9190613a7b565b60405180910390f35b34801561068457600080fd5b5061069f600480360381019061069a91906130c8565b6117af565b005b3480156106ad57600080fd5b506106c860048036038101906106c3919061326e565b61180b565b6040516106d59190613759565b60405180910390f35b3480156106ea57600080fd5b506106f36118b2565b6040516107009190613a7b565b60405180910390f35b34801561071557600080fd5b5061071e6118b8565b60405161072b9190613a7b565b60405180910390f35b34801561074057600080fd5b506107496118be565b6040516107569190613759565b60405180910390f35b34801561076b57600080fd5b5061077461194c565b6040516107819190613759565b60405180910390f35b34801561079657600080fd5b506107b160048036038101906107ac9190613035565b6119da565b6040516107be919061373e565b60405180910390f35b3480156107d357600080fd5b506107ee60048036038101906107e99190613008565b611a6e565b005b3480156107fc57600080fd5b50610805611b66565b604051610812919061373e565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108e657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061094e57507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061095e575061095d82611b79565b5b9050919050565b60606001805461097490613deb565b80601f01602080910402602001604051908101604052809291908181526020018280546109a090613deb565b80156109ed5780601f106109c2576101008083540402835291602001916109ed565b820191906000526020600020905b8154815290600101906020018083116109d057829003601f168201915b5050505050905090565b6000610a0282611be3565b610a41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3890613a3b565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a8782611008565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610af8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aef9061397b565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b17611bf0565b73ffffffffffffffffffffffffffffffffffffffff161480610b465750610b4581610b40611bf0565b6119da565b5b610b85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7c9061387b565b60405180910390fd5b610b90838383611bf8565b505050565b60008054905090565b610ba6611bf0565b73ffffffffffffffffffffffffffffffffffffffff16610bc46112a9565b73ffffffffffffffffffffffffffffffffffffffff1614610c1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c11906138db565b60405180910390fd5b80600a81905550610c2c336032611caa565b50565b610c3a838383611cc8565b505050565b6000610c4a836110b2565b8210610c8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c829061377b565b60405180910390fd5b6000610c95610b95565b905060008060005b83811015610dfb576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610d8f57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610de75786841415610dd8578195505050505050610e37565b8380610de390613e4e565b9450505b508080610df390613e4e565b915050610c9d565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2e906139fb565b60405180910390fd5b92915050565b600a5481565b610e4b611bf0565b73ffffffffffffffffffffffffffffffffffffffff16610e696112a9565b73ffffffffffffffffffffffffffffffffffffffff1614610ebf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb6906138db565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050610efd57600080fd5b565b610f1a838383604051806020016040528060008152506117af565b505050565b6000610f29610b95565b8210610f6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f61906137fb565b60405180910390fd5b819050919050565b610f7a611bf0565b73ffffffffffffffffffffffffffffffffffffffff16610f986112a9565b73ffffffffffffffffffffffffffffffffffffffff1614610fee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe5906138db565b60405180910390fd5b80600f9080519060200190611004929190612de2565b5050565b600061101382612281565b600001519050919050565b60095481565b600f805461103190613deb565b80601f016020809104026020016040519081016040528092919081815260200182805461105d90613deb565b80156110aa5780601f1061107f576101008083540402835291602001916110aa565b820191906000526020600020905b81548152906001019060200180831161108d57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611123576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111a9061389b565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6111a3611bf0565b73ffffffffffffffffffffffffffffffffffffffff166111c16112a9565b73ffffffffffffffffffffffffffffffffffffffff1614611217576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120e906138db565b60405180910390fd5b6112216000612484565b565b61122b611bf0565b73ffffffffffffffffffffffffffffffffffffffff166112496112a9565b73ffffffffffffffffffffffffffffffffffffffff161461129f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611296906138db565b60405180910390fd5b80600b8190555050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6112db611bf0565b73ffffffffffffffffffffffffffffffffffffffff166112f96112a9565b73ffffffffffffffffffffffffffffffffffffffff161461134f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611346906138db565b60405180910390fd5b8060098190555050565b60606002805461136890613deb565b80601f016020809104026020016040519081016040528092919081815260200182805461139490613deb565b80156113e15780601f106113b6576101008083540402835291602001916113e1565b820191906000526020600020905b8154815290600101906020018083116113c457829003601f168201915b5050505050905090565b6113f3611bf0565b73ffffffffffffffffffffffffffffffffffffffff166114116112a9565b73ffffffffffffffffffffffffffffffffffffffff1614611467576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145e906138db565b60405180910390fd5b600e60009054906101000a900460ff1615600e60006101000a81548160ff021916908315150217905550565b600e60009054906101000a900460ff166114e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d99061385b565b60405180910390fd5b6000811180156114f45750600b548111155b611533576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152a9061395b565b60405180910390fd5b600a548161153f610b95565b6115499190613ba6565b111561158a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115819061379b565b60405180910390fd5b806009546115989190613c2d565b3410156115da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d19061383b565b60405180910390fd5b6115e43382611caa565b50565b6115ef611bf0565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561165d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116549061391b565b60405180910390fd5b806006600061166a611bf0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611717611bf0565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161175c919061373e565b60405180910390a35050565b6000601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905090565b6117ba848484611cc8565b6117c68484848461254a565b611805576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117fc9061399b565b60405180910390fd5b50505050565b606061181682611be3565b611855576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184c906138fb565b60405180910390fd5b600061185f6126e1565b9050600081511161187f57604051806020016040528060008152506118aa565b8061188984612773565b60405160200161189a9291906136b3565b6040516020818303038152906040525b915050919050565b600b5481565b60075481565b600d80546118cb90613deb565b80601f01602080910402602001604051908101604052809291908181526020018280546118f790613deb565b80156119445780601f1061191957610100808354040283529160200191611944565b820191906000526020600020905b81548152906001019060200180831161192757829003601f168201915b505050505081565b600c805461195990613deb565b80601f016020809104026020016040519081016040528092919081815260200182805461198590613deb565b80156119d25780601f106119a7576101008083540402835291602001916119d2565b820191906000526020600020905b8154815290600101906020018083116119b557829003601f168201915b505050505081565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611a76611bf0565b73ffffffffffffffffffffffffffffffffffffffff16611a946112a9565b73ffffffffffffffffffffffffffffffffffffffff1614611aea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae1906138db565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611b5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b51906137bb565b60405180910390fd5b611b6381612484565b50565b600e60009054906101000a900460ff1681565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b611cc48282604051806020016040528060008152506128d4565b5050565b6000611cd382612281565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611cfa611bf0565b73ffffffffffffffffffffffffffffffffffffffff161480611d565750611d1f611bf0565b73ffffffffffffffffffffffffffffffffffffffff16611d3e846109f7565b73ffffffffffffffffffffffffffffffffffffffff16145b80611d725750611d718260000151611d6c611bf0565b6119da565b5b905080611db4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dab9061393b565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611e26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1d906138bb565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611e96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e8d9061381b565b60405180910390fd5b611ea38585856001612db3565b611eb36000848460000151611bf8565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16611f219190613c87565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16611fc59190613b60565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555090505060006001846120cb9190613ba6565b9050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156122115761214181611be3565b15612210576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506003600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46122798686866001612db9565b505050505050565b612289612e68565b61229282611be3565b6122d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122c8906137db565b60405180910390fd5b60007f000000000000000000000000000000000000000000000000000000000000000083106123355760017f0000000000000000000000000000000000000000000000000000000000000000846123289190613cbb565b6123329190613ba6565b90505b60008390505b818110612443576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461242f5780935050505061247f565b50808061243b90613dc1565b91505061233b565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161247690613a1b565b60405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600061256b8473ffffffffffffffffffffffffffffffffffffffff16612dbf565b156126d4578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612594611bf0565b8786866040518563ffffffff1660e01b81526004016125b694939291906136f2565b602060405180830381600087803b1580156125d057600080fd5b505af192505050801561260157506040513d601f19601f820116820180604052508101906125fe91906131f8565b60015b612684573d8060008114612631576040519150601f19603f3d011682016040523d82523d6000602084013e612636565b606091505b5060008151141561267c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126739061399b565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506126d9565b600190505b949350505050565b6060600f80546126f090613deb565b80601f016020809104026020016040519081016040528092919081815260200182805461271c90613deb565b80156127695780601f1061273e57610100808354040283529160200191612769565b820191906000526020600020905b81548152906001019060200180831161274c57829003601f168201915b5050505050905090565b606060008214156127bb576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506128cf565b600082905060005b600082146127ed5780806127d690613e4e565b915050600a826127e69190613bfc565b91506127c3565b60008167ffffffffffffffff81111561280957612808613f84565b5b6040519080825280601f01601f19166020018201604052801561283b5781602001600182028036833780820191505090505b5090505b600085146128c8576001826128549190613cbb565b9150600a856128639190613e97565b603061286f9190613ba6565b60f81b81838151811061288557612884613f55565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856128c19190613bfc565b945061283f565b8093505050505b919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561294a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612941906139db565b60405180910390fd5b61295381611be3565b15612993576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161298a906139bb565b60405180910390fd5b7f00000000000000000000000000000000000000000000000000000000000000008311156129f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129ed90613a5b565b60405180910390fd5b612a036000858386612db3565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff168152505090506040518060400160405280858360000151612b009190613b60565b6fffffffffffffffffffffffffffffffff168152602001858360200151612b279190613b60565b6fffffffffffffffffffffffffffffffff16815250600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b85811015612d9657818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612d36600088848861254a565b612d75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d6c9061399b565b60405180910390fd5b8180612d8090613e4e565b9250508080612d8e90613e4e565b915050612cc5565b5080600081905550612dab6000878588612db9565b505050505050565b50505050565b50505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b828054612dee90613deb565b90600052602060002090601f016020900481019282612e105760008555612e57565b82601f10612e2957805160ff1916838001178555612e57565b82800160010185558215612e57579182015b82811115612e56578251825591602001919060010190612e3b565b5b509050612e649190612ea2565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115612ebb576000816000905550600101612ea3565b5090565b6000612ed2612ecd84613abb565b613a96565b905082815260208101848484011115612eee57612eed613fb8565b5b612ef9848285613d7f565b509392505050565b6000612f14612f0f84613aec565b613a96565b905082815260208101848484011115612f3057612f2f613fb8565b5b612f3b848285613d7f565b509392505050565b600081359050612f5281614682565b92915050565b600081359050612f6781614699565b92915050565b600081359050612f7c816146b0565b92915050565b600081519050612f91816146b0565b92915050565b600082601f830112612fac57612fab613fb3565b5b8135612fbc848260208601612ebf565b91505092915050565b600082601f830112612fda57612fd9613fb3565b5b8135612fea848260208601612f01565b91505092915050565b600081359050613002816146c7565b92915050565b60006020828403121561301e5761301d613fc2565b5b600061302c84828501612f43565b91505092915050565b6000806040838503121561304c5761304b613fc2565b5b600061305a85828601612f43565b925050602061306b85828601612f43565b9150509250929050565b60008060006060848603121561308e5761308d613fc2565b5b600061309c86828701612f43565b93505060206130ad86828701612f43565b92505060406130be86828701612ff3565b9150509250925092565b600080600080608085870312156130e2576130e1613fc2565b5b60006130f087828801612f43565b945050602061310187828801612f43565b935050604061311287828801612ff3565b925050606085013567ffffffffffffffff81111561313357613132613fbd565b5b61313f87828801612f97565b91505092959194509250565b6000806040838503121561316257613161613fc2565b5b600061317085828601612f43565b925050602061318185828601612f58565b9150509250929050565b600080604083850312156131a2576131a1613fc2565b5b60006131b085828601612f43565b92505060206131c185828601612ff3565b9150509250929050565b6000602082840312156131e1576131e0613fc2565b5b60006131ef84828501612f6d565b91505092915050565b60006020828403121561320e5761320d613fc2565b5b600061321c84828501612f82565b91505092915050565b60006020828403121561323b5761323a613fc2565b5b600082013567ffffffffffffffff81111561325957613258613fbd565b5b61326584828501612fc5565b91505092915050565b60006020828403121561328457613283613fc2565b5b600061329284828501612ff3565b91505092915050565b6132a481613cef565b82525050565b6132b381613d01565b82525050565b60006132c482613b1d565b6132ce8185613b33565b93506132de818560208601613d8e565b6132e781613fc7565b840191505092915050565b60006132fd82613b28565b6133078185613b44565b9350613317818560208601613d8e565b61332081613fc7565b840191505092915050565b600061333682613b28565b6133408185613b55565b9350613350818560208601613d8e565b80840191505092915050565b6000613369602283613b44565b915061337482613fd8565b604082019050919050565b600061338c600883613b44565b915061339782614027565b602082019050919050565b60006133af602683613b44565b91506133ba82614050565b604082019050919050565b60006133d2602a83613b44565b91506133dd8261409f565b604082019050919050565b60006133f5602383613b44565b9150613400826140ee565b604082019050919050565b6000613418602583613b44565b91506134238261413d565b604082019050919050565b600061343b602283613b44565b91506134468261418c565b604082019050919050565b600061345e601083613b44565b9150613469826141db565b602082019050919050565b6000613481603983613b44565b915061348c82614204565b604082019050919050565b60006134a4602b83613b44565b91506134af82614253565b604082019050919050565b60006134c7602683613b44565b91506134d2826142a2565b604082019050919050565b60006134ea602083613b44565b91506134f5826142f1565b602082019050919050565b600061350d602f83613b44565b91506135188261431a565b604082019050919050565b6000613530601a83613b44565b915061353b82614369565b602082019050919050565b6000613553603283613b44565b915061355e82614392565b604082019050919050565b6000613576602183613b44565b9150613581826143e1565b604082019050919050565b6000613599602283613b44565b91506135a482614430565b604082019050919050565b60006135bc603383613b44565b91506135c78261447f565b604082019050919050565b60006135df601d83613b44565b91506135ea826144ce565b602082019050919050565b6000613602602183613b44565b915061360d826144f7565b604082019050919050565b6000613625602e83613b44565b915061363082614546565b604082019050919050565b6000613648602f83613b44565b915061365382614595565b604082019050919050565b600061366b602d83613b44565b9150613676826145e4565b604082019050919050565b600061368e602283613b44565b915061369982614633565b604082019050919050565b6136ad81613d75565b82525050565b60006136bf828561332b565b91506136cb828461332b565b91508190509392505050565b60006020820190506136ec600083018461329b565b92915050565b6000608082019050613707600083018761329b565b613714602083018661329b565b61372160408301856136a4565b818103606083015261373381846132b9565b905095945050505050565b600060208201905061375360008301846132aa565b92915050565b6000602082019050818103600083015261377381846132f2565b905092915050565b600060208201905081810360008301526137948161335c565b9050919050565b600060208201905081810360008301526137b48161337f565b9050919050565b600060208201905081810360008301526137d4816133a2565b9050919050565b600060208201905081810360008301526137f4816133c5565b9050919050565b60006020820190508181036000830152613814816133e8565b9050919050565b600060208201905081810360008301526138348161340b565b9050919050565b600060208201905081810360008301526138548161342e565b9050919050565b6000602082019050818103600083015261387481613451565b9050919050565b6000602082019050818103600083015261389481613474565b9050919050565b600060208201905081810360008301526138b481613497565b9050919050565b600060208201905081810360008301526138d4816134ba565b9050919050565b600060208201905081810360008301526138f4816134dd565b9050919050565b6000602082019050818103600083015261391481613500565b9050919050565b6000602082019050818103600083015261393481613523565b9050919050565b6000602082019050818103600083015261395481613546565b9050919050565b6000602082019050818103600083015261397481613569565b9050919050565b600060208201905081810360008301526139948161358c565b9050919050565b600060208201905081810360008301526139b4816135af565b9050919050565b600060208201905081810360008301526139d4816135d2565b9050919050565b600060208201905081810360008301526139f4816135f5565b9050919050565b60006020820190508181036000830152613a1481613618565b9050919050565b60006020820190508181036000830152613a348161363b565b9050919050565b60006020820190508181036000830152613a548161365e565b9050919050565b60006020820190508181036000830152613a7481613681565b9050919050565b6000602082019050613a9060008301846136a4565b92915050565b6000613aa0613ab1565b9050613aac8282613e1d565b919050565b6000604051905090565b600067ffffffffffffffff821115613ad657613ad5613f84565b5b613adf82613fc7565b9050602081019050919050565b600067ffffffffffffffff821115613b0757613b06613f84565b5b613b1082613fc7565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613b6b82613d39565b9150613b7683613d39565b9250826fffffffffffffffffffffffffffffffff03821115613b9b57613b9a613ec8565b5b828201905092915050565b6000613bb182613d75565b9150613bbc83613d75565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613bf157613bf0613ec8565b5b828201905092915050565b6000613c0782613d75565b9150613c1283613d75565b925082613c2257613c21613ef7565b5b828204905092915050565b6000613c3882613d75565b9150613c4383613d75565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613c7c57613c7b613ec8565b5b828202905092915050565b6000613c9282613d39565b9150613c9d83613d39565b925082821015613cb057613caf613ec8565b5b828203905092915050565b6000613cc682613d75565b9150613cd183613d75565b925082821015613ce457613ce3613ec8565b5b828203905092915050565b6000613cfa82613d55565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613dac578082015181840152602081019050613d91565b83811115613dbb576000848401525b50505050565b6000613dcc82613d75565b91506000821415613de057613ddf613ec8565b5b600182039050919050565b60006002820490506001821680613e0357607f821691505b60208210811415613e1757613e16613f26565b5b50919050565b613e2682613fc7565b810181811067ffffffffffffffff82111715613e4557613e44613f84565b5b80604052505050565b6000613e5982613d75565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613e8c57613e8b613ec8565b5b600182019050919050565b6000613ea282613d75565b9150613ead83613d75565b925082613ebd57613ebc613ef7565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f536f6c64204f7574000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f416d6f756e74206f662065746865722073656e74206973206e6f7420656e6f7560008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b7f53616c65206e6f74207374617274656400000000000000000000000000000000600082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f4d757374206d696e74206265747765656e203120616e6420313020746f6b656e60008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b61468b81613cef565b811461469657600080fd5b50565b6146a281613d01565b81146146ad57600080fd5b50565b6146b981613d0d565b81146146c457600080fd5b50565b6146d081613d75565b81146146db57600080fd5b5056fea2646970667358221220f6801ff4193be594b00e21e8faee6835404c22bf8813d69ec46596f9224dc13664736f6c6343000807003368747470733a2f2f697066732e696f2f697066732f516d515a675743354a4d4e4c754e5931794375536538654573686575387574337566793163706e3156594a4c6e6b2f

Deployed Bytecode

0x6080604052600436106102045760003560e01c8063715018a611610118578063b88d4fde116100a0578063da241d061161006f578063da241d0614610734578063e03c69e81461075f578063e985e9c51461078a578063f2fde38b146107c7578063f7cd09c7146107f057610204565b8063b88d4fde14610678578063c87b56dd146106a1578063cce132d1146106de578063d7224ba01461070957610204565b806395d89b41116100e757806395d89b41146105c657806396f8f6dd146105f1578063a0712d6814610608578063a22cb46514610624578063a7b8cd4d1461064d57610204565b8063715018a61461053257806379c9cb7b146105495780638da5cb5b1461057257806391b7f5ed1461059d57610204565b806332cb6b0c1161019b57806355f804b31161016a57806355f804b3146104395780636352211e14610462578063676dd5631461049f5780636c0360eb146104ca57806370a08231146104f557610204565b806332cb6b0c146103915780633ccfd60b146103bc57806342842e0e146103d35780634f6ccce7146103fc57610204565b806318160ddd116101d757806318160ddd146102d757806318ce801e1461030257806323b872dd1461032b5780632f745c591461035457610204565b806301ffc9a71461020957806306fdde0314610246578063081812fc14610271578063095ea7b3146102ae575b600080fd5b34801561021557600080fd5b50610230600480360381019061022b91906131cb565b61081b565b60405161023d919061373e565b60405180910390f35b34801561025257600080fd5b5061025b610965565b6040516102689190613759565b60405180910390f35b34801561027d57600080fd5b506102986004803603810190610293919061326e565b6109f7565b6040516102a591906136d7565b60405180910390f35b3480156102ba57600080fd5b506102d560048036038101906102d0919061318b565b610a7c565b005b3480156102e357600080fd5b506102ec610b95565b6040516102f99190613a7b565b60405180910390f35b34801561030e57600080fd5b506103296004803603810190610324919061326e565b610b9e565b005b34801561033757600080fd5b50610352600480360381019061034d9190613075565b610c2f565b005b34801561036057600080fd5b5061037b6004803603810190610376919061318b565b610c3f565b6040516103889190613a7b565b60405180910390f35b34801561039d57600080fd5b506103a6610e3d565b6040516103b39190613a7b565b60405180910390f35b3480156103c857600080fd5b506103d1610e43565b005b3480156103df57600080fd5b506103fa60048036038101906103f59190613075565b610eff565b005b34801561040857600080fd5b50610423600480360381019061041e919061326e565b610f1f565b6040516104309190613a7b565b60405180910390f35b34801561044557600080fd5b50610460600480360381019061045b9190613225565b610f72565b005b34801561046e57600080fd5b506104896004803603810190610484919061326e565b611008565b60405161049691906136d7565b60405180910390f35b3480156104ab57600080fd5b506104b461101e565b6040516104c19190613a7b565b60405180910390f35b3480156104d657600080fd5b506104df611024565b6040516104ec9190613759565b60405180910390f35b34801561050157600080fd5b5061051c60048036038101906105179190613008565b6110b2565b6040516105299190613a7b565b60405180910390f35b34801561053e57600080fd5b5061054761119b565b005b34801561055557600080fd5b50610570600480360381019061056b919061326e565b611223565b005b34801561057e57600080fd5b506105876112a9565b60405161059491906136d7565b60405180910390f35b3480156105a957600080fd5b506105c460048036038101906105bf919061326e565b6112d3565b005b3480156105d257600080fd5b506105db611359565b6040516105e89190613759565b60405180910390f35b3480156105fd57600080fd5b506106066113eb565b005b610622600480360381019061061d919061326e565b611493565b005b34801561063057600080fd5b5061064b6004803603810190610646919061314b565b6115e7565b005b34801561065957600080fd5b50610662611768565b60405161066f9190613a7b565b60405180910390f35b34801561068457600080fd5b5061069f600480360381019061069a91906130c8565b6117af565b005b3480156106ad57600080fd5b506106c860048036038101906106c3919061326e565b61180b565b6040516106d59190613759565b60405180910390f35b3480156106ea57600080fd5b506106f36118b2565b6040516107009190613a7b565b60405180910390f35b34801561071557600080fd5b5061071e6118b8565b60405161072b9190613a7b565b60405180910390f35b34801561074057600080fd5b506107496118be565b6040516107569190613759565b60405180910390f35b34801561076b57600080fd5b5061077461194c565b6040516107819190613759565b60405180910390f35b34801561079657600080fd5b506107b160048036038101906107ac9190613035565b6119da565b6040516107be919061373e565b60405180910390f35b3480156107d357600080fd5b506107ee60048036038101906107e99190613008565b611a6e565b005b3480156107fc57600080fd5b50610805611b66565b604051610812919061373e565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108e657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061094e57507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061095e575061095d82611b79565b5b9050919050565b60606001805461097490613deb565b80601f01602080910402602001604051908101604052809291908181526020018280546109a090613deb565b80156109ed5780601f106109c2576101008083540402835291602001916109ed565b820191906000526020600020905b8154815290600101906020018083116109d057829003601f168201915b5050505050905090565b6000610a0282611be3565b610a41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3890613a3b565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a8782611008565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610af8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aef9061397b565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b17611bf0565b73ffffffffffffffffffffffffffffffffffffffff161480610b465750610b4581610b40611bf0565b6119da565b5b610b85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7c9061387b565b60405180910390fd5b610b90838383611bf8565b505050565b60008054905090565b610ba6611bf0565b73ffffffffffffffffffffffffffffffffffffffff16610bc46112a9565b73ffffffffffffffffffffffffffffffffffffffff1614610c1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c11906138db565b60405180910390fd5b80600a81905550610c2c336032611caa565b50565b610c3a838383611cc8565b505050565b6000610c4a836110b2565b8210610c8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c829061377b565b60405180910390fd5b6000610c95610b95565b905060008060005b83811015610dfb576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610d8f57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610de75786841415610dd8578195505050505050610e37565b8380610de390613e4e565b9450505b508080610df390613e4e565b915050610c9d565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2e906139fb565b60405180910390fd5b92915050565b600a5481565b610e4b611bf0565b73ffffffffffffffffffffffffffffffffffffffff16610e696112a9565b73ffffffffffffffffffffffffffffffffffffffff1614610ebf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb6906138db565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050610efd57600080fd5b565b610f1a838383604051806020016040528060008152506117af565b505050565b6000610f29610b95565b8210610f6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f61906137fb565b60405180910390fd5b819050919050565b610f7a611bf0565b73ffffffffffffffffffffffffffffffffffffffff16610f986112a9565b73ffffffffffffffffffffffffffffffffffffffff1614610fee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe5906138db565b60405180910390fd5b80600f9080519060200190611004929190612de2565b5050565b600061101382612281565b600001519050919050565b60095481565b600f805461103190613deb565b80601f016020809104026020016040519081016040528092919081815260200182805461105d90613deb565b80156110aa5780601f1061107f576101008083540402835291602001916110aa565b820191906000526020600020905b81548152906001019060200180831161108d57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611123576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111a9061389b565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6111a3611bf0565b73ffffffffffffffffffffffffffffffffffffffff166111c16112a9565b73ffffffffffffffffffffffffffffffffffffffff1614611217576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120e906138db565b60405180910390fd5b6112216000612484565b565b61122b611bf0565b73ffffffffffffffffffffffffffffffffffffffff166112496112a9565b73ffffffffffffffffffffffffffffffffffffffff161461129f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611296906138db565b60405180910390fd5b80600b8190555050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6112db611bf0565b73ffffffffffffffffffffffffffffffffffffffff166112f96112a9565b73ffffffffffffffffffffffffffffffffffffffff161461134f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611346906138db565b60405180910390fd5b8060098190555050565b60606002805461136890613deb565b80601f016020809104026020016040519081016040528092919081815260200182805461139490613deb565b80156113e15780601f106113b6576101008083540402835291602001916113e1565b820191906000526020600020905b8154815290600101906020018083116113c457829003601f168201915b5050505050905090565b6113f3611bf0565b73ffffffffffffffffffffffffffffffffffffffff166114116112a9565b73ffffffffffffffffffffffffffffffffffffffff1614611467576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145e906138db565b60405180910390fd5b600e60009054906101000a900460ff1615600e60006101000a81548160ff021916908315150217905550565b600e60009054906101000a900460ff166114e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d99061385b565b60405180910390fd5b6000811180156114f45750600b548111155b611533576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152a9061395b565b60405180910390fd5b600a548161153f610b95565b6115499190613ba6565b111561158a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115819061379b565b60405180910390fd5b806009546115989190613c2d565b3410156115da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d19061383b565b60405180910390fd5b6115e43382611caa565b50565b6115ef611bf0565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561165d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116549061391b565b60405180910390fd5b806006600061166a611bf0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611717611bf0565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161175c919061373e565b60405180910390a35050565b6000601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905090565b6117ba848484611cc8565b6117c68484848461254a565b611805576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117fc9061399b565b60405180910390fd5b50505050565b606061181682611be3565b611855576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184c906138fb565b60405180910390fd5b600061185f6126e1565b9050600081511161187f57604051806020016040528060008152506118aa565b8061188984612773565b60405160200161189a9291906136b3565b6040516020818303038152906040525b915050919050565b600b5481565b60075481565b600d80546118cb90613deb565b80601f01602080910402602001604051908101604052809291908181526020018280546118f790613deb565b80156119445780601f1061191957610100808354040283529160200191611944565b820191906000526020600020905b81548152906001019060200180831161192757829003601f168201915b505050505081565b600c805461195990613deb565b80601f016020809104026020016040519081016040528092919081815260200182805461198590613deb565b80156119d25780601f106119a7576101008083540402835291602001916119d2565b820191906000526020600020905b8154815290600101906020018083116119b557829003601f168201915b505050505081565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611a76611bf0565b73ffffffffffffffffffffffffffffffffffffffff16611a946112a9565b73ffffffffffffffffffffffffffffffffffffffff1614611aea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae1906138db565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611b5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b51906137bb565b60405180910390fd5b611b6381612484565b50565b600e60009054906101000a900460ff1681565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b611cc48282604051806020016040528060008152506128d4565b5050565b6000611cd382612281565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611cfa611bf0565b73ffffffffffffffffffffffffffffffffffffffff161480611d565750611d1f611bf0565b73ffffffffffffffffffffffffffffffffffffffff16611d3e846109f7565b73ffffffffffffffffffffffffffffffffffffffff16145b80611d725750611d718260000151611d6c611bf0565b6119da565b5b905080611db4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dab9061393b565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611e26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1d906138bb565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611e96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e8d9061381b565b60405180910390fd5b611ea38585856001612db3565b611eb36000848460000151611bf8565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16611f219190613c87565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16611fc59190613b60565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555090505060006001846120cb9190613ba6565b9050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156122115761214181611be3565b15612210576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506003600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46122798686866001612db9565b505050505050565b612289612e68565b61229282611be3565b6122d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122c8906137db565b60405180910390fd5b60007f000000000000000000000000000000000000000000000000000000000000000a83106123355760017f000000000000000000000000000000000000000000000000000000000000000a846123289190613cbb565b6123329190613ba6565b90505b60008390505b818110612443576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461242f5780935050505061247f565b50808061243b90613dc1565b91505061233b565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161247690613a1b565b60405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600061256b8473ffffffffffffffffffffffffffffffffffffffff16612dbf565b156126d4578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612594611bf0565b8786866040518563ffffffff1660e01b81526004016125b694939291906136f2565b602060405180830381600087803b1580156125d057600080fd5b505af192505050801561260157506040513d601f19601f820116820180604052508101906125fe91906131f8565b60015b612684573d8060008114612631576040519150601f19603f3d011682016040523d82523d6000602084013e612636565b606091505b5060008151141561267c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126739061399b565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506126d9565b600190505b949350505050565b6060600f80546126f090613deb565b80601f016020809104026020016040519081016040528092919081815260200182805461271c90613deb565b80156127695780601f1061273e57610100808354040283529160200191612769565b820191906000526020600020905b81548152906001019060200180831161274c57829003601f168201915b5050505050905090565b606060008214156127bb576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506128cf565b600082905060005b600082146127ed5780806127d690613e4e565b915050600a826127e69190613bfc565b91506127c3565b60008167ffffffffffffffff81111561280957612808613f84565b5b6040519080825280601f01601f19166020018201604052801561283b5781602001600182028036833780820191505090505b5090505b600085146128c8576001826128549190613cbb565b9150600a856128639190613e97565b603061286f9190613ba6565b60f81b81838151811061288557612884613f55565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856128c19190613bfc565b945061283f565b8093505050505b919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561294a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612941906139db565b60405180910390fd5b61295381611be3565b15612993576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161298a906139bb565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000a8311156129f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129ed90613a5b565b60405180910390fd5b612a036000858386612db3565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff168152505090506040518060400160405280858360000151612b009190613b60565b6fffffffffffffffffffffffffffffffff168152602001858360200151612b279190613b60565b6fffffffffffffffffffffffffffffffff16815250600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b85811015612d9657818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612d36600088848861254a565b612d75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d6c9061399b565b60405180910390fd5b8180612d8090613e4e565b9250508080612d8e90613e4e565b915050612cc5565b5080600081905550612dab6000878588612db9565b505050505050565b50505050565b50505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b828054612dee90613deb565b90600052602060002090601f016020900481019282612e105760008555612e57565b82601f10612e2957805160ff1916838001178555612e57565b82800160010185558215612e57579182015b82811115612e56578251825591602001919060010190612e3b565b5b509050612e649190612ea2565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115612ebb576000816000905550600101612ea3565b5090565b6000612ed2612ecd84613abb565b613a96565b905082815260208101848484011115612eee57612eed613fb8565b5b612ef9848285613d7f565b509392505050565b6000612f14612f0f84613aec565b613a96565b905082815260208101848484011115612f3057612f2f613fb8565b5b612f3b848285613d7f565b509392505050565b600081359050612f5281614682565b92915050565b600081359050612f6781614699565b92915050565b600081359050612f7c816146b0565b92915050565b600081519050612f91816146b0565b92915050565b600082601f830112612fac57612fab613fb3565b5b8135612fbc848260208601612ebf565b91505092915050565b600082601f830112612fda57612fd9613fb3565b5b8135612fea848260208601612f01565b91505092915050565b600081359050613002816146c7565b92915050565b60006020828403121561301e5761301d613fc2565b5b600061302c84828501612f43565b91505092915050565b6000806040838503121561304c5761304b613fc2565b5b600061305a85828601612f43565b925050602061306b85828601612f43565b9150509250929050565b60008060006060848603121561308e5761308d613fc2565b5b600061309c86828701612f43565b93505060206130ad86828701612f43565b92505060406130be86828701612ff3565b9150509250925092565b600080600080608085870312156130e2576130e1613fc2565b5b60006130f087828801612f43565b945050602061310187828801612f43565b935050604061311287828801612ff3565b925050606085013567ffffffffffffffff81111561313357613132613fbd565b5b61313f87828801612f97565b91505092959194509250565b6000806040838503121561316257613161613fc2565b5b600061317085828601612f43565b925050602061318185828601612f58565b9150509250929050565b600080604083850312156131a2576131a1613fc2565b5b60006131b085828601612f43565b92505060206131c185828601612ff3565b9150509250929050565b6000602082840312156131e1576131e0613fc2565b5b60006131ef84828501612f6d565b91505092915050565b60006020828403121561320e5761320d613fc2565b5b600061321c84828501612f82565b91505092915050565b60006020828403121561323b5761323a613fc2565b5b600082013567ffffffffffffffff81111561325957613258613fbd565b5b61326584828501612fc5565b91505092915050565b60006020828403121561328457613283613fc2565b5b600061329284828501612ff3565b91505092915050565b6132a481613cef565b82525050565b6132b381613d01565b82525050565b60006132c482613b1d565b6132ce8185613b33565b93506132de818560208601613d8e565b6132e781613fc7565b840191505092915050565b60006132fd82613b28565b6133078185613b44565b9350613317818560208601613d8e565b61332081613fc7565b840191505092915050565b600061333682613b28565b6133408185613b55565b9350613350818560208601613d8e565b80840191505092915050565b6000613369602283613b44565b915061337482613fd8565b604082019050919050565b600061338c600883613b44565b915061339782614027565b602082019050919050565b60006133af602683613b44565b91506133ba82614050565b604082019050919050565b60006133d2602a83613b44565b91506133dd8261409f565b604082019050919050565b60006133f5602383613b44565b9150613400826140ee565b604082019050919050565b6000613418602583613b44565b91506134238261413d565b604082019050919050565b600061343b602283613b44565b91506134468261418c565b604082019050919050565b600061345e601083613b44565b9150613469826141db565b602082019050919050565b6000613481603983613b44565b915061348c82614204565b604082019050919050565b60006134a4602b83613b44565b91506134af82614253565b604082019050919050565b60006134c7602683613b44565b91506134d2826142a2565b604082019050919050565b60006134ea602083613b44565b91506134f5826142f1565b602082019050919050565b600061350d602f83613b44565b91506135188261431a565b604082019050919050565b6000613530601a83613b44565b915061353b82614369565b602082019050919050565b6000613553603283613b44565b915061355e82614392565b604082019050919050565b6000613576602183613b44565b9150613581826143e1565b604082019050919050565b6000613599602283613b44565b91506135a482614430565b604082019050919050565b60006135bc603383613b44565b91506135c78261447f565b604082019050919050565b60006135df601d83613b44565b91506135ea826144ce565b602082019050919050565b6000613602602183613b44565b915061360d826144f7565b604082019050919050565b6000613625602e83613b44565b915061363082614546565b604082019050919050565b6000613648602f83613b44565b915061365382614595565b604082019050919050565b600061366b602d83613b44565b9150613676826145e4565b604082019050919050565b600061368e602283613b44565b915061369982614633565b604082019050919050565b6136ad81613d75565b82525050565b60006136bf828561332b565b91506136cb828461332b565b91508190509392505050565b60006020820190506136ec600083018461329b565b92915050565b6000608082019050613707600083018761329b565b613714602083018661329b565b61372160408301856136a4565b818103606083015261373381846132b9565b905095945050505050565b600060208201905061375360008301846132aa565b92915050565b6000602082019050818103600083015261377381846132f2565b905092915050565b600060208201905081810360008301526137948161335c565b9050919050565b600060208201905081810360008301526137b48161337f565b9050919050565b600060208201905081810360008301526137d4816133a2565b9050919050565b600060208201905081810360008301526137f4816133c5565b9050919050565b60006020820190508181036000830152613814816133e8565b9050919050565b600060208201905081810360008301526138348161340b565b9050919050565b600060208201905081810360008301526138548161342e565b9050919050565b6000602082019050818103600083015261387481613451565b9050919050565b6000602082019050818103600083015261389481613474565b9050919050565b600060208201905081810360008301526138b481613497565b9050919050565b600060208201905081810360008301526138d4816134ba565b9050919050565b600060208201905081810360008301526138f4816134dd565b9050919050565b6000602082019050818103600083015261391481613500565b9050919050565b6000602082019050818103600083015261393481613523565b9050919050565b6000602082019050818103600083015261395481613546565b9050919050565b6000602082019050818103600083015261397481613569565b9050919050565b600060208201905081810360008301526139948161358c565b9050919050565b600060208201905081810360008301526139b4816135af565b9050919050565b600060208201905081810360008301526139d4816135d2565b9050919050565b600060208201905081810360008301526139f4816135f5565b9050919050565b60006020820190508181036000830152613a1481613618565b9050919050565b60006020820190508181036000830152613a348161363b565b9050919050565b60006020820190508181036000830152613a548161365e565b9050919050565b60006020820190508181036000830152613a7481613681565b9050919050565b6000602082019050613a9060008301846136a4565b92915050565b6000613aa0613ab1565b9050613aac8282613e1d565b919050565b6000604051905090565b600067ffffffffffffffff821115613ad657613ad5613f84565b5b613adf82613fc7565b9050602081019050919050565b600067ffffffffffffffff821115613b0757613b06613f84565b5b613b1082613fc7565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613b6b82613d39565b9150613b7683613d39565b9250826fffffffffffffffffffffffffffffffff03821115613b9b57613b9a613ec8565b5b828201905092915050565b6000613bb182613d75565b9150613bbc83613d75565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613bf157613bf0613ec8565b5b828201905092915050565b6000613c0782613d75565b9150613c1283613d75565b925082613c2257613c21613ef7565b5b828204905092915050565b6000613c3882613d75565b9150613c4383613d75565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613c7c57613c7b613ec8565b5b828202905092915050565b6000613c9282613d39565b9150613c9d83613d39565b925082821015613cb057613caf613ec8565b5b828203905092915050565b6000613cc682613d75565b9150613cd183613d75565b925082821015613ce457613ce3613ec8565b5b828203905092915050565b6000613cfa82613d55565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613dac578082015181840152602081019050613d91565b83811115613dbb576000848401525b50505050565b6000613dcc82613d75565b91506000821415613de057613ddf613ec8565b5b600182039050919050565b60006002820490506001821680613e0357607f821691505b60208210811415613e1757613e16613f26565b5b50919050565b613e2682613fc7565b810181811067ffffffffffffffff82111715613e4557613e44613f84565b5b80604052505050565b6000613e5982613d75565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613e8c57613e8b613ec8565b5b600182019050919050565b6000613ea282613d75565b9150613ead83613d75565b925082613ebd57613ebc613ef7565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f536f6c64204f7574000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f416d6f756e74206f662065746865722073656e74206973206e6f7420656e6f7560008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b7f53616c65206e6f74207374617274656400000000000000000000000000000000600082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f4d757374206d696e74206265747765656e203120616e6420313020746f6b656e60008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b61468b81613cef565b811461469657600080fd5b50565b6146a281613d01565b81146146ad57600080fd5b50565b6146b981613d0d565b81146146c457600080fd5b50565b6146d081613d75565b81146146db57600080fd5b5056fea2646970667358221220f6801ff4193be594b00e21e8faee6835404c22bf8813d69ec46596f9224dc13664736f6c63430008070033

Deployed Bytecode Sourcemap

42470:1925:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27636:370;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29362:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30887:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30450:379;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26200:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43892:132;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31737:142;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26828:744;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42562:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44280:112;;;;;;;;;;;;;:::i;:::-;;31942:157;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26363:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43583:102;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29185:118;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42516:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42760:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28062:211;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41565:103;;;;;;;;;;;;;:::i;:::-;;43793:91;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40914:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43693:92;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29517:98;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43488:87;;;;;;;;;;;;;:::i;:::-;;42995:485;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31155:274;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44152:120;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32162:311;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29678:394;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42601:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36493:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42680:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42637:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31492:186;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41823:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42720:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27636:370;27763:4;27808:25;27793:40;;;:11;:40;;;;:99;;;;27859:33;27844:48;;;:11;:48;;;;27793:99;:160;;;;27918:35;27903:50;;;:11;:50;;;;27793:160;:207;;;;27964:36;27988:11;27964:23;:36::i;:::-;27793:207;27779:221;;27636:370;;;:::o;29362:94::-;29416:13;29445:5;29438:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29362:94;:::o;30887:204::-;30955:7;30979:16;30987:7;30979;:16::i;:::-;30971:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;31061:15;:24;31077:7;31061:24;;;;;;;;;;;;;;;;;;;;;31054:31;;30887:204;;;:::o;30450:379::-;30519:13;30535:24;30551:7;30535:15;:24::i;:::-;30519:40;;30580:5;30574:11;;:2;:11;;;;30566:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;30665:5;30649:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;30674:37;30691:5;30698:12;:10;:12::i;:::-;30674:16;:37::i;:::-;30649:62;30633:153;;;;;;;;;;;;:::i;:::-;;;;;;;;;30795:28;30804:2;30808:7;30817:5;30795:8;:28::i;:::-;30512:317;30450:379;;:::o;26200:94::-;26253:7;26276:12;;26269:19;;26200:94;:::o;43892:132::-;41145:12;:10;:12::i;:::-;41134:23;;:7;:5;:7::i;:::-;:23;;;41126:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43971:9:::1;43958:10;:22;;;;43991:25;44001:10;44013:2;43991:9;:25::i;:::-;43892:132:::0;:::o;31737:142::-;31845:28;31855:4;31861:2;31865:7;31845:9;:28::i;:::-;31737:142;;;:::o;26828:744::-;26937:7;26972:16;26982:5;26972:9;:16::i;:::-;26964:5;:24;26956:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;27034:22;27059:13;:11;:13::i;:::-;27034:38;;27079:19;27109:25;27159:9;27154:350;27178:14;27174:1;:18;27154:350;;;27208:31;27242:11;:14;27254:1;27242:14;;;;;;;;;;;27208:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27295:1;27269:28;;:9;:14;;;:28;;;27265:89;;27330:9;:14;;;27310:34;;27265:89;27387:5;27366:26;;:17;:26;;;27362:135;;;27424:5;27409:11;:20;27405:59;;;27451:1;27444:8;;;;;;;;;27405:59;27474:13;;;;;:::i;:::-;;;;27362:135;27199:305;27194:3;;;;;:::i;:::-;;;;27154:350;;;;27510:56;;;;;;;;;;:::i;:::-;;;;;;;;26828:744;;;;;:::o;42562:32::-;;;;:::o;44280:112::-;41145:12;:10;:12::i;:::-;41134:23;;:7;:5;:7::i;:::-;:23;;;41126:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44344:10:::1;44336:24;;:47;44361:21;44336:47;;;;;;;;;;;;;;;;;;;;;;;44328:56;;;::::0;::::1;;44280:112::o:0;31942:157::-;32054:39;32071:4;32077:2;32081:7;32054:39;;;;;;;;;;;;:16;:39::i;:::-;31942:157;;;:::o;26363:177::-;26430:7;26462:13;:11;:13::i;:::-;26454:5;:21;26446:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;26529:5;26522:12;;26363:177;;;:::o;43583:102::-;41145:12;:10;:12::i;:::-;41134:23;;:7;:5;:7::i;:::-;:23;;;41126:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43667:10:::1;43657:7;:20;;;;;;;;;;;;:::i;:::-;;43583:102:::0;:::o;29185:118::-;29249:7;29272:20;29284:7;29272:11;:20::i;:::-;:25;;;29265:32;;29185:118;;;:::o;42516:39::-;;;;:::o;42760:94::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;28062:211::-;28126:7;28167:1;28150:19;;:5;:19;;;;28142:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;28239:12;:19;28252:5;28239:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;28231:36;;28224:43;;28062:211;;;:::o;41565:103::-;41145:12;:10;:12::i;:::-;41134:23;;:7;:5;:7::i;:::-;:23;;;41126:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41630:30:::1;41657:1;41630:18;:30::i;:::-;41565:103::o:0;43793:91::-;41145:12;:10;:12::i;:::-;41134:23;;:7;:5;:7::i;:::-;:23;;;41126:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43870:6:::1;43858:9;:18;;;;43793:91:::0;:::o;40914:87::-;40960:7;40987:6;;;;;;;;;;;40980:13;;40914:87;:::o;43693:92::-;41145:12;:10;:12::i;:::-;41134:23;;:7;:5;:7::i;:::-;:23;;;41126:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43769:8:::1;43757:9;:20;;;;43693:92:::0;:::o;29517:98::-;29573:13;29602:7;29595:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29517:98;:::o;43488:87::-;41145:12;:10;:12::i;:::-;41134:23;;:7;:5;:7::i;:::-;:23;;;41126:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43556:11:::1;;;;;;;;;;;43555:12;43541:11;;:26;;;;;;;;;;;;;;;;;;43488:87::o:0;42995:485::-;43062:11;;;;;;;;;;;43054:40;;;;;;;;;;;;:::i;:::-;;;;;;;;;43139:1;43127:9;:13;:39;;;;;43157:9;;43144;:22;;43127:39;43105:122;;;;;;;;;;;;:::i;:::-;;;;;;;;;43275:10;;43262:9;43246:13;:11;:13::i;:::-;:25;;;;:::i;:::-;:39;;43238:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;43356:9;43344;;:21;;;;:::i;:::-;43331:9;:34;;43309:118;;;;;;;;;;;;:::i;:::-;;;;;;;;;43440:32;43450:10;43462:9;43440;:32::i;:::-;42995:485;:::o;31155:274::-;31258:12;:10;:12::i;:::-;31246:24;;:8;:24;;;;31238:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;31355:8;31310:18;:32;31329:12;:10;:12::i;:::-;31310:32;;;;;;;;;;;;;;;:42;31343:8;31310:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;31404:8;31375:48;;31390:12;:10;:12::i;:::-;31375:48;;;31414:8;31375:48;;;;;;:::i;:::-;;;;;;;;31155:274;;:::o;44152:120::-;44203:7;44230:22;:34;44253:10;44230:34;;;;;;;;;;;;;;;;44223:41;;44152:120;:::o;32162:311::-;32299:28;32309:4;32315:2;32319:7;32299:9;:28::i;:::-;32350:48;32373:4;32379:2;32383:7;32392:5;32350:22;:48::i;:::-;32334:133;;;;;;;;;;;;:::i;:::-;;;;;;;;;32162:311;;;;:::o;29678:394::-;29776:13;29817:16;29825:7;29817;:16::i;:::-;29801:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;29907:21;29931:10;:8;:10::i;:::-;29907:34;;29986:1;29968:7;29962:21;:25;:104;;;;;;;;;;;;;;;;;30023:7;30032:18;:7;:16;:18::i;:::-;30006:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;29962:104;29948:118;;;29678:394;;;:::o;42601:29::-;;;;:::o;36493:43::-;;;;:::o;42680:31::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;42637:36::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;31492:186::-;31614:4;31637:18;:25;31656:5;31637:25;;;;;;;;;;;;;;;:35;31663:8;31637:35;;;;;;;;;;;;;;;;;;;;;;;;;31630:42;;31492:186;;;;:::o;41823:201::-;41145:12;:10;:12::i;:::-;41134:23;;:7;:5;:7::i;:::-;:23;;;41126:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41932:1:::1;41912:22;;:8;:22;;;;41904:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;41988:28;42007:8;41988:18;:28::i;:::-;41823:201:::0;:::o;42720:31::-;;;;;;;;;;;;;:::o;13440:157::-;13525:4;13564:25;13549:40;;;:11;:40;;;;13542:47;;13440:157;;;:::o;32712:105::-;32769:4;32799:12;;32789:7;:22;32782:29;;32712:105;;;:::o;23797:98::-;23850:7;23877:10;23870:17;;23797:98;:::o;36315:172::-;36439:2;36412:15;:24;36428:7;36412:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;36473:7;36469:2;36453:28;;36462:5;36453:28;;;;;;;;;;;;36315:172;;;:::o;32823:98::-;32888:27;32898:2;32902:8;32888:27;;;;;;;;;;;;:9;:27::i;:::-;32823:98;;:::o;34680:1529::-;34777:35;34815:20;34827:7;34815:11;:20::i;:::-;34777:58;;34844:22;34886:13;:18;;;34870:34;;:12;:10;:12::i;:::-;:34;;;:81;;;;34939:12;:10;:12::i;:::-;34915:36;;:20;34927:7;34915:11;:20::i;:::-;:36;;;34870:81;:142;;;;34962:50;34979:13;:18;;;34999:12;:10;:12::i;:::-;34962:16;:50::i;:::-;34870:142;34844:169;;35038:17;35022:101;;;;;;;;;;;;:::i;:::-;;;;;;;;;35170:4;35148:26;;:13;:18;;;:26;;;35132:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;35259:1;35245:16;;:2;:16;;;;35237:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;35312:43;35334:4;35340:2;35344:7;35353:1;35312:21;:43::i;:::-;35412:49;35429:1;35433:7;35442:13;:18;;;35412:8;:49::i;:::-;35500:1;35470:12;:18;35483:4;35470:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;35536:1;35508:12;:16;35521:2;35508:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;35567:43;;;;;;;;35582:2;35567:43;;;;;;35593:15;35567:43;;;;;35544:11;:20;35556:7;35544:20;;;;;;;;;;;:66;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35838:19;35870:1;35860:7;:11;;;;:::i;:::-;35838:33;;35923:1;35882:43;;:11;:24;35894:11;35882:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;35878:236;;;35940:20;35948:11;35940:7;:20::i;:::-;35936:171;;;36000:97;;;;;;;;36027:13;:18;;;36000:97;;;;;;36058:13;:28;;;36000:97;;;;;35973:11;:24;35985:11;35973:24;;;;;;;;;;;:124;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35936:171;35878:236;36146:7;36142:2;36127:27;;36136:4;36127:27;;;;;;;;;;;;36161:42;36182:4;36188:2;36192:7;36201:1;36161:20;:42::i;:::-;34770:1439;;;34680:1529;;;:::o;28525:606::-;28601:21;;:::i;:::-;28642:16;28650:7;28642;:16::i;:::-;28634:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;28714:26;28762:12;28751:7;:23;28747:93;;28831:1;28816:12;28806:7;:22;;;;:::i;:::-;:26;;;;:::i;:::-;28785:47;;28747:93;28853:12;28868:7;28853:22;;28848:212;28885:18;28877:4;:26;28848:212;;28922:31;28956:11;:17;28968:4;28956:17;;;;;;;;;;;28922:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29012:1;28986:28;;:9;:14;;;:28;;;28982:71;;29034:9;29027:16;;;;;;;28982:71;28913:147;28905:6;;;;;:::i;:::-;;;;28848:212;;;;29068:57;;;;;;;;;;:::i;:::-;;;;;;;;28525:606;;;;:::o;42184:191::-;42258:16;42277:6;;;;;;;;;;;42258:25;;42303:8;42294:6;;:17;;;;;;;;;;;;;;;;;;42358:8;42327:40;;42348:8;42327:40;;;;;;;;;;;;42247:128;42184:191;:::o;38026:690::-;38163:4;38180:15;:2;:13;;;:15::i;:::-;38176:535;;;38235:2;38219:36;;;38256:12;:10;:12::i;:::-;38270:4;38276:7;38285:5;38219:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;38206:464;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38467:1;38450:6;:13;:18;38446:215;;;38483:61;;;;;;;;;;:::i;:::-;;;;;;;;38446:215;38629:6;38623:13;38614:6;38610:2;38606:15;38599:38;38206:464;38351:45;;;38341:55;;;:6;:55;;;;38334:62;;;;;38176:535;38699:4;38692:11;;38026:690;;;;;;;:::o;44032:108::-;44092:13;44125:7;44118:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44032:108;:::o;365:723::-;421:13;651:1;642:5;:10;638:53;;;669:10;;;;;;;;;;;;;;;;;;;;;638:53;701:12;716:5;701:20;;732:14;757:78;772:1;764:4;:9;757:78;;790:8;;;;;:::i;:::-;;;;821:2;813:10;;;;;:::i;:::-;;;757:78;;;845:19;877:6;867:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;845:39;;895:154;911:1;902:5;:10;895:154;;939:1;929:11;;;;;:::i;:::-;;;1006:2;998:5;:10;;;;:::i;:::-;985:2;:24;;;;:::i;:::-;972:39;;955:6;962;955:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1035:2;1026:11;;;;;:::i;:::-;;;895:154;;;1073:6;1059:21;;;;;365:723;;;;:::o;33176:1272::-;33281:20;33304:12;;33281:35;;33345:1;33331:16;;:2;:16;;;;33323:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;33522:21;33530:12;33522:7;:21::i;:::-;33521:22;33513:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;33604:12;33592:8;:24;;33584:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;33664:61;33694:1;33698:2;33702:12;33716:8;33664:21;:61::i;:::-;33734:30;33767:12;:16;33780:2;33767:16;;;;;;;;;;;;;;;33734:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33809:119;;;;;;;;33859:8;33829:11;:19;;;:39;;;;:::i;:::-;33809:119;;;;;;33912:8;33877:11;:24;;;:44;;;;:::i;:::-;33809:119;;;;;33790:12;:16;33803:2;33790:16;;;;;;;;;;;;;;;:138;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33963:43;;;;;;;;33978:2;33963:43;;;;;;33989:15;33963:43;;;;;33935:11;:25;33947:12;33935:25;;;;;;;;;;;:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34015:20;34038:12;34015:35;;34064:9;34059:281;34083:8;34079:1;:12;34059:281;;;34137:12;34133:2;34112:38;;34129:1;34112:38;;;;;;;;;;;;34177:59;34208:1;34212:2;34216:12;34230:5;34177:22;:59::i;:::-;34159:150;;;;;;;;;;;;:::i;:::-;;;;;;;;;34318:14;;;;;:::i;:::-;;;;34093:3;;;;;:::i;:::-;;;;34059:281;;;;34363:12;34348;:27;;;;34382:60;34411:1;34415:2;34419:12;34433:8;34382:20;:60::i;:::-;33274:1174;;;33176:1272;;;:::o;39178:141::-;;;;;:::o;39705:140::-;;;;;:::o;3357:326::-;3417:4;3674:1;3652:7;:19;;;:23;3645:30;;3357:326;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:122;;1899:79;;:::i;:::-;1858:122;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;1786:340;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2132:139;;;;:::o;2277:329::-;2336:6;2385:2;2373:9;2364:7;2360:23;2356:32;2353:119;;;2391:79;;:::i;:::-;2353:119;2511:1;2536:53;2581:7;2572:6;2561:9;2557:22;2536:53;:::i;:::-;2526:63;;2482:117;2277:329;;;;:::o;2612:474::-;2680:6;2688;2737:2;2725:9;2716:7;2712:23;2708:32;2705:119;;;2743:79;;:::i;:::-;2705:119;2863:1;2888:53;2933:7;2924:6;2913:9;2909:22;2888:53;:::i;:::-;2878:63;;2834:117;2990:2;3016:53;3061:7;3052:6;3041:9;3037:22;3016:53;:::i;:::-;3006:63;;2961:118;2612:474;;;;;:::o;3092:619::-;3169:6;3177;3185;3234:2;3222:9;3213:7;3209:23;3205:32;3202:119;;;3240:79;;:::i;:::-;3202:119;3360:1;3385:53;3430:7;3421:6;3410:9;3406:22;3385:53;:::i;:::-;3375:63;;3331:117;3487:2;3513:53;3558:7;3549:6;3538:9;3534:22;3513:53;:::i;:::-;3503:63;;3458:118;3615:2;3641:53;3686:7;3677:6;3666:9;3662:22;3641:53;:::i;:::-;3631:63;;3586:118;3092:619;;;;;:::o;3717:943::-;3812:6;3820;3828;3836;3885:3;3873:9;3864:7;3860:23;3856:33;3853:120;;;3892:79;;:::i;:::-;3853:120;4012:1;4037:53;4082:7;4073:6;4062:9;4058:22;4037:53;:::i;:::-;4027:63;;3983:117;4139:2;4165:53;4210:7;4201:6;4190:9;4186:22;4165:53;:::i;:::-;4155:63;;4110:118;4267:2;4293:53;4338:7;4329:6;4318:9;4314:22;4293:53;:::i;:::-;4283:63;;4238:118;4423:2;4412:9;4408:18;4395:32;4454:18;4446:6;4443:30;4440:117;;;4476:79;;:::i;:::-;4440:117;4581:62;4635:7;4626:6;4615:9;4611:22;4581:62;:::i;:::-;4571:72;;4366:287;3717:943;;;;;;;:::o;4666:468::-;4731:6;4739;4788:2;4776:9;4767:7;4763:23;4759:32;4756:119;;;4794:79;;:::i;:::-;4756:119;4914:1;4939:53;4984:7;4975:6;4964:9;4960:22;4939:53;:::i;:::-;4929:63;;4885:117;5041:2;5067:50;5109:7;5100:6;5089:9;5085:22;5067:50;:::i;:::-;5057:60;;5012:115;4666:468;;;;;:::o;5140:474::-;5208:6;5216;5265:2;5253:9;5244:7;5240:23;5236:32;5233:119;;;5271:79;;:::i;:::-;5233:119;5391:1;5416:53;5461:7;5452:6;5441:9;5437:22;5416:53;:::i;:::-;5406:63;;5362:117;5518:2;5544:53;5589:7;5580:6;5569:9;5565:22;5544:53;:::i;:::-;5534:63;;5489:118;5140:474;;;;;:::o;5620:327::-;5678:6;5727:2;5715:9;5706:7;5702:23;5698:32;5695:119;;;5733:79;;:::i;:::-;5695:119;5853:1;5878:52;5922:7;5913:6;5902:9;5898:22;5878:52;:::i;:::-;5868:62;;5824:116;5620:327;;;;:::o;5953:349::-;6022:6;6071:2;6059:9;6050:7;6046:23;6042:32;6039:119;;;6077:79;;:::i;:::-;6039:119;6197:1;6222:63;6277:7;6268:6;6257:9;6253:22;6222:63;:::i;:::-;6212:73;;6168:127;5953:349;;;;:::o;6308:509::-;6377:6;6426:2;6414:9;6405:7;6401:23;6397:32;6394:119;;;6432:79;;:::i;:::-;6394:119;6580:1;6569:9;6565:17;6552:31;6610:18;6602:6;6599:30;6596:117;;;6632:79;;:::i;:::-;6596:117;6737:63;6792:7;6783:6;6772:9;6768:22;6737:63;:::i;:::-;6727:73;;6523:287;6308:509;;;;:::o;6823:329::-;6882:6;6931:2;6919:9;6910:7;6906:23;6902:32;6899:119;;;6937:79;;:::i;:::-;6899:119;7057:1;7082:53;7127:7;7118:6;7107:9;7103:22;7082:53;:::i;:::-;7072:63;;7028:117;6823:329;;;;:::o;7158:118::-;7245:24;7263:5;7245:24;:::i;:::-;7240:3;7233:37;7158:118;;:::o;7282:109::-;7363:21;7378:5;7363:21;:::i;:::-;7358:3;7351:34;7282:109;;:::o;7397:360::-;7483:3;7511:38;7543:5;7511:38;:::i;:::-;7565:70;7628:6;7623:3;7565:70;:::i;:::-;7558:77;;7644:52;7689:6;7684:3;7677:4;7670:5;7666:16;7644:52;:::i;:::-;7721:29;7743:6;7721:29;:::i;:::-;7716:3;7712:39;7705:46;;7487:270;7397:360;;;;:::o;7763:364::-;7851:3;7879:39;7912:5;7879:39;:::i;:::-;7934:71;7998:6;7993:3;7934:71;:::i;:::-;7927:78;;8014:52;8059:6;8054:3;8047:4;8040:5;8036:16;8014:52;:::i;:::-;8091:29;8113:6;8091:29;:::i;:::-;8086:3;8082:39;8075:46;;7855:272;7763:364;;;;:::o;8133:377::-;8239:3;8267:39;8300:5;8267:39;:::i;:::-;8322:89;8404:6;8399:3;8322:89;:::i;:::-;8315:96;;8420:52;8465:6;8460:3;8453:4;8446:5;8442:16;8420:52;:::i;:::-;8497:6;8492:3;8488:16;8481:23;;8243:267;8133:377;;;;:::o;8516:366::-;8658:3;8679:67;8743:2;8738:3;8679:67;:::i;:::-;8672:74;;8755:93;8844:3;8755:93;:::i;:::-;8873:2;8868:3;8864:12;8857:19;;8516:366;;;:::o;8888:365::-;9030:3;9051:66;9115:1;9110:3;9051:66;:::i;:::-;9044:73;;9126:93;9215:3;9126:93;:::i;:::-;9244:2;9239:3;9235:12;9228:19;;8888:365;;;:::o;9259:366::-;9401:3;9422:67;9486:2;9481:3;9422:67;:::i;:::-;9415:74;;9498:93;9587:3;9498:93;:::i;:::-;9616:2;9611:3;9607:12;9600:19;;9259:366;;;:::o;9631:::-;9773:3;9794:67;9858:2;9853:3;9794:67;:::i;:::-;9787:74;;9870:93;9959:3;9870:93;:::i;:::-;9988:2;9983:3;9979:12;9972:19;;9631:366;;;:::o;10003:::-;10145:3;10166:67;10230:2;10225:3;10166:67;:::i;:::-;10159:74;;10242:93;10331:3;10242:93;:::i;:::-;10360:2;10355:3;10351:12;10344:19;;10003:366;;;:::o;10375:::-;10517:3;10538:67;10602:2;10597:3;10538:67;:::i;:::-;10531:74;;10614:93;10703:3;10614:93;:::i;:::-;10732:2;10727:3;10723:12;10716:19;;10375:366;;;:::o;10747:::-;10889:3;10910:67;10974:2;10969:3;10910:67;:::i;:::-;10903:74;;10986:93;11075:3;10986:93;:::i;:::-;11104:2;11099:3;11095:12;11088:19;;10747:366;;;:::o;11119:::-;11261:3;11282:67;11346:2;11341:3;11282:67;:::i;:::-;11275:74;;11358:93;11447:3;11358:93;:::i;:::-;11476:2;11471:3;11467:12;11460:19;;11119:366;;;:::o;11491:::-;11633:3;11654:67;11718:2;11713:3;11654:67;:::i;:::-;11647:74;;11730:93;11819:3;11730:93;:::i;:::-;11848:2;11843:3;11839:12;11832:19;;11491:366;;;:::o;11863:::-;12005:3;12026:67;12090:2;12085:3;12026:67;:::i;:::-;12019:74;;12102:93;12191:3;12102:93;:::i;:::-;12220:2;12215:3;12211:12;12204:19;;11863:366;;;:::o;12235:::-;12377:3;12398:67;12462:2;12457:3;12398:67;:::i;:::-;12391:74;;12474:93;12563:3;12474:93;:::i;:::-;12592:2;12587:3;12583:12;12576:19;;12235:366;;;:::o;12607:::-;12749:3;12770:67;12834:2;12829:3;12770:67;:::i;:::-;12763:74;;12846:93;12935:3;12846:93;:::i;:::-;12964:2;12959:3;12955:12;12948:19;;12607:366;;;:::o;12979:::-;13121:3;13142:67;13206:2;13201:3;13142:67;:::i;:::-;13135:74;;13218:93;13307:3;13218:93;:::i;:::-;13336:2;13331:3;13327:12;13320:19;;12979:366;;;:::o;13351:::-;13493:3;13514:67;13578:2;13573:3;13514:67;:::i;:::-;13507:74;;13590:93;13679:3;13590:93;:::i;:::-;13708:2;13703:3;13699:12;13692:19;;13351:366;;;:::o;13723:::-;13865:3;13886:67;13950:2;13945:3;13886:67;:::i;:::-;13879:74;;13962:93;14051:3;13962:93;:::i;:::-;14080:2;14075:3;14071:12;14064:19;;13723:366;;;:::o;14095:::-;14237:3;14258:67;14322:2;14317:3;14258:67;:::i;:::-;14251:74;;14334:93;14423:3;14334:93;:::i;:::-;14452:2;14447:3;14443:12;14436:19;;14095:366;;;:::o;14467:::-;14609:3;14630:67;14694:2;14689:3;14630:67;:::i;:::-;14623:74;;14706:93;14795:3;14706:93;:::i;:::-;14824:2;14819:3;14815:12;14808:19;;14467:366;;;:::o;14839:::-;14981:3;15002:67;15066:2;15061:3;15002:67;:::i;:::-;14995:74;;15078:93;15167:3;15078:93;:::i;:::-;15196:2;15191:3;15187:12;15180:19;;14839:366;;;:::o;15211:::-;15353:3;15374:67;15438:2;15433:3;15374:67;:::i;:::-;15367:74;;15450:93;15539:3;15450:93;:::i;:::-;15568:2;15563:3;15559:12;15552:19;;15211:366;;;:::o;15583:::-;15725:3;15746:67;15810:2;15805:3;15746:67;:::i;:::-;15739:74;;15822:93;15911:3;15822:93;:::i;:::-;15940:2;15935:3;15931:12;15924:19;;15583:366;;;:::o;15955:::-;16097:3;16118:67;16182:2;16177:3;16118:67;:::i;:::-;16111:74;;16194:93;16283:3;16194:93;:::i;:::-;16312:2;16307:3;16303:12;16296:19;;15955:366;;;:::o;16327:::-;16469:3;16490:67;16554:2;16549:3;16490:67;:::i;:::-;16483:74;;16566:93;16655:3;16566:93;:::i;:::-;16684:2;16679:3;16675:12;16668:19;;16327:366;;;:::o;16699:::-;16841:3;16862:67;16926:2;16921:3;16862:67;:::i;:::-;16855:74;;16938:93;17027:3;16938:93;:::i;:::-;17056:2;17051:3;17047:12;17040:19;;16699:366;;;:::o;17071:::-;17213:3;17234:67;17298:2;17293:3;17234:67;:::i;:::-;17227:74;;17310:93;17399:3;17310:93;:::i;:::-;17428:2;17423:3;17419:12;17412:19;;17071:366;;;:::o;17443:118::-;17530:24;17548:5;17530:24;:::i;:::-;17525:3;17518:37;17443:118;;:::o;17567:435::-;17747:3;17769:95;17860:3;17851:6;17769:95;:::i;:::-;17762:102;;17881:95;17972:3;17963:6;17881:95;:::i;:::-;17874:102;;17993:3;17986:10;;17567:435;;;;;:::o;18008:222::-;18101:4;18139:2;18128:9;18124:18;18116:26;;18152:71;18220:1;18209:9;18205:17;18196:6;18152:71;:::i;:::-;18008:222;;;;:::o;18236:640::-;18431:4;18469:3;18458:9;18454:19;18446:27;;18483:71;18551:1;18540:9;18536:17;18527:6;18483:71;:::i;:::-;18564:72;18632:2;18621:9;18617:18;18608:6;18564:72;:::i;:::-;18646;18714:2;18703:9;18699:18;18690:6;18646:72;:::i;:::-;18765:9;18759:4;18755:20;18750:2;18739:9;18735:18;18728:48;18793:76;18864:4;18855:6;18793:76;:::i;:::-;18785:84;;18236:640;;;;;;;:::o;18882:210::-;18969:4;19007:2;18996:9;18992:18;18984:26;;19020:65;19082:1;19071:9;19067:17;19058:6;19020:65;:::i;:::-;18882:210;;;;:::o;19098:313::-;19211:4;19249:2;19238:9;19234:18;19226:26;;19298:9;19292:4;19288:20;19284:1;19273:9;19269:17;19262:47;19326:78;19399:4;19390:6;19326:78;:::i;:::-;19318:86;;19098:313;;;;:::o;19417:419::-;19583:4;19621:2;19610:9;19606:18;19598:26;;19670:9;19664:4;19660:20;19656:1;19645:9;19641:17;19634:47;19698:131;19824:4;19698:131;:::i;:::-;19690:139;;19417:419;;;:::o;19842:::-;20008:4;20046:2;20035:9;20031:18;20023:26;;20095:9;20089:4;20085:20;20081:1;20070:9;20066:17;20059:47;20123:131;20249:4;20123:131;:::i;:::-;20115:139;;19842:419;;;:::o;20267:::-;20433:4;20471:2;20460:9;20456:18;20448:26;;20520:9;20514:4;20510:20;20506:1;20495:9;20491:17;20484:47;20548:131;20674:4;20548:131;:::i;:::-;20540:139;;20267:419;;;:::o;20692:::-;20858:4;20896:2;20885:9;20881:18;20873:26;;20945:9;20939:4;20935:20;20931:1;20920:9;20916:17;20909:47;20973:131;21099:4;20973:131;:::i;:::-;20965:139;;20692:419;;;:::o;21117:::-;21283:4;21321:2;21310:9;21306:18;21298:26;;21370:9;21364:4;21360:20;21356:1;21345:9;21341:17;21334:47;21398:131;21524:4;21398:131;:::i;:::-;21390:139;;21117:419;;;:::o;21542:::-;21708:4;21746:2;21735:9;21731:18;21723:26;;21795:9;21789:4;21785:20;21781:1;21770:9;21766:17;21759:47;21823:131;21949:4;21823:131;:::i;:::-;21815:139;;21542:419;;;:::o;21967:::-;22133:4;22171:2;22160:9;22156:18;22148:26;;22220:9;22214:4;22210:20;22206:1;22195:9;22191:17;22184:47;22248:131;22374:4;22248:131;:::i;:::-;22240:139;;21967:419;;;:::o;22392:::-;22558:4;22596:2;22585:9;22581:18;22573:26;;22645:9;22639:4;22635:20;22631:1;22620:9;22616:17;22609:47;22673:131;22799:4;22673:131;:::i;:::-;22665:139;;22392:419;;;:::o;22817:::-;22983:4;23021:2;23010:9;23006:18;22998:26;;23070:9;23064:4;23060:20;23056:1;23045:9;23041:17;23034:47;23098:131;23224:4;23098:131;:::i;:::-;23090:139;;22817:419;;;:::o;23242:::-;23408:4;23446:2;23435:9;23431:18;23423:26;;23495:9;23489:4;23485:20;23481:1;23470:9;23466:17;23459:47;23523:131;23649:4;23523:131;:::i;:::-;23515:139;;23242:419;;;:::o;23667:::-;23833:4;23871:2;23860:9;23856:18;23848:26;;23920:9;23914:4;23910:20;23906:1;23895:9;23891:17;23884:47;23948:131;24074:4;23948:131;:::i;:::-;23940:139;;23667:419;;;:::o;24092:::-;24258:4;24296:2;24285:9;24281:18;24273:26;;24345:9;24339:4;24335:20;24331:1;24320:9;24316:17;24309:47;24373:131;24499:4;24373:131;:::i;:::-;24365:139;;24092:419;;;:::o;24517:::-;24683:4;24721:2;24710:9;24706:18;24698:26;;24770:9;24764:4;24760:20;24756:1;24745:9;24741:17;24734:47;24798:131;24924:4;24798:131;:::i;:::-;24790:139;;24517:419;;;:::o;24942:::-;25108:4;25146:2;25135:9;25131:18;25123:26;;25195:9;25189:4;25185:20;25181:1;25170:9;25166:17;25159:47;25223:131;25349:4;25223:131;:::i;:::-;25215:139;;24942:419;;;:::o;25367:::-;25533:4;25571:2;25560:9;25556:18;25548:26;;25620:9;25614:4;25610:20;25606:1;25595:9;25591:17;25584:47;25648:131;25774:4;25648:131;:::i;:::-;25640:139;;25367:419;;;:::o;25792:::-;25958:4;25996:2;25985:9;25981:18;25973:26;;26045:9;26039:4;26035:20;26031:1;26020:9;26016:17;26009:47;26073:131;26199:4;26073:131;:::i;:::-;26065:139;;25792:419;;;:::o;26217:::-;26383:4;26421:2;26410:9;26406:18;26398:26;;26470:9;26464:4;26460:20;26456:1;26445:9;26441:17;26434:47;26498:131;26624:4;26498:131;:::i;:::-;26490:139;;26217:419;;;:::o;26642:::-;26808:4;26846:2;26835:9;26831:18;26823:26;;26895:9;26889:4;26885:20;26881:1;26870:9;26866:17;26859:47;26923:131;27049:4;26923:131;:::i;:::-;26915:139;;26642:419;;;:::o;27067:::-;27233:4;27271:2;27260:9;27256:18;27248:26;;27320:9;27314:4;27310:20;27306:1;27295:9;27291:17;27284:47;27348:131;27474:4;27348:131;:::i;:::-;27340:139;;27067:419;;;:::o;27492:::-;27658:4;27696:2;27685:9;27681:18;27673:26;;27745:9;27739:4;27735:20;27731:1;27720:9;27716:17;27709:47;27773:131;27899:4;27773:131;:::i;:::-;27765:139;;27492:419;;;:::o;27917:::-;28083:4;28121:2;28110:9;28106:18;28098:26;;28170:9;28164:4;28160:20;28156:1;28145:9;28141:17;28134:47;28198:131;28324:4;28198:131;:::i;:::-;28190:139;;27917:419;;;:::o;28342:::-;28508:4;28546:2;28535:9;28531:18;28523:26;;28595:9;28589:4;28585:20;28581:1;28570:9;28566:17;28559:47;28623:131;28749:4;28623:131;:::i;:::-;28615:139;;28342:419;;;:::o;28767:::-;28933:4;28971:2;28960:9;28956:18;28948:26;;29020:9;29014:4;29010:20;29006:1;28995:9;28991:17;28984:47;29048:131;29174:4;29048:131;:::i;:::-;29040:139;;28767:419;;;:::o;29192:::-;29358:4;29396:2;29385:9;29381:18;29373:26;;29445:9;29439:4;29435:20;29431:1;29420:9;29416:17;29409:47;29473:131;29599:4;29473:131;:::i;:::-;29465:139;;29192:419;;;:::o;29617:222::-;29710:4;29748:2;29737:9;29733:18;29725:26;;29761:71;29829:1;29818:9;29814:17;29805:6;29761:71;:::i;:::-;29617:222;;;;:::o;29845:129::-;29879:6;29906:20;;:::i;:::-;29896:30;;29935:33;29963:4;29955:6;29935:33;:::i;:::-;29845:129;;;:::o;29980:75::-;30013:6;30046:2;30040:9;30030:19;;29980:75;:::o;30061:307::-;30122:4;30212:18;30204:6;30201:30;30198:56;;;30234:18;;:::i;:::-;30198:56;30272:29;30294:6;30272:29;:::i;:::-;30264:37;;30356:4;30350;30346:15;30338:23;;30061:307;;;:::o;30374:308::-;30436:4;30526:18;30518:6;30515:30;30512:56;;;30548:18;;:::i;:::-;30512:56;30586:29;30608:6;30586:29;:::i;:::-;30578:37;;30670:4;30664;30660:15;30652:23;;30374:308;;;:::o;30688:98::-;30739:6;30773:5;30767:12;30757:22;;30688:98;;;:::o;30792:99::-;30844:6;30878:5;30872:12;30862:22;;30792:99;;;:::o;30897:168::-;30980:11;31014:6;31009:3;31002:19;31054:4;31049:3;31045:14;31030:29;;30897:168;;;;:::o;31071:169::-;31155:11;31189:6;31184:3;31177:19;31229:4;31224:3;31220:14;31205:29;;31071:169;;;;:::o;31246:148::-;31348:11;31385:3;31370:18;;31246:148;;;;:::o;31400:273::-;31440:3;31459:20;31477:1;31459:20;:::i;:::-;31454:25;;31493:20;31511:1;31493:20;:::i;:::-;31488:25;;31615:1;31579:34;31575:42;31572:1;31569:49;31566:75;;;31621:18;;:::i;:::-;31566:75;31665:1;31662;31658:9;31651:16;;31400:273;;;;:::o;31679:305::-;31719:3;31738:20;31756:1;31738:20;:::i;:::-;31733:25;;31772:20;31790:1;31772:20;:::i;:::-;31767:25;;31926:1;31858:66;31854:74;31851:1;31848:81;31845:107;;;31932:18;;:::i;:::-;31845:107;31976:1;31973;31969:9;31962:16;;31679:305;;;;:::o;31990:185::-;32030:1;32047:20;32065:1;32047:20;:::i;:::-;32042:25;;32081:20;32099:1;32081:20;:::i;:::-;32076:25;;32120:1;32110:35;;32125:18;;:::i;:::-;32110:35;32167:1;32164;32160:9;32155:14;;31990:185;;;;:::o;32181:348::-;32221:7;32244:20;32262:1;32244:20;:::i;:::-;32239:25;;32278:20;32296:1;32278:20;:::i;:::-;32273:25;;32466:1;32398:66;32394:74;32391:1;32388:81;32383:1;32376:9;32369:17;32365:105;32362:131;;;32473:18;;:::i;:::-;32362:131;32521:1;32518;32514:9;32503:20;;32181:348;;;;:::o;32535:191::-;32575:4;32595:20;32613:1;32595:20;:::i;:::-;32590:25;;32629:20;32647:1;32629:20;:::i;:::-;32624:25;;32668:1;32665;32662:8;32659:34;;;32673:18;;:::i;:::-;32659:34;32718:1;32715;32711:9;32703:17;;32535:191;;;;:::o;32732:::-;32772:4;32792:20;32810:1;32792:20;:::i;:::-;32787:25;;32826:20;32844:1;32826:20;:::i;:::-;32821:25;;32865:1;32862;32859:8;32856:34;;;32870:18;;:::i;:::-;32856:34;32915:1;32912;32908:9;32900:17;;32732:191;;;;:::o;32929:96::-;32966:7;32995:24;33013:5;32995:24;:::i;:::-;32984:35;;32929:96;;;:::o;33031:90::-;33065:7;33108:5;33101:13;33094:21;33083:32;;33031:90;;;:::o;33127:149::-;33163:7;33203:66;33196:5;33192:78;33181:89;;33127:149;;;:::o;33282:118::-;33319:7;33359:34;33352:5;33348:46;33337:57;;33282:118;;;:::o;33406:126::-;33443:7;33483:42;33476:5;33472:54;33461:65;;33406:126;;;:::o;33538:77::-;33575:7;33604:5;33593:16;;33538:77;;;:::o;33621:154::-;33705:6;33700:3;33695;33682:30;33767:1;33758:6;33753:3;33749:16;33742:27;33621:154;;;:::o;33781:307::-;33849:1;33859:113;33873:6;33870:1;33867:13;33859:113;;;33958:1;33953:3;33949:11;33943:18;33939:1;33934:3;33930:11;33923:39;33895:2;33892:1;33888:10;33883:15;;33859:113;;;33990:6;33987:1;33984:13;33981:101;;;34070:1;34061:6;34056:3;34052:16;34045:27;33981:101;33830:258;33781:307;;;:::o;34094:171::-;34133:3;34156:24;34174:5;34156:24;:::i;:::-;34147:33;;34202:4;34195:5;34192:15;34189:41;;;34210:18;;:::i;:::-;34189:41;34257:1;34250:5;34246:13;34239:20;;34094:171;;;:::o;34271:320::-;34315:6;34352:1;34346:4;34342:12;34332:22;;34399:1;34393:4;34389:12;34420:18;34410:81;;34476:4;34468:6;34464:17;34454:27;;34410:81;34538:2;34530:6;34527:14;34507:18;34504:38;34501:84;;;34557:18;;:::i;:::-;34501:84;34322:269;34271:320;;;:::o;34597:281::-;34680:27;34702:4;34680:27;:::i;:::-;34672:6;34668:40;34810:6;34798:10;34795:22;34774:18;34762:10;34759:34;34756:62;34753:88;;;34821:18;;:::i;:::-;34753:88;34861:10;34857:2;34850:22;34640:238;34597:281;;:::o;34884:233::-;34923:3;34946:24;34964:5;34946:24;:::i;:::-;34937:33;;34992:66;34985:5;34982:77;34979:103;;;35062:18;;:::i;:::-;34979:103;35109:1;35102:5;35098:13;35091:20;;34884:233;;;:::o;35123:176::-;35155:1;35172:20;35190:1;35172:20;:::i;:::-;35167:25;;35206:20;35224:1;35206:20;:::i;:::-;35201:25;;35245:1;35235:35;;35250:18;;:::i;:::-;35235:35;35291:1;35288;35284:9;35279:14;;35123:176;;;;:::o;35305:180::-;35353:77;35350:1;35343:88;35450:4;35447:1;35440:15;35474:4;35471:1;35464:15;35491:180;35539:77;35536:1;35529:88;35636:4;35633:1;35626:15;35660:4;35657:1;35650:15;35677:180;35725:77;35722:1;35715:88;35822:4;35819:1;35812:15;35846:4;35843:1;35836:15;35863:180;35911:77;35908:1;35901:88;36008:4;36005:1;35998:15;36032:4;36029:1;36022:15;36049:180;36097:77;36094:1;36087:88;36194:4;36191:1;36184:15;36218:4;36215:1;36208:15;36235:117;36344:1;36341;36334:12;36358:117;36467:1;36464;36457:12;36481:117;36590:1;36587;36580:12;36604:117;36713:1;36710;36703:12;36727:102;36768:6;36819:2;36815:7;36810:2;36803:5;36799:14;36795:28;36785:38;;36727:102;;;:::o;36835:221::-;36975:34;36971:1;36963:6;36959:14;36952:58;37044:4;37039:2;37031:6;37027:15;37020:29;36835:221;:::o;37062:158::-;37202:10;37198:1;37190:6;37186:14;37179:34;37062:158;:::o;37226:225::-;37366:34;37362:1;37354:6;37350:14;37343:58;37435:8;37430:2;37422:6;37418:15;37411:33;37226:225;:::o;37457:229::-;37597:34;37593:1;37585:6;37581:14;37574:58;37666:12;37661:2;37653:6;37649:15;37642:37;37457:229;:::o;37692:222::-;37832:34;37828:1;37820:6;37816:14;37809:58;37901:5;37896:2;37888:6;37884:15;37877:30;37692:222;:::o;37920:224::-;38060:34;38056:1;38048:6;38044:14;38037:58;38129:7;38124:2;38116:6;38112:15;38105:32;37920:224;:::o;38150:221::-;38290:34;38286:1;38278:6;38274:14;38267:58;38359:4;38354:2;38346:6;38342:15;38335:29;38150:221;:::o;38377:166::-;38517:18;38513:1;38505:6;38501:14;38494:42;38377:166;:::o;38549:244::-;38689:34;38685:1;38677:6;38673:14;38666:58;38758:27;38753:2;38745:6;38741:15;38734:52;38549:244;:::o;38799:230::-;38939:34;38935:1;38927:6;38923:14;38916:58;39008:13;39003:2;38995:6;38991:15;38984:38;38799:230;:::o;39035:225::-;39175:34;39171:1;39163:6;39159:14;39152:58;39244:8;39239:2;39231:6;39227:15;39220:33;39035:225;:::o;39266:182::-;39406:34;39402:1;39394:6;39390:14;39383:58;39266:182;:::o;39454:234::-;39594:34;39590:1;39582:6;39578:14;39571:58;39663:17;39658:2;39650:6;39646:15;39639:42;39454:234;:::o;39694:176::-;39834:28;39830:1;39822:6;39818:14;39811:52;39694:176;:::o;39876:237::-;40016:34;40012:1;40004:6;40000:14;39993:58;40085:20;40080:2;40072:6;40068:15;40061:45;39876:237;:::o;40119:220::-;40259:34;40255:1;40247:6;40243:14;40236:58;40328:3;40323:2;40315:6;40311:15;40304:28;40119:220;:::o;40345:221::-;40485:34;40481:1;40473:6;40469:14;40462:58;40554:4;40549:2;40541:6;40537:15;40530:29;40345:221;:::o;40572:238::-;40712:34;40708:1;40700:6;40696:14;40689:58;40781:21;40776:2;40768:6;40764:15;40757:46;40572:238;:::o;40816:179::-;40956:31;40952:1;40944:6;40940:14;40933:55;40816:179;:::o;41001:220::-;41141:34;41137:1;41129:6;41125:14;41118:58;41210:3;41205:2;41197:6;41193:15;41186:28;41001:220;:::o;41227:233::-;41367:34;41363:1;41355:6;41351:14;41344:58;41436:16;41431:2;41423:6;41419:15;41412:41;41227:233;:::o;41466:234::-;41606:34;41602:1;41594:6;41590:14;41583:58;41675:17;41670:2;41662:6;41658:15;41651:42;41466:234;:::o;41706:232::-;41846:34;41842:1;41834:6;41830:14;41823:58;41915:15;41910:2;41902:6;41898:15;41891:40;41706:232;:::o;41944:221::-;42084:34;42080:1;42072:6;42068:14;42061:58;42153:4;42148:2;42140:6;42136:15;42129:29;41944:221;:::o;42171:122::-;42244:24;42262:5;42244:24;:::i;:::-;42237:5;42234:35;42224:63;;42283:1;42280;42273:12;42224:63;42171:122;:::o;42299:116::-;42369:21;42384:5;42369:21;:::i;:::-;42362:5;42359:32;42349:60;;42405:1;42402;42395:12;42349:60;42299:116;:::o;42421:120::-;42493:23;42510:5;42493:23;:::i;:::-;42486:5;42483:34;42473:62;;42531:1;42528;42521:12;42473:62;42421:120;:::o;42547:122::-;42620:24;42638:5;42620:24;:::i;:::-;42613:5;42610:35;42600:63;;42659:1;42656;42649:12;42600:63;42547:122;:::o

Swarm Source

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