ETH Price: $3,348.42 (-0.55%)
Gas: 3 Gwei

Contract

0xcf2EE98aB154316A041a252e8175e400dc0BA2E3
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Token Holdings

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Buy Wl155087002022-09-10 12:01:04688 days ago1662811264IN
0xcf2EE98a...0dc0BA2E3
0 ETH0.000798069.68007161
Buy Wl154906512022-09-07 13:49:27691 days ago1662558567IN
0xcf2EE98a...0dc0BA2E3
0 ETH0.0013841816.78937694
Buy Wl154644872022-09-03 9:12:30695 days ago1662196350IN
0xcf2EE98a...0dc0BA2E3
0 ETH0.000761169.23256795
Buy Wl153949362022-08-23 6:06:56707 days ago1661234816IN
0xcf2EE98a...0dc0BA2E3
0 ETH0.0009333211.3207511
Buy Wl153721862022-08-19 15:49:26710 days ago1660924166IN
0xcf2EE98a...0dc0BA2E3
0 ETH0.001358816.48159586
Buy Wl153341872022-08-13 15:24:48716 days ago1660404288IN
0xcf2EE98a...0dc0BA2E3
0 ETH0.000602257.30504039
Buy Wl152793122022-08-05 1:17:39725 days ago1659662259IN
0xcf2EE98a...0dc0BA2E3
0 ETH0.000473145.7389891
Buy Wl152458072022-07-30 19:59:08730 days ago1659211148IN
0xcf2EE98a...0dc0BA2E3
0 ETH0.0018433222.35848419
Buy Wl152358692022-07-29 6:51:46732 days ago1659077506IN
0xcf2EE98a...0dc0BA2E3
0 ETH0.0008779311.30715229
Buy Wl152310092022-07-28 12:28:07732 days ago1659011287IN
0xcf2EE98a...0dc0BA2E3
0 ETH0.0014045817.03685869
Buy Wl152285002022-07-28 3:17:37733 days ago1658978257IN
0xcf2EE98a...0dc0BA2E3
0 ETH0.0014591317.6984981
Buy Wl152253892022-07-27 15:37:04733 days ago1658936224IN
0xcf2EE98a...0dc0BA2E3
0 ETH0.0031934138.73433289
Buy Wl152249902022-07-27 14:10:07733 days ago1658931007IN
0xcf2EE98a...0dc0BA2E3
0 ETH0.0020323224.6510065
Buy Wl152047302022-07-24 10:17:41736 days ago1658657861IN
0xcf2EE98a...0dc0BA2E3
0 ETH0.000575916.98557925
Buy Wl151954512022-07-22 23:36:50738 days ago1658533010IN
0xcf2EE98a...0dc0BA2E3
0 ETH0.0011507113.9575104
Buy Wl151663952022-07-18 11:37:37742 days ago1658144257IN
0xcf2EE98a...0dc0BA2E3
0 ETH0.001185914.38435224
Buy Wl151515632022-07-16 4:25:49745 days ago1657945549IN
0xcf2EE98a...0dc0BA2E3
0 ETH0.0010502712.73924547
Buy Wl151414192022-07-14 14:52:00746 days ago1657810320IN
0xcf2EE98a...0dc0BA2E3
0 ETH0.0020656425.05511158
Buy Wl151405652022-07-14 11:44:55746 days ago1657799095IN
0xcf2EE98a...0dc0BA2E3
0 ETH0.0013508216.38480587
Buy Wl151391082022-07-14 6:33:20747 days ago1657780400IN
0xcf2EE98a...0dc0BA2E3
0 ETH0.000792339.61053382
Buy Wl151391032022-07-14 6:32:03747 days ago1657780323IN
0xcf2EE98a...0dc0BA2E3
0 ETH0.000729898.85326909
Buy Wl151390922022-07-14 6:30:32747 days ago1657780232IN
0xcf2EE98a...0dc0BA2E3
0 ETH0.000718188.71112645
Buy Wl151390872022-07-14 6:29:42747 days ago1657780182IN
0xcf2EE98a...0dc0BA2E3
0 ETH0.000697788.46377586
Buy Wl151383872022-07-14 3:52:14747 days ago1657770734IN
0xcf2EE98a...0dc0BA2E3
0 ETH0.0016466119.97252805
Buy Wl151383812022-07-14 3:50:45747 days ago1657770645IN
0xcf2EE98a...0dc0BA2E3
0 ETH0.0017341421.03420893
View all transactions

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
DivineWolvesMarket

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-03-09
*/

// File: Marketplace_flat.sol


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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/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: @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: @openzeppelin/contracts/token/ERC20/IERC20.sol


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

//SPDX-License-Identifier: MIT
pragma solidity 0.8.7;

/**
 * @title Divine Wolves Market
 * @author Decentralized Devs - Angelo
 */





contract DivineWolvesMarket is  Ownable {

    using Address for address;

       struct Lottery {
            //winner
           address winner;
           //NFT Contract 
           address nftcontract;
           //ID of the NFT
           uint64 nftID;
           //Number of tickets 
           uint64 ticketMaxSupply;
           //Tickets purchased
           uint64 ticketsPurchased;
            // Lotter min cap 
           uint64 lotteryCap;
           //Ticket price 
           uint256 price;
           //Lottery Cap enabled
           bool isLotteryCappped; 
           //winner selected 
           bool isWinnerSelected;
           //lottery Active 
           bool active;
           //address pool
           address[] addressPool;
         }

        struct Whitelist {
            bool active;
            uint64 spots;
            uint256 price;
            bytes32 title;
            address[] addressPool;

        }

    mapping(uint64 => Lottery) public lotteries; 
    mapping(uint64 => Whitelist) public whitelists; 
    mapping(address => bool) internal _depositers;
    mapping(address => uint64) internal _depositedNFTS;

    address erc20Contract;


    modifier lotteryIndexCheck(uint64 _index) {
        require(_index >= 0 && _index <= _currentIndex, "Invalid Lottery Index");
        _;
    }

    modifier whitelistindexCheck(uint64 _index) {
        require(_index > 0 && _index <= _currentWhitelistIndex, "Invalid Whitelist Index");
        _;
    }

    // The tokenId of the next lottery to be created.
    uint256 public _currentIndex; 
     uint256 public _currentWhitelistIndex; 
    

     function totalSupply(bool _isLottery) public view returns (uint256) {
        unchecked {
            return _isLottery? _currentIndex:_currentWhitelistIndex;
        }
    }

    //User functions 
    function buyTicket(uint64 _index, uint64 _amount) public payable  lotteryIndexCheck(_index) {
        Lottery storage lottery = lotteries[_index];
        require(lottery.active , "Lottery is not Active Yet");
        require(!lottery.isWinnerSelected, "Lottery has ended");
         uint256 balance = IERC20(erc20Contract).balanceOf(msg.sender);
        require(balance >=  (lottery.price * _amount) , "Not enough Erc20 Tokens");
        require(lottery.ticketsPurchased + _amount <= lottery.ticketMaxSupply, "Purchasing Tickets Exceeds max supply");
        IERC20(erc20Contract).transferFrom(msg.sender, address(this), (lottery.price * _amount));
        for(uint64 i = 0; i < _amount; i++){
            lottery.addressPool.push(msg.sender);
        }
        //update purchased amount 
        lottery.ticketsPurchased += _amount;
    }

     function buyWl(uint64 _index) public   whitelistindexCheck(_index) {
        Whitelist storage wl = whitelists[_index];
        require(wl.active , "Whitelisting is not Active Yet");
        require(wl.addressPool.length + 1 <= wl.spots, "WL Spots Maxxed out");
        uint256 balance = IERC20(erc20Contract).balanceOf(msg.sender);
        require(wl.price <= balance, "Insufficent ERC20 Tokens");
        IERC20(erc20Contract).transferFrom(msg.sender, address(this), wl.price);
        wl.addressPool.push(msg.sender);
       
    }

    function viewWinner(uint64 _index) public view  lotteryIndexCheck(_index) returns(address )  {
         Lottery storage lottery = lotteries[_index];
         return lottery.winner;
    }
    


    //Admin functions 

     function setErc20(address _bAddress) public onlyOwner {
        erc20Contract = _bAddress;
    }

    function createWhitelist(
       
        uint64 _spots,
        uint256 _price
    )public onlyOwner{
            uint256 newIndex = _currentWhitelistIndex + 1;
            Whitelist storage wl = whitelists[uint64(newIndex)];
           // wl.title =_title;
            wl.spots = _spots;
            wl.price = _price;

            _currentWhitelistIndex = newIndex;
    }
    function createLottery(
        address _contract,
        uint64 _nftID,
        uint64 _ticketMaxSupply,
        uint64 _lotteryCapAmount,
        uint256 _price,
        bool _isLotteryCapped 
    ) public onlyOwner{
        
        //Transfer NFT to Openlottery 
         IERC721(_contract).transferFrom(
            msg.sender,
            address(this),
            _nftID
        );

        //create Lottery
        uint256 newIndex = _currentIndex + 1;
        Lottery storage lottery = lotteries[uint64(newIndex)];
        lottery.nftcontract = _contract;
        lottery.nftID = _nftID;
        lottery.ticketMaxSupply = _ticketMaxSupply;
        lottery.isLotteryCappped = _isLotteryCapped;
        lottery.lotteryCap =  _lotteryCapAmount;
        lottery.price = _price;
        lottery.active =  false;
        //set new index
        _currentIndex = newIndex;
    }

    function getLottery(uint64 _index) public view lotteryIndexCheck(_index)  returns (Lottery memory)  {
        return lotteries[_index];
    }


    function setLotteryTicketPrice(uint64 _index, uint256 _price) public onlyOwner lotteryIndexCheck(_index) {
        require(_price > 0, "Price should be greater than 0");
         Lottery storage lottery = lotteries[_index];
         lottery.price = _price;
    }

    function setWlPrice(uint64 _index, uint256 _price) public onlyOwner whitelistindexCheck(_index) {
        require(_price > 0, "Price should be greater than 0");
         Whitelist storage wl = whitelists[_index];
         wl.price = _price;
    }

    function setWlSpots(uint64 _index, uint64 _spots) public onlyOwner whitelistindexCheck(_index) {
        require(_spots > 0, "Spots should be greater than 0");
         Whitelist storage wl = whitelists[_index];
         wl.spots = _spots;
    }

     function setWlState(uint64 _index, bool _state) public onlyOwner whitelistindexCheck(_index) {
         Whitelist storage wl = whitelists[_index];
         wl.active = _state;
    }

     function getWlAddresses(uint64 _index) public view  whitelistindexCheck(_index)  returns(address[] memory){
         Whitelist storage wl = whitelists[_index];
        return wl.addressPool;
    }

    function setLotteryState(uint64 _index, bool _state )public onlyOwner lotteryIndexCheck(_index)  {
         Lottery storage lottery = lotteries[_index];
         lottery.active = _state;
    }


     function setLotteryNFT(uint64 _index, address _contract, uint64 _nftID )public onlyOwner lotteryIndexCheck(_index)  {
         Lottery storage lottery = lotteries[_index];
         lottery.nftcontract = _contract;
         lottery.nftID = _nftID;
    }

    function overideTransfer(address _contract, address _to, uint64 _nftId) public onlyOwner {
         IERC721(_contract).transferFrom(
            address(this),
            _to,
            _nftId
        );
    }


    function drawLottery(uint64 _index) public  onlyOwner lotteryIndexCheck(_index) {
         Lottery storage lottery = lotteries[_index];
         require(lottery.active, "This lottery is not yet active");
         require(!lottery.isWinnerSelected, "Winner already selected");
         if(lottery.isLotteryCappped){
             require(lottery.ticketsPurchased > lottery.lotteryCap, "Lottery cannot be drawn till it reaches it cap");
         }
         //select winner 
         uint winnerIndex = _getRandom(uint64(lottery.addressPool.length));
         lottery.winner = lottery.addressPool[winnerIndex];
         lottery.isWinnerSelected = true;
         //Transfer the NFT 

        //Transfer NFT to Openlottery 
         IERC721(lottery.nftcontract).transferFrom(
            address(this),
            lottery.addressPool[winnerIndex],
            lottery.nftID
        );
    }

    function _getRandom(uint64 _range) public view returns (uint) {
       return uint(keccak256(abi.encodePacked(block.difficulty, block.timestamp, _range))) % _range;
    }


    function withdraw() public payable onlyOwner  {
        (bool os, ) = payable(owner()).call{value: address(this).balance}("");
        require(os);
    }

     function burnFang(address _burnWallet) public payable onlyOwner  {
     uint256 balance = IERC20(erc20Contract).balanceOf(address(this));
       IERC20(erc20Contract).transferFrom(address(this), _burnWallet, balance);
    }

    function fangBalance() public view onlyOwner returns(uint256){
        uint256 balance = IERC20(erc20Contract).balanceOf(address(this));
        return balance;
    }
    
   
    function getLotteryAddressPool(uint64 _index) public view  lotteryIndexCheck(_index) returns (address[] memory)  {
         Lottery storage lottery = lotteries[_index];
         return lottery.addressPool;
    }

    function getWhitelistInfo(uint64 _index )public view onlyOwner whitelistindexCheck(_index)  returns(Whitelist memory) {
         Whitelist storage wl = whitelists[_index];
        return wl;
    }

      function getWlPrice(uint64 _index )public view onlyOwner whitelistindexCheck(_index)  returns(uint256) {
         Whitelist storage wl = whitelists[_index];
        return wl.price;
    }


    

}

Contract Security Audit

Contract ABI

[{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"inputs":[],"name":"_currentIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_currentWhitelistIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint64","name":"_range","type":"uint64"}],"name":"_getRandom","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_burnWallet","type":"address"}],"name":"burnFang","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint64","name":"_index","type":"uint64"},{"internalType":"uint64","name":"_amount","type":"uint64"}],"name":"buyTicket","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint64","name":"_index","type":"uint64"}],"name":"buyWl","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_contract","type":"address"},{"internalType":"uint64","name":"_nftID","type":"uint64"},{"internalType":"uint64","name":"_ticketMaxSupply","type":"uint64"},{"internalType":"uint64","name":"_lotteryCapAmount","type":"uint64"},{"internalType":"uint256","name":"_price","type":"uint256"},{"internalType":"bool","name":"_isLotteryCapped","type":"bool"}],"name":"createLottery","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint64","name":"_spots","type":"uint64"},{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"createWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint64","name":"_index","type":"uint64"}],"name":"drawLottery","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"fangBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint64","name":"_index","type":"uint64"}],"name":"getLottery","outputs":[{"components":[{"internalType":"address","name":"winner","type":"address"},{"internalType":"address","name":"nftcontract","type":"address"},{"internalType":"uint64","name":"nftID","type":"uint64"},{"internalType":"uint64","name":"ticketMaxSupply","type":"uint64"},{"internalType":"uint64","name":"ticketsPurchased","type":"uint64"},{"internalType":"uint64","name":"lotteryCap","type":"uint64"},{"internalType":"uint256","name":"price","type":"uint256"},{"internalType":"bool","name":"isLotteryCappped","type":"bool"},{"internalType":"bool","name":"isWinnerSelected","type":"bool"},{"internalType":"bool","name":"active","type":"bool"},{"internalType":"address[]","name":"addressPool","type":"address[]"}],"internalType":"struct DivineWolvesMarket.Lottery","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint64","name":"_index","type":"uint64"}],"name":"getLotteryAddressPool","outputs":[{"internalType":"address[]","name":"","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint64","name":"_index","type":"uint64"}],"name":"getWhitelistInfo","outputs":[{"components":[{"internalType":"bool","name":"active","type":"bool"},{"internalType":"uint64","name":"spots","type":"uint64"},{"internalType":"uint256","name":"price","type":"uint256"},{"internalType":"bytes32","name":"title","type":"bytes32"},{"internalType":"address[]","name":"addressPool","type":"address[]"}],"internalType":"struct DivineWolvesMarket.Whitelist","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint64","name":"_index","type":"uint64"}],"name":"getWlAddresses","outputs":[{"internalType":"address[]","name":"","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint64","name":"_index","type":"uint64"}],"name":"getWlPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint64","name":"","type":"uint64"}],"name":"lotteries","outputs":[{"internalType":"address","name":"winner","type":"address"},{"internalType":"address","name":"nftcontract","type":"address"},{"internalType":"uint64","name":"nftID","type":"uint64"},{"internalType":"uint64","name":"ticketMaxSupply","type":"uint64"},{"internalType":"uint64","name":"ticketsPurchased","type":"uint64"},{"internalType":"uint64","name":"lotteryCap","type":"uint64"},{"internalType":"uint256","name":"price","type":"uint256"},{"internalType":"bool","name":"isLotteryCappped","type":"bool"},{"internalType":"bool","name":"isWinnerSelected","type":"bool"},{"internalType":"bool","name":"active","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_contract","type":"address"},{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint64","name":"_nftId","type":"uint64"}],"name":"overideTransfer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_bAddress","type":"address"}],"name":"setErc20","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint64","name":"_index","type":"uint64"},{"internalType":"address","name":"_contract","type":"address"},{"internalType":"uint64","name":"_nftID","type":"uint64"}],"name":"setLotteryNFT","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint64","name":"_index","type":"uint64"},{"internalType":"bool","name":"_state","type":"bool"}],"name":"setLotteryState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint64","name":"_index","type":"uint64"},{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setLotteryTicketPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint64","name":"_index","type":"uint64"},{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setWlPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint64","name":"_index","type":"uint64"},{"internalType":"uint64","name":"_spots","type":"uint64"}],"name":"setWlSpots","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint64","name":"_index","type":"uint64"},{"internalType":"bool","name":"_state","type":"bool"}],"name":"setWlState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isLottery","type":"bool"}],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint64","name":"_index","type":"uint64"}],"name":"viewWinner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint64","name":"","type":"uint64"}],"name":"whitelists","outputs":[{"internalType":"bool","name":"active","type":"bool"},{"internalType":"uint64","name":"spots","type":"uint64"},{"internalType":"uint256","name":"price","type":"uint256"},{"internalType":"bytes32","name":"title","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

608060405234801561001057600080fd5b5061001a3361001f565b61006f565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6126368061007e6000396000f3fe6080604052600436106101d85760003560e01c80638994264911610102578063d0c2ccd511610095578063ee9b80a411610064578063ee9b80a41461066d578063f243140c1461068d578063f2fde38b146106ad578063f6d672ca146106cd57600080fd5b8063d0c2ccd514610509578063d4d4099b1461060d578063ed0c5d4b1461062d578063ede0f25c1461064d57600080fd5b8063a8f8de9d116100d1578063a8f8de9d1461042f578063b66285761461045c578063b9721be9146104d6578063c529409e146104f657600080fd5b8063899426491461039a5780638ab67f15146103ba5780638da5cb5b146103e75780639451c99a1461041957600080fd5b80635799e3351161017a57806372a8a0f91161014957806372a8a0f91461031857806372f4d8cb1461032d5780638370b0f81461034d57806388dbe3ce1461036d57600080fd5b80635799e3351461029a57806366a795fb146102ba5780636870b4a2146102da578063715018a61461030357600080fd5b806330f40647116101b657806330f406471461023f5780633ccfd60b1461025f57806341bc12e5146102675780634768c13c1461028757600080fd5b806306662894146101dd578063088c9f07146101ff57806310269d2b1461021f575b600080fd5b3480156101e957600080fd5b506101fd6101f83660046121cd565b6106ed565b005b34801561020b57600080fd5b506101fd61021a366004612222565b610796565b34801561022b57600080fd5b506101fd61023a3660046120ab565b610815565b34801561024b57600080fd5b506101fd61025a3660046121eb565b6108a6565b6101fd61093d565b34801561027357600080fd5b506101fd6102823660046121b2565b6109ca565b6101fd61029536600461224c565b610c68565b3480156102a657600080fd5b506101fd6102b53660046120ee565b611025565b3480156102c657600080fd5b506101fd6102d5366004612222565b611176565b3480156102e657600080fd5b506102f060075481565b6040519081526020015b60405180910390f35b34801561030f57600080fd5b506101fd61123c565b34801561032457600080fd5b506102f0611272565b34801561033957600080fd5b506102f06103483660046121b2565b61131f565b34801561035957600080fd5b506101fd61036836600461224c565b6113ab565b34801561037957600080fd5b5061038d6103883660046121b2565b6114a6565b6040516102fa91906124cd565b3480156103a657600080fd5b506102f06103b536600461215f565b6115f3565b3480156103c657600080fd5b506103da6103d53660046121b2565b61160c565b6040516102fa91906123d7565b3480156103f357600080fd5b506000546001600160a01b03165b6040516001600160a01b0390911681526020016102fa565b34801561042557600080fd5b506102f060065481565b34801561043b57600080fd5b5061044f61044a3660046121b2565b6117ae565b6040516102fa91906122ef565b34801561046857600080fd5b506104ac6104773660046121b2565b600260208190526000918252604090912080546001820154919092015460ff83169261010090046001600160401b0316919084565b6040805194151585526001600160401b0390931660208501529183015260608201526080016102fa565b3480156104e257600080fd5b5061044f6104f13660046121b2565b61185a565b6101fd610504366004612089565b611919565b34801561051557600080fd5b506105a16105243660046121b2565b6001602081905260009182526040909120805491810154600282015460038301546004909301546001600160a01b03948516948316936001600160401b03600160a01b90940484169383811693600160401b8104821693600160801b909104909116919060ff80821691610100810482169162010000909104168a565b604080516001600160a01b039b8c1681529a90991660208b01526001600160401b03978816988a019890985294861660608901529285166080880152931660a086015260c085019290925290151560e084015215156101008301521515610120820152610140016102fa565b34801561061957600080fd5b506101fd6106283660046121eb565b611a52565b34801561063957600080fd5b506101fd610648366004612222565b611adf565b34801561065957600080fd5b506102f06106683660046121b2565b611bba565b34801561067957600080fd5b506101fd610688366004612089565b611c0f565b34801561069957600080fd5b506101fd6106a83660046121b2565b611c5b565b3480156106b957600080fd5b506101fd6106c8366004612089565b611f1a565b3480156106d957600080fd5b506104016106e83660046121b2565b611fb2565b6000546001600160a01b031633146107205760405162461bcd60e51b81526004016107179061236b565b60405180910390fd5b82600654816001600160401b0316111561074c5760405162461bcd60e51b81526004016107179061233c565b506001600160401b03928316600090815260016020819052604090912001805491909316600160a01b026001600160e01b03199091166001600160a01b0390921691909117179055565b6000546001600160a01b031633146107c05760405162461bcd60e51b81526004016107179061236b565b600060075460016107d1919061251b565b6001600160401b038181166000908152600260205260409020805468ffffffffffffffff001916610100969092169590950217845560019093019190915550600755565b6000546001600160a01b0316331461083f5760405162461bcd60e51b81526004016107179061236b565b6040516323b872dd60e01b81526001600160a01b038416906323b872dd9061086f903090869086906004016122c3565b600060405180830381600087803b15801561088957600080fd5b505af115801561089d573d6000803e3d6000fd5b50505050505050565b6000546001600160a01b031633146108d05760405162461bcd60e51b81526004016107179061236b565b816000816001600160401b03161180156108f55750600754816001600160401b031611155b6109115760405162461bcd60e51b8152600401610717906123a0565b506001600160401b03919091166000908152600260205260409020805460ff1916911515919091179055565b6000546001600160a01b031633146109675760405162461bcd60e51b81526004016107179061236b565b600080546040516001600160a01b039091169047908381818185875af1925050503d80600081146109b4576040519150601f19603f3d011682016040523d82523d6000602084013e6109b9565b606091505b50509050806109c757600080fd5b50565b806000816001600160401b03161180156109ef5750600754816001600160401b031611155b610a0b5760405162461bcd60e51b8152600401610717906123a0565b6001600160401b0382166000908152600260205260409020805460ff16610a745760405162461bcd60e51b815260206004820152601e60248201527f57686974656c697374696e67206973206e6f74204163746976652059657400006044820152606401610717565b805460038201546101009091046001600160401b031690610a9690600161251b565b1115610ada5760405162461bcd60e51b815260206004820152601360248201527215d30814dc1bdd1cc813585e1e1959081bdd5d606a1b6044820152606401610717565b6005546040516370a0823160e01b81523360048201526000916001600160a01b0316906370a082319060240160206040518083038186803b158015610b1e57600080fd5b505afa158015610b32573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b569190612199565b90508082600101541115610bac5760405162461bcd60e51b815260206004820152601860248201527f496e737566666963656e7420455243323020546f6b656e7300000000000000006044820152606401610717565b60055460018301546040516323b872dd60e01b815233600482015230602482015260448101919091526001600160a01b03909116906323b872dd90606401602060405180830381600087803b158015610c0457600080fd5b505af1158015610c18573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c3c919061217c565b50506003018054600181018255600091825260209091200180546001600160a01b031916331790555050565b81600654816001600160401b03161115610c945760405162461bcd60e51b81526004016107179061233c565b6001600160401b0383166000908152600160205260409020600481015462010000900460ff16610d065760405162461bcd60e51b815260206004820152601960248201527f4c6f7474657279206973206e6f742041637469766520596574000000000000006044820152606401610717565b6004810154610100900460ff1615610d545760405162461bcd60e51b8152602060048201526011602482015270131bdd1d195c9e481a185cc8195b991959607a1b6044820152606401610717565b6005546040516370a0823160e01b81523360048201526000916001600160a01b0316906370a082319060240160206040518083038186803b158015610d9857600080fd5b505afa158015610dac573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610dd09190612199565b9050836001600160401b03168260030154610deb919061255e565b811015610e3a5760405162461bcd60e51b815260206004820152601760248201527f4e6f7420656e6f75676820457263323020546f6b656e730000000000000000006044820152606401610717565b60028201546001600160401b0380821691610e5e918791600160401b900416612533565b6001600160401b03161115610ec35760405162461bcd60e51b815260206004820152602560248201527f50757263686173696e67205469636b6574732045786365656473206d617820736044820152647570706c7960d81b6064820152608401610717565b60055460038301546001600160a01b03909116906323b872dd9033903090610ef5906001600160401b038a169061255e565b6040516001600160e01b031960e086901b1681526001600160a01b0393841660048201529290911660248301526044820152606401602060405180830381600087803b158015610f4457600080fd5b505af1158015610f58573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f7c919061217c565b5060005b846001600160401b0316816001600160401b03161015610fd357600583018054600181018255600091825260209091200180546001600160a01b0319163317905580610fcb8161257d565b915050610f80565b50838260020160088282829054906101000a90046001600160401b0316610ffa9190612533565b92506101000a8154816001600160401b0302191690836001600160401b031602179055505050505050565b6000546001600160a01b0316331461104f5760405162461bcd60e51b81526004016107179061236b565b6040516323b872dd60e01b81526001600160a01b038716906323b872dd9061107f90339030908a906004016122c3565b600060405180830381600087803b15801561109957600080fd5b505af11580156110ad573d6000803e3d6000fd5b50505050600060065460016110c2919061251b565b6001600160401b0380821660009081526001602081905260409091209081018054998316600160a01b026001600160e01b0319909a166001600160a01b03909b169a909a1798909817909855600287018054600489018054978b16600160801b0277ffffffffffffffff0000000000000000ffffffffffffffff1990921698909a1697909717969096179095555060039094015562ff0000199215159290921662ff00ff1990921691909117909155600655565b6000546001600160a01b031633146111a05760405162461bcd60e51b81526004016107179061236b565b81600654816001600160401b031611156111cc5760405162461bcd60e51b81526004016107179061233c565b6000821161121c5760405162461bcd60e51b815260206004820152601e60248201527f50726963652073686f756c642062652067726561746572207468616e203000006044820152606401610717565b506001600160401b03909116600090815260016020526040902060030155565b6000546001600160a01b031633146112665760405162461bcd60e51b81526004016107179061236b565b6112706000612006565b565b600080546001600160a01b0316331461129d5760405162461bcd60e51b81526004016107179061236b565b6005546040516370a0823160e01b81523060048201526000916001600160a01b0316906370a082319060240160206040518083038186803b1580156112e157600080fd5b505afa1580156112f5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113199190612199565b91505090565b600080546001600160a01b0316331461134a5760405162461bcd60e51b81526004016107179061236b565b816000816001600160401b031611801561136f5750600754816001600160401b031611155b61138b5760405162461bcd60e51b8152600401610717906123a0565b50506001600160401b031660009081526002602052604090206001015490565b6000546001600160a01b031633146113d55760405162461bcd60e51b81526004016107179061236b565b816000816001600160401b03161180156113fa5750600754816001600160401b031611155b6114165760405162461bcd60e51b8152600401610717906123a0565b6000826001600160401b03161161146f5760405162461bcd60e51b815260206004820152601e60248201527f53706f74732073686f756c642062652067726561746572207468616e203000006044820152606401610717565b506001600160401b0391821660009081526002602052604090208054919092166101000268ffffffffffffffff0019909116179055565b6040805160a0810182526000808252602082018190529181018290526060808201839052608082015290546001600160a01b031633146114f85760405162461bcd60e51b81526004016107179061236b565b816000816001600160401b031611801561151d5750600754816001600160401b031611155b6115395760405162461bcd60e51b8152600401610717906123a0565b6001600160401b03808416600090815260026020818152604092839020835160a081018552815460ff811615158252610100900490951685830152600181015485850152918201546060850152600382018054845181840281018401909552808552929493859360808601939192918301828280156115e157602002820191906000526020600020905b81546001600160a01b031681526001909101906020018083116115c3575b50505050508152505092505050919050565b60008161160257600754611606565b6006545b92915050565b604080516101608101825260008082526020820181905291810182905260608082018390526080820183905260a0820183905260c0820183905260e08201839052610100820183905261012082019290925261014081019190915281600654816001600160401b031611156116935760405162461bcd60e51b81526004016107179061233c565b6001600160401b0380841660009081526001602081815260409283902083516101608101855281546001600160a01b0390811682529382015493841681840152600160a01b90930485168385015260028101548086166060850152600160401b810486166080850152600160801b900490941660a0830152600384015460c0830152600484015460ff808216151560e0850152610100808304821615159085015262010000909104161515610120830152600584018054845181840281018401909552808552929493610140860193909283018282801561179d57602002820191906000526020600020905b81546001600160a01b0316815260019091019060200180831161177f575b505050505081525050915050919050565b606081600654816001600160401b031611156117dc5760405162461bcd60e51b81526004016107179061233c565b6001600160401b03831660009081526001602090815260409182902060058101805484518185028101850190955280855291939290919083018282801561184c57602002820191906000526020600020905b81546001600160a01b0316815260019091019060200180831161182e575b505050505092505050919050565b6060816000816001600160401b03161180156118815750600754816001600160401b031611155b61189d5760405162461bcd60e51b8152600401610717906123a0565b6001600160401b03831660009081526002602090815260409182902060038101805484518185028101850190955280855291939290919083018282801561184c576020028201919060005260206000209081546001600160a01b0316815260019091019060200180831161182e57505050505092505050919050565b6000546001600160a01b031633146119435760405162461bcd60e51b81526004016107179061236b565b6005546040516370a0823160e01b81523060048201526000916001600160a01b0316906370a082319060240160206040518083038186803b15801561198757600080fd5b505afa15801561199b573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119bf9190612199565b6005546040516323b872dd60e01b81523060048201526001600160a01b038581166024830152604482018490529293509116906323b872dd90606401602060405180830381600087803b158015611a1557600080fd5b505af1158015611a29573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a4d919061217c565b505050565b6000546001600160a01b03163314611a7c5760405162461bcd60e51b81526004016107179061236b565b81600654816001600160401b03161115611aa85760405162461bcd60e51b81526004016107179061233c565b506001600160401b0390911660009081526001602052604090206004018054911515620100000262ff000019909216919091179055565b6000546001600160a01b03163314611b095760405162461bcd60e51b81526004016107179061236b565b816000816001600160401b0316118015611b2e5750600754816001600160401b031611155b611b4a5760405162461bcd60e51b8152600401610717906123a0565b60008211611b9a5760405162461bcd60e51b815260206004820152601e60248201527f50726963652073686f756c642062652067726561746572207468616e203000006044820152606401610717565b506001600160401b03909116600090815260026020526040902060010155565b6040805144602080830191909152428284015260c084901b6001600160c01b03191660608301528251604881840301815260689092019092528051910120600090611606906001600160401b038416906125a4565b6000546001600160a01b03163314611c395760405162461bcd60e51b81526004016107179061236b565b600580546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b03163314611c855760405162461bcd60e51b81526004016107179061236b565b80600654816001600160401b03161115611cb15760405162461bcd60e51b81526004016107179061233c565b6001600160401b0382166000908152600160205260409020600481015462010000900460ff16611d235760405162461bcd60e51b815260206004820152601e60248201527f54686973206c6f7474657279206973206e6f74207965742061637469766500006044820152606401610717565b6004810154610100900460ff1615611d7d5760405162461bcd60e51b815260206004820152601760248201527f57696e6e657220616c72656164792073656c65637465640000000000000000006044820152606401610717565b600481015460ff1615611e0d5760028101546001600160401b03600160801b82048116600160401b9092041611611e0d5760405162461bcd60e51b815260206004820152602e60248201527f4c6f74746572792063616e6e6f7420626520647261776e2074696c6c2069742060448201526d072656163686573206974206361760941b6064820152608401610717565b6005810154600090611e1e90611bba565b9050816005018181548110611e3557611e356125dc565b60009182526020909120015482546001600160a01b0319166001600160a01b0391821617835560048301805461ff001916610100179055600183015460058401805491909216916323b872dd9130919085908110611e9557611e956125dc565b600091825260209091200154600186015460405160e085901b6001600160e01b0319168152611ee293926001600160a01b031691600160a01b90046001600160401b0316906004016122c3565b600060405180830381600087803b158015611efc57600080fd5b505af1158015611f10573d6000803e3d6000fd5b5050505050505050565b6000546001600160a01b03163314611f445760405162461bcd60e51b81526004016107179061236b565b6001600160a01b038116611fa95760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610717565b6109c781612006565b600081600654816001600160401b03161115611fe05760405162461bcd60e51b81526004016107179061233c565b50506001600160401b03166000908152600160205260409020546001600160a01b031690565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b80356001600160a01b038116811461206d57600080fd5b919050565b80356001600160401b038116811461206d57600080fd5b60006020828403121561209b57600080fd5b6120a482612056565b9392505050565b6000806000606084860312156120c057600080fd5b6120c984612056565b92506120d760208501612056565b91506120e560408501612072565b90509250925092565b60008060008060008060c0878903121561210757600080fd5b61211087612056565b955061211e60208801612072565b945061212c60408801612072565b935061213a60608801612072565b92506080870135915060a0870135612151816125f2565b809150509295509295509295565b60006020828403121561217157600080fd5b81356120a4816125f2565b60006020828403121561218e57600080fd5b81516120a4816125f2565b6000602082840312156121ab57600080fd5b5051919050565b6000602082840312156121c457600080fd5b6120a482612072565b6000806000606084860312156121e257600080fd5b6120c984612072565b600080604083850312156121fe57600080fd5b61220783612072565b91506020830135612217816125f2565b809150509250929050565b6000806040838503121561223557600080fd5b61223e83612072565b946020939093013593505050565b6000806040838503121561225f57600080fd5b61226883612072565b915061227660208401612072565b90509250929050565b600081518084526020808501945080840160005b838110156122b85781516001600160a01b031687529582019590820190600101612293565b509495945050505050565b6001600160a01b0393841681529190921660208201526001600160401b03909116604082015260600190565b6020808252825182820181905260009190848201906040850190845b818110156123305783516001600160a01b03168352928401929184019160010161230b565b50909695505050505050565b602080825260159082015274092dcecc2d8d2c84098dee8e8cae4f24092dcc8caf605b1b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526017908201527f496e76616c69642057686974656c69737420496e646578000000000000000000604082015260600190565b602081526123f16020820183516001600160a01b03169052565b6000602083015161240d60408401826001600160a01b03169052565b5060408301516001600160401b03811660608401525060608301516001600160401b03811660808401525060808301516001600160401b03811660a08401525060a08301516001600160401b03811660c08401525060c083015160e083015260e08301516101006124818185018315159052565b84015190506101206124968482018315159052565b84015190506101406124ab8482018315159052565b8401516101608481015290506124c561018084018261227f565b949350505050565b602081528151151560208201526001600160401b03602083015116604082015260408201516060820152606082015160808201526000608083015160a0808401526124c560c084018261227f565b6000821982111561252e5761252e6125c6565b500190565b60006001600160401b03808316818516808303821115612555576125556125c6565b01949350505050565b6000816000190483118215151615612578576125786125c6565b500290565b60006001600160401b038083168181141561259a5761259a6125c6565b6001019392505050565b6000826125c157634e487b7160e01b600052601260045260246000fd5b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b80151581146109c757600080fdfea2646970667358221220f3bb4f4e1e9b16c9cd63b3f30b8d07453d231eea2a7575be2a3c69ab4aac6bf664736f6c63430008070033

Deployed Bytecode

0x6080604052600436106101d85760003560e01c80638994264911610102578063d0c2ccd511610095578063ee9b80a411610064578063ee9b80a41461066d578063f243140c1461068d578063f2fde38b146106ad578063f6d672ca146106cd57600080fd5b8063d0c2ccd514610509578063d4d4099b1461060d578063ed0c5d4b1461062d578063ede0f25c1461064d57600080fd5b8063a8f8de9d116100d1578063a8f8de9d1461042f578063b66285761461045c578063b9721be9146104d6578063c529409e146104f657600080fd5b8063899426491461039a5780638ab67f15146103ba5780638da5cb5b146103e75780639451c99a1461041957600080fd5b80635799e3351161017a57806372a8a0f91161014957806372a8a0f91461031857806372f4d8cb1461032d5780638370b0f81461034d57806388dbe3ce1461036d57600080fd5b80635799e3351461029a57806366a795fb146102ba5780636870b4a2146102da578063715018a61461030357600080fd5b806330f40647116101b657806330f406471461023f5780633ccfd60b1461025f57806341bc12e5146102675780634768c13c1461028757600080fd5b806306662894146101dd578063088c9f07146101ff57806310269d2b1461021f575b600080fd5b3480156101e957600080fd5b506101fd6101f83660046121cd565b6106ed565b005b34801561020b57600080fd5b506101fd61021a366004612222565b610796565b34801561022b57600080fd5b506101fd61023a3660046120ab565b610815565b34801561024b57600080fd5b506101fd61025a3660046121eb565b6108a6565b6101fd61093d565b34801561027357600080fd5b506101fd6102823660046121b2565b6109ca565b6101fd61029536600461224c565b610c68565b3480156102a657600080fd5b506101fd6102b53660046120ee565b611025565b3480156102c657600080fd5b506101fd6102d5366004612222565b611176565b3480156102e657600080fd5b506102f060075481565b6040519081526020015b60405180910390f35b34801561030f57600080fd5b506101fd61123c565b34801561032457600080fd5b506102f0611272565b34801561033957600080fd5b506102f06103483660046121b2565b61131f565b34801561035957600080fd5b506101fd61036836600461224c565b6113ab565b34801561037957600080fd5b5061038d6103883660046121b2565b6114a6565b6040516102fa91906124cd565b3480156103a657600080fd5b506102f06103b536600461215f565b6115f3565b3480156103c657600080fd5b506103da6103d53660046121b2565b61160c565b6040516102fa91906123d7565b3480156103f357600080fd5b506000546001600160a01b03165b6040516001600160a01b0390911681526020016102fa565b34801561042557600080fd5b506102f060065481565b34801561043b57600080fd5b5061044f61044a3660046121b2565b6117ae565b6040516102fa91906122ef565b34801561046857600080fd5b506104ac6104773660046121b2565b600260208190526000918252604090912080546001820154919092015460ff83169261010090046001600160401b0316919084565b6040805194151585526001600160401b0390931660208501529183015260608201526080016102fa565b3480156104e257600080fd5b5061044f6104f13660046121b2565b61185a565b6101fd610504366004612089565b611919565b34801561051557600080fd5b506105a16105243660046121b2565b6001602081905260009182526040909120805491810154600282015460038301546004909301546001600160a01b03948516948316936001600160401b03600160a01b90940484169383811693600160401b8104821693600160801b909104909116919060ff80821691610100810482169162010000909104168a565b604080516001600160a01b039b8c1681529a90991660208b01526001600160401b03978816988a019890985294861660608901529285166080880152931660a086015260c085019290925290151560e084015215156101008301521515610120820152610140016102fa565b34801561061957600080fd5b506101fd6106283660046121eb565b611a52565b34801561063957600080fd5b506101fd610648366004612222565b611adf565b34801561065957600080fd5b506102f06106683660046121b2565b611bba565b34801561067957600080fd5b506101fd610688366004612089565b611c0f565b34801561069957600080fd5b506101fd6106a83660046121b2565b611c5b565b3480156106b957600080fd5b506101fd6106c8366004612089565b611f1a565b3480156106d957600080fd5b506104016106e83660046121b2565b611fb2565b6000546001600160a01b031633146107205760405162461bcd60e51b81526004016107179061236b565b60405180910390fd5b82600654816001600160401b0316111561074c5760405162461bcd60e51b81526004016107179061233c565b506001600160401b03928316600090815260016020819052604090912001805491909316600160a01b026001600160e01b03199091166001600160a01b0390921691909117179055565b6000546001600160a01b031633146107c05760405162461bcd60e51b81526004016107179061236b565b600060075460016107d1919061251b565b6001600160401b038181166000908152600260205260409020805468ffffffffffffffff001916610100969092169590950217845560019093019190915550600755565b6000546001600160a01b0316331461083f5760405162461bcd60e51b81526004016107179061236b565b6040516323b872dd60e01b81526001600160a01b038416906323b872dd9061086f903090869086906004016122c3565b600060405180830381600087803b15801561088957600080fd5b505af115801561089d573d6000803e3d6000fd5b50505050505050565b6000546001600160a01b031633146108d05760405162461bcd60e51b81526004016107179061236b565b816000816001600160401b03161180156108f55750600754816001600160401b031611155b6109115760405162461bcd60e51b8152600401610717906123a0565b506001600160401b03919091166000908152600260205260409020805460ff1916911515919091179055565b6000546001600160a01b031633146109675760405162461bcd60e51b81526004016107179061236b565b600080546040516001600160a01b039091169047908381818185875af1925050503d80600081146109b4576040519150601f19603f3d011682016040523d82523d6000602084013e6109b9565b606091505b50509050806109c757600080fd5b50565b806000816001600160401b03161180156109ef5750600754816001600160401b031611155b610a0b5760405162461bcd60e51b8152600401610717906123a0565b6001600160401b0382166000908152600260205260409020805460ff16610a745760405162461bcd60e51b815260206004820152601e60248201527f57686974656c697374696e67206973206e6f74204163746976652059657400006044820152606401610717565b805460038201546101009091046001600160401b031690610a9690600161251b565b1115610ada5760405162461bcd60e51b815260206004820152601360248201527215d30814dc1bdd1cc813585e1e1959081bdd5d606a1b6044820152606401610717565b6005546040516370a0823160e01b81523360048201526000916001600160a01b0316906370a082319060240160206040518083038186803b158015610b1e57600080fd5b505afa158015610b32573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b569190612199565b90508082600101541115610bac5760405162461bcd60e51b815260206004820152601860248201527f496e737566666963656e7420455243323020546f6b656e7300000000000000006044820152606401610717565b60055460018301546040516323b872dd60e01b815233600482015230602482015260448101919091526001600160a01b03909116906323b872dd90606401602060405180830381600087803b158015610c0457600080fd5b505af1158015610c18573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c3c919061217c565b50506003018054600181018255600091825260209091200180546001600160a01b031916331790555050565b81600654816001600160401b03161115610c945760405162461bcd60e51b81526004016107179061233c565b6001600160401b0383166000908152600160205260409020600481015462010000900460ff16610d065760405162461bcd60e51b815260206004820152601960248201527f4c6f7474657279206973206e6f742041637469766520596574000000000000006044820152606401610717565b6004810154610100900460ff1615610d545760405162461bcd60e51b8152602060048201526011602482015270131bdd1d195c9e481a185cc8195b991959607a1b6044820152606401610717565b6005546040516370a0823160e01b81523360048201526000916001600160a01b0316906370a082319060240160206040518083038186803b158015610d9857600080fd5b505afa158015610dac573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610dd09190612199565b9050836001600160401b03168260030154610deb919061255e565b811015610e3a5760405162461bcd60e51b815260206004820152601760248201527f4e6f7420656e6f75676820457263323020546f6b656e730000000000000000006044820152606401610717565b60028201546001600160401b0380821691610e5e918791600160401b900416612533565b6001600160401b03161115610ec35760405162461bcd60e51b815260206004820152602560248201527f50757263686173696e67205469636b6574732045786365656473206d617820736044820152647570706c7960d81b6064820152608401610717565b60055460038301546001600160a01b03909116906323b872dd9033903090610ef5906001600160401b038a169061255e565b6040516001600160e01b031960e086901b1681526001600160a01b0393841660048201529290911660248301526044820152606401602060405180830381600087803b158015610f4457600080fd5b505af1158015610f58573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f7c919061217c565b5060005b846001600160401b0316816001600160401b03161015610fd357600583018054600181018255600091825260209091200180546001600160a01b0319163317905580610fcb8161257d565b915050610f80565b50838260020160088282829054906101000a90046001600160401b0316610ffa9190612533565b92506101000a8154816001600160401b0302191690836001600160401b031602179055505050505050565b6000546001600160a01b0316331461104f5760405162461bcd60e51b81526004016107179061236b565b6040516323b872dd60e01b81526001600160a01b038716906323b872dd9061107f90339030908a906004016122c3565b600060405180830381600087803b15801561109957600080fd5b505af11580156110ad573d6000803e3d6000fd5b50505050600060065460016110c2919061251b565b6001600160401b0380821660009081526001602081905260409091209081018054998316600160a01b026001600160e01b0319909a166001600160a01b03909b169a909a1798909817909855600287018054600489018054978b16600160801b0277ffffffffffffffff0000000000000000ffffffffffffffff1990921698909a1697909717969096179095555060039094015562ff0000199215159290921662ff00ff1990921691909117909155600655565b6000546001600160a01b031633146111a05760405162461bcd60e51b81526004016107179061236b565b81600654816001600160401b031611156111cc5760405162461bcd60e51b81526004016107179061233c565b6000821161121c5760405162461bcd60e51b815260206004820152601e60248201527f50726963652073686f756c642062652067726561746572207468616e203000006044820152606401610717565b506001600160401b03909116600090815260016020526040902060030155565b6000546001600160a01b031633146112665760405162461bcd60e51b81526004016107179061236b565b6112706000612006565b565b600080546001600160a01b0316331461129d5760405162461bcd60e51b81526004016107179061236b565b6005546040516370a0823160e01b81523060048201526000916001600160a01b0316906370a082319060240160206040518083038186803b1580156112e157600080fd5b505afa1580156112f5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113199190612199565b91505090565b600080546001600160a01b0316331461134a5760405162461bcd60e51b81526004016107179061236b565b816000816001600160401b031611801561136f5750600754816001600160401b031611155b61138b5760405162461bcd60e51b8152600401610717906123a0565b50506001600160401b031660009081526002602052604090206001015490565b6000546001600160a01b031633146113d55760405162461bcd60e51b81526004016107179061236b565b816000816001600160401b03161180156113fa5750600754816001600160401b031611155b6114165760405162461bcd60e51b8152600401610717906123a0565b6000826001600160401b03161161146f5760405162461bcd60e51b815260206004820152601e60248201527f53706f74732073686f756c642062652067726561746572207468616e203000006044820152606401610717565b506001600160401b0391821660009081526002602052604090208054919092166101000268ffffffffffffffff0019909116179055565b6040805160a0810182526000808252602082018190529181018290526060808201839052608082015290546001600160a01b031633146114f85760405162461bcd60e51b81526004016107179061236b565b816000816001600160401b031611801561151d5750600754816001600160401b031611155b6115395760405162461bcd60e51b8152600401610717906123a0565b6001600160401b03808416600090815260026020818152604092839020835160a081018552815460ff811615158252610100900490951685830152600181015485850152918201546060850152600382018054845181840281018401909552808552929493859360808601939192918301828280156115e157602002820191906000526020600020905b81546001600160a01b031681526001909101906020018083116115c3575b50505050508152505092505050919050565b60008161160257600754611606565b6006545b92915050565b604080516101608101825260008082526020820181905291810182905260608082018390526080820183905260a0820183905260c0820183905260e08201839052610100820183905261012082019290925261014081019190915281600654816001600160401b031611156116935760405162461bcd60e51b81526004016107179061233c565b6001600160401b0380841660009081526001602081815260409283902083516101608101855281546001600160a01b0390811682529382015493841681840152600160a01b90930485168385015260028101548086166060850152600160401b810486166080850152600160801b900490941660a0830152600384015460c0830152600484015460ff808216151560e0850152610100808304821615159085015262010000909104161515610120830152600584018054845181840281018401909552808552929493610140860193909283018282801561179d57602002820191906000526020600020905b81546001600160a01b0316815260019091019060200180831161177f575b505050505081525050915050919050565b606081600654816001600160401b031611156117dc5760405162461bcd60e51b81526004016107179061233c565b6001600160401b03831660009081526001602090815260409182902060058101805484518185028101850190955280855291939290919083018282801561184c57602002820191906000526020600020905b81546001600160a01b0316815260019091019060200180831161182e575b505050505092505050919050565b6060816000816001600160401b03161180156118815750600754816001600160401b031611155b61189d5760405162461bcd60e51b8152600401610717906123a0565b6001600160401b03831660009081526002602090815260409182902060038101805484518185028101850190955280855291939290919083018282801561184c576020028201919060005260206000209081546001600160a01b0316815260019091019060200180831161182e57505050505092505050919050565b6000546001600160a01b031633146119435760405162461bcd60e51b81526004016107179061236b565b6005546040516370a0823160e01b81523060048201526000916001600160a01b0316906370a082319060240160206040518083038186803b15801561198757600080fd5b505afa15801561199b573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119bf9190612199565b6005546040516323b872dd60e01b81523060048201526001600160a01b038581166024830152604482018490529293509116906323b872dd90606401602060405180830381600087803b158015611a1557600080fd5b505af1158015611a29573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a4d919061217c565b505050565b6000546001600160a01b03163314611a7c5760405162461bcd60e51b81526004016107179061236b565b81600654816001600160401b03161115611aa85760405162461bcd60e51b81526004016107179061233c565b506001600160401b0390911660009081526001602052604090206004018054911515620100000262ff000019909216919091179055565b6000546001600160a01b03163314611b095760405162461bcd60e51b81526004016107179061236b565b816000816001600160401b0316118015611b2e5750600754816001600160401b031611155b611b4a5760405162461bcd60e51b8152600401610717906123a0565b60008211611b9a5760405162461bcd60e51b815260206004820152601e60248201527f50726963652073686f756c642062652067726561746572207468616e203000006044820152606401610717565b506001600160401b03909116600090815260026020526040902060010155565b6040805144602080830191909152428284015260c084901b6001600160c01b03191660608301528251604881840301815260689092019092528051910120600090611606906001600160401b038416906125a4565b6000546001600160a01b03163314611c395760405162461bcd60e51b81526004016107179061236b565b600580546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b03163314611c855760405162461bcd60e51b81526004016107179061236b565b80600654816001600160401b03161115611cb15760405162461bcd60e51b81526004016107179061233c565b6001600160401b0382166000908152600160205260409020600481015462010000900460ff16611d235760405162461bcd60e51b815260206004820152601e60248201527f54686973206c6f7474657279206973206e6f74207965742061637469766500006044820152606401610717565b6004810154610100900460ff1615611d7d5760405162461bcd60e51b815260206004820152601760248201527f57696e6e657220616c72656164792073656c65637465640000000000000000006044820152606401610717565b600481015460ff1615611e0d5760028101546001600160401b03600160801b82048116600160401b9092041611611e0d5760405162461bcd60e51b815260206004820152602e60248201527f4c6f74746572792063616e6e6f7420626520647261776e2074696c6c2069742060448201526d072656163686573206974206361760941b6064820152608401610717565b6005810154600090611e1e90611bba565b9050816005018181548110611e3557611e356125dc565b60009182526020909120015482546001600160a01b0319166001600160a01b0391821617835560048301805461ff001916610100179055600183015460058401805491909216916323b872dd9130919085908110611e9557611e956125dc565b600091825260209091200154600186015460405160e085901b6001600160e01b0319168152611ee293926001600160a01b031691600160a01b90046001600160401b0316906004016122c3565b600060405180830381600087803b158015611efc57600080fd5b505af1158015611f10573d6000803e3d6000fd5b5050505050505050565b6000546001600160a01b03163314611f445760405162461bcd60e51b81526004016107179061236b565b6001600160a01b038116611fa95760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610717565b6109c781612006565b600081600654816001600160401b03161115611fe05760405162461bcd60e51b81526004016107179061233c565b50506001600160401b03166000908152600160205260409020546001600160a01b031690565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b80356001600160a01b038116811461206d57600080fd5b919050565b80356001600160401b038116811461206d57600080fd5b60006020828403121561209b57600080fd5b6120a482612056565b9392505050565b6000806000606084860312156120c057600080fd5b6120c984612056565b92506120d760208501612056565b91506120e560408501612072565b90509250925092565b60008060008060008060c0878903121561210757600080fd5b61211087612056565b955061211e60208801612072565b945061212c60408801612072565b935061213a60608801612072565b92506080870135915060a0870135612151816125f2565b809150509295509295509295565b60006020828403121561217157600080fd5b81356120a4816125f2565b60006020828403121561218e57600080fd5b81516120a4816125f2565b6000602082840312156121ab57600080fd5b5051919050565b6000602082840312156121c457600080fd5b6120a482612072565b6000806000606084860312156121e257600080fd5b6120c984612072565b600080604083850312156121fe57600080fd5b61220783612072565b91506020830135612217816125f2565b809150509250929050565b6000806040838503121561223557600080fd5b61223e83612072565b946020939093013593505050565b6000806040838503121561225f57600080fd5b61226883612072565b915061227660208401612072565b90509250929050565b600081518084526020808501945080840160005b838110156122b85781516001600160a01b031687529582019590820190600101612293565b509495945050505050565b6001600160a01b0393841681529190921660208201526001600160401b03909116604082015260600190565b6020808252825182820181905260009190848201906040850190845b818110156123305783516001600160a01b03168352928401929184019160010161230b565b50909695505050505050565b602080825260159082015274092dcecc2d8d2c84098dee8e8cae4f24092dcc8caf605b1b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526017908201527f496e76616c69642057686974656c69737420496e646578000000000000000000604082015260600190565b602081526123f16020820183516001600160a01b03169052565b6000602083015161240d60408401826001600160a01b03169052565b5060408301516001600160401b03811660608401525060608301516001600160401b03811660808401525060808301516001600160401b03811660a08401525060a08301516001600160401b03811660c08401525060c083015160e083015260e08301516101006124818185018315159052565b84015190506101206124968482018315159052565b84015190506101406124ab8482018315159052565b8401516101608481015290506124c561018084018261227f565b949350505050565b602081528151151560208201526001600160401b03602083015116604082015260408201516060820152606082015160808201526000608083015160a0808401526124c560c084018261227f565b6000821982111561252e5761252e6125c6565b500190565b60006001600160401b03808316818516808303821115612555576125556125c6565b01949350505050565b6000816000190483118215151615612578576125786125c6565b500290565b60006001600160401b038083168181141561259a5761259a6125c6565b6001019392505050565b6000826125c157634e487b7160e01b600052601260045260246000fd5b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b80151581146109c757600080fdfea2646970667358221220f3bb4f4e1e9b16c9cd63b3f30b8d07453d231eea2a7575be2a3c69ab4aac6bf664736f6c63430008070033

Deployed Bytecode Sourcemap

20472:9321:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26986:256;;;;;;;;;;-1:-1:-1;26986:256:0;;;;;:::i;:::-;;:::i;:::-;;24128:386;;;;;;;;;;-1:-1:-1;24128:386:0;;;;;:::i;:::-;;:::i;27250:218::-;;;;;;;;;;-1:-1:-1;27250:218:0;;;;;:::i;:::-;;:::i;26380:184::-;;;;;;;;;;-1:-1:-1;26380:184:0;;;;;:::i;:::-;;:::i;28572:156::-;;;:::i;23239:543::-;;;;;;;;;;-1:-1:-1;23239:543:0;;;;;:::i;:::-;;:::i;22377:853::-;;;;;;:::i;:::-;;:::i;24520:909::-;;;;;;;;;;-1:-1:-1;24520:909:0;;;;;:::i;:::-;;:::i;25590:266::-;;;;;;;;;;-1:-1:-1;25590:266:0;;;;;:::i;:::-;;:::i;22114:37::-;;;;;;;;;;;;;;;;;;;16072:25:1;;;16060:2;16045:18;22114:37:0;;;;;;;;10792:103;;;;;;;;;;;;;:::i;28971:169::-;;;;;;;;;;;;;:::i;29588:190::-;;;;;;;;;;-1:-1:-1;29588:190:0;;;;;:::i;:::-;;:::i;26122:249::-;;;;;;;;;;-1:-1:-1;26122:249:0;;;;;:::i;:::-;;:::i;29379:199::-;;;;;;;;;;-1:-1:-1;29379:199:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;22168:178::-;;;;;;;;;;-1:-1:-1;22168:178:0;;;;;:::i;:::-;;:::i;25437:143::-;;;;;;;;;;-1:-1:-1;25437:143:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;10141:87::-;;;;;;;;;;-1:-1:-1;10187:7:0;10214:6;-1:-1:-1;;;;;10214:6:0;10141:87;;;-1:-1:-1;;;;;5060:32:1;;;5042:51;;5030:2;5015:18;10141:87:0;4896:203:1;22077:28:0;;;;;;;;;;;;;;;;29157:214;;;;;;;;;;-1:-1:-1;29157:214:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;21507:46::-;;;;;;;;;;-1:-1:-1;21507:46:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;21507:46:0;;;;;;;;;7778:14:1;;7771:22;7753:41;;-1:-1:-1;;;;;7830:31:1;;;7825:2;7810:18;;7803:59;7878:18;;;7871:34;7936:2;7921:18;;7914:34;7740:3;7725:19;21507:46:0;7530:424:1;26573:199:0;;;;;;;;;;-1:-1:-1;26573:199:0;;;;;:::i;:::-;;:::i;28737:226::-;;;;;;:::i;:::-;;:::i;21456:43::-;;;;;;;;;;-1:-1:-1;21456:43:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;21456:43:0;;;;;;;-1:-1:-1;;;;;;;;21456:43:0;;;;;;;;;;-1:-1:-1;;;21456:43:0;;;;;-1:-1:-1;;;21456:43:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;6317:15:1;;;6299:34;;6369:15;;;;6364:2;6349:18;;6342:43;-1:-1:-1;;;;;6458:15:1;;;6438:18;;;6431:43;;;;6510:15;;;6505:2;6490:18;;6483:43;6563:15;;;6557:3;6542:19;;6535:44;6616:15;;6279:3;6595:19;;6588:44;6663:3;6648:19;;6641:35;;;;6720:14;;6713:22;6707:3;6692:19;;6685:51;6780:14;6773:22;6767:3;6752:19;;6745:51;6840:14;6833:22;6827:3;6812:19;;6805:51;6248:3;6233:19;21456:43:0;5888:974:1;26780:195:0;;;;;;;;;;-1:-1:-1;26780:195:0;;;;;:::i;:::-;;:::i;25864:250::-;;;;;;;;;;-1:-1:-1;25864:250:0;;;;;:::i;:::-;;:::i;28390:172::-;;;;;;;;;;-1:-1:-1;28390:172:0;;;;;:::i;:::-;;:::i;24022:98::-;;;;;;;;;;-1:-1:-1;24022:98:0;;;;;:::i;:::-;;:::i;27478:904::-;;;;;;;;;;-1:-1:-1;27478:904:0;;;;;:::i;:::-;;:::i;11050:201::-;;;;;;;;;;-1:-1:-1;11050:201:0;;;;;:::i;:::-;;:::i;23790:189::-;;;;;;;;;;-1:-1:-1;23790:189:0;;;;;:::i;:::-;;:::i;26986:256::-;10187:7;10214:6;-1:-1:-1;;;;;10214:6:0;8945:10;10361:23;10353:68;;;;-1:-1:-1;;;10353:68:0;;;;;;;:::i;:::-;;;;;;;;;27093:6;21790:13:::1;;21780:6;-1:-1:-1::0;;;;;21780:23:0::1;;;21757:72;;;;-1:-1:-1::0;;;21757:72:0::1;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;;27140:17:0;;::::2;27114:23;27140:17:::0;;;:9:::2;:17;::::0;;;;;;;27169:19:::2;:31:::0;;27212:22;;;::::2;-1:-1:-1::0;;;27212:22:0::2;-1:-1:-1::0;;;;;;27212:22:0;;;-1:-1:-1;;;;;27169:31:0;;::::2;27212:22:::0;;;;::::2;::::0;;26986:256::o;24128:386::-;10187:7;10214:6;-1:-1:-1;;;;;10214:6:0;8945:10;10361:23;10353:68;;;;-1:-1:-1;;;10353:68:0;;;;;;;:::i;:::-;24248:16:::1;24267:22;;24292:1;24267:26;;;;:::i;:::-;-1:-1:-1::0;;;;;24331:28:0;;::::1;24308:20;24331:28:::0;;;:10:::1;:28;::::0;;;;24407:17;;-1:-1:-1;;24407:17:0::1;;::::0;;;::::1;::::0;;;::::1;;::::0;;-1:-1:-1;24439:8:0;;::::1;:17:::0;;;;-1:-1:-1;24473:22:0::1;:33:::0;24128:386::o;27250:218::-;10187:7;10214:6;-1:-1:-1;;;;;10214:6:0;8945:10;10361:23;10353:68;;;;-1:-1:-1;;;10353:68:0;;;;;;;:::i;:::-;27351:109:::1;::::0;-1:-1:-1;;;27351:109:0;;-1:-1:-1;;;;;27351:31:0;::::1;::::0;::::1;::::0;:109:::1;::::0;27405:4:::1;::::0;27425:3;;27443:6;;27351:109:::1;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;27250:218:::0;;;:::o;26380:184::-;10187:7;10214:6;-1:-1:-1;;;;;10214:6:0;8945:10;10361:23;10353:68;;;;-1:-1:-1;;;10353:68:0;;;;;;;:::i;:::-;26465:6:::1;21929:1;21920:6;-1:-1:-1::0;;;;;21920:10:0::1;;:46;;;;;21944:22;;21934:6;-1:-1:-1::0;;;;;21934:32:0::1;;;21920:46;21912:82;;;;-1:-1:-1::0;;;21912:82:0::1;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;;26508:18:0;;;::::2;26485:20;26508:18:::0;;;:10:::2;:18;::::0;;;;26538;;-1:-1:-1;;26538:18:0::2;::::0;::::2;;::::0;;;::::2;::::0;;26380:184::o;28572:156::-;10187:7;10214:6;-1:-1:-1;;;;;10214:6:0;8945:10;10361:23;10353:68;;;;-1:-1:-1;;;10353:68:0;;;;;;;:::i;:::-;28630:7:::1;10214:6:::0;;28643:55:::1;::::0;-1:-1:-1;;;;;10214:6:0;;;;28672:21:::1;::::0;28630:7;28643:55;28630:7;28643:55;28672:21;10214:6;28643:55:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28629:69;;;28717:2;28709:11;;;::::0;::::1;;28618:110;28572:156::o:0;23239:543::-;23298:6;21929:1;21920:6;-1:-1:-1;;;;;21920:10:0;;:46;;;;;21944:22;;21934:6;-1:-1:-1;;;;;21934:32:0;;;21920:46;21912:82;;;;-1:-1:-1;;;21912:82:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;23340:18:0;::::1;23317:20;23340:18:::0;;;:10:::1;:18;::::0;;;;23377:9;;::::1;;23369:53;;;::::0;-1:-1:-1;;;23369:53:0;;12871:2:1;23369:53:0::1;::::0;::::1;12853:21:1::0;12910:2;12890:18;;;12883:30;12949:32;12929:18;;;12922:60;12999:18;;23369:53:0::1;12669:354:1::0;23369:53:0::1;23470:8:::0;;23441:14:::1;::::0;::::1;:21:::0;23470:8:::1;::::0;;::::1;-1:-1:-1::0;;;;;23470:8:0::1;::::0;23441:25:::1;::::0;23470:8:::1;23441:25;:::i;:::-;:37;;23433:69;;;::::0;-1:-1:-1;;;23433:69:0;;13645:2:1;23433:69:0::1;::::0;::::1;13627:21:1::0;13684:2;13664:18;;;13657:30;-1:-1:-1;;;13703:18:1;;;13696:49;13762:18;;23433:69:0::1;13443:343:1::0;23433:69:0::1;23538:13;::::0;23531:43:::1;::::0;-1:-1:-1;;;23531:43:0;;23563:10:::1;23531:43;::::0;::::1;5042:51:1::0;23513:15:0::1;::::0;-1:-1:-1;;;;;23538:13:0::1;::::0;23531:31:::1;::::0;5015:18:1;;23531:43:0::1;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;23513:61;;23605:7;23593:2;:8;;;:19;;23585:56;;;::::0;-1:-1:-1;;;23585:56:0;;12518:2:1;23585:56:0::1;::::0;::::1;12500:21:1::0;12557:2;12537:18;;;12530:30;12596:26;12576:18;;;12569:54;12640:18;;23585:56:0::1;12316:348:1::0;23585:56:0::1;23659:13;::::0;;23714:8;::::1;::::0;23652:71:::1;::::0;-1:-1:-1;;;23652:71:0;;23687:10:::1;23652:71;::::0;::::1;5344:34:1::0;23707:4:0::1;5394:18:1::0;;;5387:43;5446:18;;;5439:34;;;;-1:-1:-1;;;;;23659:13:0;;::::1;::::0;23652:34:::1;::::0;5279:18:1;;23652:71:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;23734:14:0::1;;:31:::0;;::::1;::::0;::::1;::::0;;-1:-1:-1;23734:31:0;;;::::1;::::0;;;::::1;::::0;;-1:-1:-1;;;;;;23734:31:0::1;23754:10;23734:31;::::0;;-1:-1:-1;;23239:543:0:o;22377:853::-;22461:6;21790:13;;21780:6;-1:-1:-1;;;;;21780:23:0;;;21757:72;;;;-1:-1:-1;;;21757:72:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;22506:17:0;::::1;22480:23;22506:17:::0;;;:9:::1;:17;::::0;;;;22542:14:::1;::::0;::::1;::::0;;;::::1;;;22534:53;;;::::0;-1:-1:-1;;;22534:53:0;;11805:2:1;22534:53:0::1;::::0;::::1;11787:21:1::0;11844:2;11824:18;;;11817:30;11883:27;11863:18;;;11856:55;11928:18;;22534:53:0::1;11603:349:1::0;22534:53:0::1;22607:24;::::0;::::1;::::0;::::1;::::0;::::1;;;22606:25;22598:55;;;::::0;-1:-1:-1;;;22598:55:0;;11459:2:1;22598:55:0::1;::::0;::::1;11441:21:1::0;11498:2;11478:18;;;11471:30;-1:-1:-1;;;11517:18:1;;;11510:47;11574:18;;22598:55:0::1;11257:341:1::0;22598:55:0::1;22690:13;::::0;22683:43:::1;::::0;-1:-1:-1;;;22683:43:0;;22715:10:::1;22683:43;::::0;::::1;5042:51:1::0;22665:15:0::1;::::0;-1:-1:-1;;;;;22690:13:0::1;::::0;22683:31:::1;::::0;5015:18:1;;22683:43:0::1;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;22665:61;;22774:7;-1:-1:-1::0;;;;;22758:23:0::1;:7;:13;;;:23;;;;:::i;:::-;22745:7;:37;;22737:74;;;::::0;-1:-1:-1;;;22737:74:0;;9638:2:1;22737:74:0::1;::::0;::::1;9620:21:1::0;9677:2;9657:18;;;9650:30;9716:25;9696:18;;;9689:53;9759:18;;22737:74:0::1;9436:347:1::0;22737:74:0::1;22868:23;::::0;::::1;::::0;-1:-1:-1;;;;;22868:23:0;;::::1;::::0;22830:34:::1;::::0;22857:7;;-1:-1:-1;;;22830:24:0;::::1;;:34;:::i;:::-;-1:-1:-1::0;;;;;22830:61:0::1;;;22822:111;;;::::0;-1:-1:-1;;;22822:111:0;;11053:2:1;22822:111:0::1;::::0;::::1;11035:21:1::0;11092:2;11072:18;;;11065:30;11131:34;11111:18;;;11104:62;-1:-1:-1;;;11182:18:1;;;11175:35;11227:19;;22822:111:0::1;10851:401:1::0;22822:111:0::1;22951:13;::::0;23007::::1;::::0;::::1;::::0;-1:-1:-1;;;;;22951:13:0;;::::1;::::0;22944:34:::1;::::0;22979:10:::1;::::0;22999:4:::1;::::0;23007:23:::1;::::0;-1:-1:-1;;;;;23007:23:0;::::1;::::0;::::1;:::i;:::-;22944:88;::::0;-1:-1:-1;;;;;;22944:88:0::1;::::0;;;;;;-1:-1:-1;;;;;5362:15:1;;;22944:88:0::1;::::0;::::1;5344:34:1::0;5414:15;;;;5394:18;;;5387:43;5446:18;;;5439:34;5279:18;;22944:88:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;23047:8;23043:98;23065:7;-1:-1:-1::0;;;;;23061:11:0::1;:1;-1:-1:-1::0;;;;;23061:11:0::1;;23043:98;;;23093:19;::::0;::::1;:36:::0;;::::1;::::0;::::1;::::0;;-1:-1:-1;23093:36:0;;;::::1;::::0;;;::::1;::::0;;-1:-1:-1;;;;;;23093:36:0::1;23118:10;23093:36;::::0;;23074:3;::::1;::::0;::::1;:::i;:::-;;;;23043:98;;;;23215:7;23187;:24;;;:35;;;;;;;;;;-1:-1:-1::0;;;;;23187:35:0::1;;;;;:::i;:::-;;;;;;;;-1:-1:-1::0;;;;;23187:35:0::1;;;;;-1:-1:-1::0;;;;;23187:35:0::1;;;;;;22469:761;;22377:853:::0;;;:::o;24520:909::-;10187:7;10214:6;-1:-1:-1;;;;;10214:6:0;8945:10;10361:23;10353:68;;;;-1:-1:-1;;;10353:68:0;;;;;;;:::i;:::-;24807:116:::1;::::0;-1:-1:-1;;;24807:116:0;;-1:-1:-1;;;;;24807:31:0;::::1;::::0;::::1;::::0;:116:::1;::::0;24853:10:::1;::::0;24886:4:::1;::::0;24906:6;;24807:116:::1;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;24962:16;24981:13;;24997:1;24981:17;;;;:::i;:::-;-1:-1:-1::0;;;;;25035:27:0;;::::1;25009:23;25035:27:::0;;;:9:::1;:27;::::0;;;;;;;25073:19;;::::1;:31:::0;;25115:22;;::::1;-1:-1:-1::0;;;25115:22:0::1;-1:-1:-1::0;;;;;;25115:22:0;;;-1:-1:-1;;;;;25073:31:0;;::::1;25115:22:::0;;;;;;;::::1;::::0;;;25148:23:::1;::::0;::::1;:42:::0;;25201:24:::1;::::0;::::1;:43:::0;;25255:39;;::::1;-1:-1:-1::0;;;25255:39:0::1;-1:-1:-1::0;;25255:39:0;;;25148:42;;;::::1;25255:39:::0;;;;;;;::::1;::::0;;;-1:-1:-1;25305:13:0::1;::::0;;::::1;:22:::0;-1:-1:-1;;25201:43:0;::::1;;25338:23:::0;;;;-1:-1:-1;;25338:23:0;;;;;;;;;;25397:13:::1;:24:::0;24520:909::o;25590:266::-;10187:7;10214:6;-1:-1:-1;;;;;10214:6:0;8945:10;10361:23;10353:68;;;;-1:-1:-1;;;10353:68:0;;;;;;;:::i;:::-;25687:6;21790:13:::1;;21780:6;-1:-1:-1::0;;;;;21780:23:0::1;;;21757:72;;;;-1:-1:-1::0;;;21757:72:0::1;;;;;;;:::i;:::-;25723:1:::2;25714:6;:10;25706:53;;;::::0;-1:-1:-1;;;25706:53:0;;8920:2:1;25706:53:0::2;::::0;::::2;8902:21:1::0;8959:2;8939:18;;;8932:30;8998:32;8978:18;;;8971:60;9048:18;;25706:53:0::2;8718:354:1::0;25706:53:0::2;-1:-1:-1::0;;;;;;25797:17:0;;::::2;25771:23;25797:17:::0;;;:9:::2;:17;::::0;;;;25826:13:::2;;:22:::0;25590:266::o;10792:103::-;10187:7;10214:6;-1:-1:-1;;;;;10214:6:0;8945:10;10361:23;10353:68;;;;-1:-1:-1;;;10353:68:0;;;;;;;:::i;:::-;10857:30:::1;10884:1;10857:18;:30::i;:::-;10792:103::o:0;28971:169::-;29024:7;10214:6;;-1:-1:-1;;;;;10214:6:0;8945:10;10361:23;10353:68;;;;-1:-1:-1;;;10353:68:0;;;;;;;:::i;:::-;29068:13:::1;::::0;29061:46:::1;::::0;-1:-1:-1;;;29061:46:0;;29101:4:::1;29061:46;::::0;::::1;5042:51:1::0;29043:15:0::1;::::0;-1:-1:-1;;;;;29068:13:0::1;::::0;29061:31:::1;::::0;5015:18:1;;29061:46:0::1;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;29043:64:::0;-1:-1:-1;;28971:169:0;:::o;29588:190::-;29682:7;10214:6;;-1:-1:-1;;;;;10214:6:0;8945:10;10361:23;10353:68;;;;-1:-1:-1;;;10353:68:0;;;;;;;:::i;:::-;29665:6:::1;21929:1;21920:6;-1:-1:-1::0;;;;;21920:10:0::1;;:46;;;;;21944:22;;21934:6;-1:-1:-1::0;;;;;21934:32:0::1;;;21920:46;21912:82;;;;-1:-1:-1::0;;;21912:82:0::1;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;;;29726:18:0::2;29703:20;29726:18:::0;;;:10:::2;:18;::::0;;;;29762:8:::2;;::::0;;29588:190::o;26122:249::-;10187:7;10214:6;-1:-1:-1;;;;;10214:6:0;8945:10;10361:23;10353:68;;;;-1:-1:-1;;;10353:68:0;;;;;;;:::i;:::-;26209:6:::1;21929:1;21920:6;-1:-1:-1::0;;;;;21920:10:0::1;;:46;;;;;21944:22;;21934:6;-1:-1:-1::0;;;;;21934:32:0::1;;;21920:46;21912:82;;;;-1:-1:-1::0;;;21912:82:0::1;;;;;;;:::i;:::-;26245:1:::2;26236:6;-1:-1:-1::0;;;;;26236:10:0::2;;26228:53;;;::::0;-1:-1:-1;;;26228:53:0;;9279:2:1;26228:53:0::2;::::0;::::2;9261:21:1::0;9318:2;9298:18;;;9291:30;9357:32;9337:18;;;9330:60;9407:18;;26228:53:0::2;9077:354:1::0;26228:53:0::2;-1:-1:-1::0;;;;;;26316:18:0;;::::2;26293:20;26316:18:::0;;;:10:::2;:18;::::0;;;;26346:17;;;;;::::2;;;-1:-1:-1::0;;26346:17:0;;::::2;;::::0;;26122:249::o;29379:199::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10214:6:0;;-1:-1:-1;;;;;10214:6:0;8945:10;10361:23;10353:68;;;;-1:-1:-1;;;10353:68:0;;;;;;;:::i;:::-;29462:6:::1;21929:1;21920:6;-1:-1:-1::0;;;;;21920:10:0::1;;:46;;;;;21944:22;;21934:6;-1:-1:-1::0;;;;;21934:32:0::1;;;21920:46;21912:82;;;;-1:-1:-1::0;;;21912:82:0::1;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;29532:18:0;;::::2;29509:20;29532:18:::0;;;:10:::2;:18;::::0;;;;;;;;29561:9;;::::2;::::0;::::2;::::0;;;;::::2;::::0;::::2;;;::::0;;::::2;::::0;::::2;::::0;;::::2;::::0;;::::2;::::0;;;::::2;::::0;;;;;;;::::2;::::0;;;;;::::2;::::0;::::2;::::0;;;;;;::::2;::::0;;;;;;;;;;29532:18;;29561:9;29532:18;;29561:9;;;;;;;;::::2;::::0;;;::::2;;;;;;;;;;;;;;;;::::0;;-1:-1:-1;;;;;29561:9:0::2;::::0;;;;;::::2;::::0;::::2;;::::0;;::::2;;;;;;;;;;;::::0;::::2;;;;10432:1:::1;29379:199:::0;;;:::o;22168:178::-;22227:7;22279:10;:48;;22305:22;;22279:48;;;22291:13;;22279:48;22272:55;22168:178;-1:-1:-1;;22168:178:0:o;25437:143::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25502:6:0;21790:13;;21780:6;-1:-1:-1;;;;;21780:23:0;;;21757:72;;;;-1:-1:-1;;;21757:72:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;25555:17:0;;::::1;;::::0;;;:9:::1;:17;::::0;;;;;;;;25548:24;;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;;;25548:24:0;;::::1;::::0;;;;::::1;::::0;;;::::1;::::0;;::::1;::::0;-1:-1:-1;;;25548:24:0;;::::1;::::0;::::1;::::0;;;;::::1;::::0;::::1;::::0;;;::::1;::::0;;;;-1:-1:-1;;;25548:24:0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;25548:24:0;::::1;::::0;;::::1;::::0;;;;::::1;::::0;::::1;::::0;;;;;::::1;::::0;::::1;::::0;::::1;::::0;;::::1;;;::::0;;;;::::1;::::0;;::::1;::::0;::::1;;;::::0;;;;;;;::::1;;;;::::0;;;;::::1;::::0;::::1;::::0;;;;;;::::1;::::0;;;;;;;;;;;;25555:17;25548:24;;;;;;;::::1;::::0;;;::::1;;;;;;;;;;;;;;;;::::0;;-1:-1:-1;;;;;25548:24:0::1;::::0;;;;;::::1;::::0;::::1;;::::0;;::::1;;;;;;;;;;;::::0;::::1;;;25437:143:::0;;;;:::o;29157:214::-;29251:16;29234:6;21790:13;;21780:6;-1:-1:-1;;;;;21780:23:0;;;21757:72;;;;-1:-1:-1;;;21757:72:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;29308:17:0;::::1;29282:23;29308:17:::0;;;:9:::1;:17;::::0;;;;;;;;29344:19:::1;::::0;::::1;29337:26:::0;;;;;;::::1;::::0;;;;;;;;;;29308:17;;29337:26;29344:19;;29337:26;;::::1;29344:19:::0;29337:26;;::::1;;;;;;;;;;;;;;;;::::0;;-1:-1:-1;;;;;29337:26:0::1;::::0;;;;;::::1;::::0;::::1;;::::0;;::::1;;;;;;;;;;;;29157:214:::0;;;;:::o;26573:199::-;26662:16;26645:6;21929:1;21920:6;-1:-1:-1;;;;;21920:10:0;;:46;;;;;21944:22;;21934:6;-1:-1:-1;;;;;21934:32:0;;;21920:46;21912:82;;;;-1:-1:-1;;;21912:82:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;26714:18:0;::::1;26691:20;26714:18:::0;;;:10:::1;:18;::::0;;;;;;;;26750:14:::1;::::0;::::1;26743:21:::0;;;;;;::::1;::::0;;;;;;;;;;26714:18;;26743:21;26750:14;;26743:21;;::::1;26750:14:::0;26743:21;;::::1;;;;;;;;;;;;;;;::::0;;-1:-1:-1;;;;;26743:21:0::1;::::0;;;;;::::1;::::0;::::1;;::::0;;::::1;;;;;;;;;;;26573:199:::0;;;;:::o;28737:226::-;10187:7;10214:6;-1:-1:-1;;;;;10214:6:0;8945:10;10361:23;10353:68;;;;-1:-1:-1;;;10353:68:0;;;;;;;:::i;:::-;28835:13:::1;::::0;28828:46:::1;::::0;-1:-1:-1;;;28828:46:0;;28868:4:::1;28828:46;::::0;::::1;5042:51:1::0;28810:15:0::1;::::0;-1:-1:-1;;;;;28835:13:0::1;::::0;28828:31:::1;::::0;5015:18:1;;28828:46:0::1;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;28891:13;::::0;28884:71:::1;::::0;-1:-1:-1;;;28884:71:0;;28927:4:::1;28884:71;::::0;::::1;5344:34:1::0;-1:-1:-1;;;;;5414:15:1;;;5394:18;;;5387:43;5446:18;;;5439:34;;;28810:64:0;;-1:-1:-1;28891:13:0;::::1;::::0;28884:34:::1;::::0;5279:18:1;;28884:71:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;28802:161;28737:226:::0;:::o;26780:195::-;10187:7;10214:6;-1:-1:-1;;;;;10214:6:0;8945:10;10361:23;10353:68;;;;-1:-1:-1;;;10353:68:0;;;;;;;:::i;:::-;26868:6;21790:13:::1;;21780:6;-1:-1:-1::0;;;;;21780:23:0::1;;;21757:72;;;;-1:-1:-1::0;;;21757:72:0::1;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;;26915:17:0;;::::2;26889:23;26915:17:::0;;;:9:::2;:17;::::0;;;;26944:14:::2;;:23:::0;;;::::2;;::::0;::::2;-1:-1:-1::0;;26944:23:0;;::::2;::::0;;;::::2;::::0;;26780:195::o;25864:250::-;10187:7;10214:6;-1:-1:-1;;;;;10214:6:0;8945:10;10361:23;10353:68;;;;-1:-1:-1;;;10353:68:0;;;;;;;:::i;:::-;25952:6:::1;21929:1;21920:6;-1:-1:-1::0;;;;;21920:10:0::1;;:46;;;;;21944:22;;21934:6;-1:-1:-1::0;;;;;21934:32:0::1;;;21920:46;21912:82;;;;-1:-1:-1::0;;;21912:82:0::1;;;;;;;:::i;:::-;25988:1:::2;25979:6;:10;25971:53;;;::::0;-1:-1:-1;;;25971:53:0;;8920:2:1;25971:53:0::2;::::0;::::2;8902:21:1::0;8959:2;8939:18;;;8932:30;8998:32;8978:18;;;8971:60;9048:18;;25971:53:0::2;8718:354:1::0;25971:53:0::2;-1:-1:-1::0;;;;;;26059:18:0;;::::2;26036:20;26059:18:::0;;;:10:::2;:18;::::0;;;;26089:8:::2;;:17:::0;25864:250::o;28390:172::-;28484:59;;;28501:16;28484:59;;;;4719:19:1;;;;28519:15:0;4754:12:1;;;4747:28;4831:3;4809:16;;;-1:-1:-1;;;;;;4805:51:1;4791:12;;;4784:73;28484:59:0;;;;;;;;;4873:12:1;;;;28484:59:0;;;28474:70;;;;;-1:-1:-1;;28469:85:0;;-1:-1:-1;;;;;28469:85:0;;;;:::i;24022:98::-;10187:7;10214:6;-1:-1:-1;;;;;10214:6:0;8945:10;10361:23;10353:68;;;;-1:-1:-1;;;10353:68:0;;;;;;;:::i;:::-;24087:13:::1;:25:::0;;-1:-1:-1;;;;;;24087:25:0::1;-1:-1:-1::0;;;;;24087:25:0;;;::::1;::::0;;;::::1;::::0;;24022:98::o;27478:904::-;10187:7;10214:6;-1:-1:-1;;;;;10214:6:0;8945:10;10361:23;10353:68;;;;-1:-1:-1;;;10353:68:0;;;;;;;:::i;:::-;27550:6;21790:13:::1;;21780:6;-1:-1:-1::0;;;;;21780:23:0::1;;;21757:72;;;;-1:-1:-1::0;;;21757:72:0::1;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;27596:17:0;::::2;27570:23;27596:17:::0;;;:9:::2;:17;::::0;;;;27633:14:::2;::::0;::::2;::::0;;;::::2;;;27625:57;;;::::0;-1:-1:-1;;;27625:57:0;;12159:2:1;27625:57:0::2;::::0;::::2;12141:21:1::0;12198:2;12178:18;;;12171:30;12237:32;12217:18;;;12210:60;12287:18;;27625:57:0::2;11957:354:1::0;27625:57:0::2;27703:24;::::0;::::2;::::0;::::2;::::0;::::2;;;27702:25;27694:61;;;::::0;-1:-1:-1;;;27694:61:0;;8568:2:1;27694:61:0::2;::::0;::::2;8550:21:1::0;8607:2;8587:18;;;8580:30;8646:25;8626:18;;;8619:53;8689:18;;27694:61:0::2;8366:347:1::0;27694:61:0::2;27770:24;::::0;::::2;::::0;::::2;;27767:161;;;27846:18;::::0;::::2;::::0;-1:-1:-1;;;;;;;;27846:18:0;::::2;::::0;::::2;-1:-1:-1::0;;;27819:24:0;;::::2;;:45;27811:104;;;::::0;-1:-1:-1;;;27811:104:0;;13230:2:1;27811:104:0::2;::::0;::::2;13212:21:1::0;13269:2;13249:18;;;13242:30;13308:34;13288:18;;;13281:62;-1:-1:-1;;;13359:18:1;;;13352:44;13413:19;;27811:104:0::2;13028:410:1::0;27811:104:0::2;28003:19;::::0;::::2;:26:::0;27966:16:::2;::::0;27985:46:::2;::::0;:10:::2;:46::i;:::-;27966:65;;28060:7;:19;;28080:11;28060:32;;;;;;;;:::i;:::-;;::::0;;;::::2;::::0;;;::::2;::::0;28043:49;;-1:-1:-1;;;;;;28043:49:0::2;-1:-1:-1::0;;;;;28060:32:0;;::::2;28043:49;::::0;;28104:24:::2;::::0;::::2;:31:::0;;-1:-1:-1;;28104:31:0::2;28060:32;28104:31;::::0;;28060:32;28227:19;::::2;::::0;28303::::2;::::0;::::2;:32:::0;;28227:19;;;::::2;::::0;28219:41:::2;::::0;28283:4:::2;::::0;28303:19;28323:11;;28303:32;::::2;;;;;:::i;:::-;;::::0;;;::::2;::::0;;;::::2;::::0;;28350:13;::::2;::::0;28219:155:::2;::::0;::::2;::::0;;;-1:-1:-1;;;;;;28219:155:0;;;::::2;::::0;;-1:-1:-1;;;;;28303:32:0::2;::::0;-1:-1:-1;;;28350:13:0;::::2;-1:-1:-1::0;;;;;28350:13:0::2;::::0;28219:155:::2;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;::::0;::::2;;;;;;;;;27558:824;;10432:1:::1;27478:904:::0;:::o;11050:201::-;10187:7;10214:6;-1:-1:-1;;;;;10214:6:0;8945:10;10361:23;10353:68;;;;-1:-1:-1;;;10353:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;11139:22:0;::::1;11131:73;;;::::0;-1:-1:-1;;;11131:73:0;;8161:2:1;11131:73:0::1;::::0;::::1;8143:21:1::0;8200:2;8180:18;;;8173:30;8239:34;8219:18;;;8212:62;-1:-1:-1;;;8290:18:1;;;8283:36;8336:19;;11131:73:0::1;7959:402:1::0;11131:73:0::1;11215:28;11234:8;11215:18;:28::i;23790:189::-:0;23872:7;23856:6;21790:13;;21780:6;-1:-1:-1;;;;;21780:23:0;;;21757:72;;;;-1:-1:-1;;;21757:72:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;;23921:17:0::1;23895:23;23921:17:::0;;;:9:::1;:17;::::0;;;;23957:14;-1:-1:-1;;;;;23957:14:0::1;::::0;23790:189::o;11411:191::-;11485:16;11504:6;;-1:-1:-1;;;;;11521:17:0;;;-1:-1:-1;;;;;;11521:17:0;;;;;;11554:40;;11504:6;;;;;;;11554:40;;11485:16;11554:40;11474:128;11411:191;:::o;14:173:1:-;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:70;;177:1;174;167:12;111:70;14:173;;;:::o;192:171::-;259:20;;-1:-1:-1;;;;;308:30:1;;298:41;;288:69;;353:1;350;343:12;368:186;427:6;480:2;468:9;459:7;455:23;451:32;448:52;;;496:1;493;486:12;448:52;519:29;538:9;519:29;:::i;:::-;509:39;368:186;-1:-1:-1;;;368:186:1:o;559:332::-;635:6;643;651;704:2;692:9;683:7;679:23;675:32;672:52;;;720:1;717;710:12;672:52;743:29;762:9;743:29;:::i;:::-;733:39;;791:38;825:2;814:9;810:18;791:38;:::i;:::-;781:48;;848:37;881:2;870:9;866:18;848:37;:::i;:::-;838:47;;559:332;;;;;:::o;896:602::-;994:6;1002;1010;1018;1026;1034;1087:3;1075:9;1066:7;1062:23;1058:33;1055:53;;;1104:1;1101;1094:12;1055:53;1127:29;1146:9;1127:29;:::i;:::-;1117:39;;1175:37;1208:2;1197:9;1193:18;1175:37;:::i;:::-;1165:47;;1231:37;1264:2;1253:9;1249:18;1231:37;:::i;:::-;1221:47;;1287:37;1320:2;1309:9;1305:18;1287:37;:::i;:::-;1277:47;;1371:3;1360:9;1356:19;1343:33;1333:43;;1426:3;1415:9;1411:19;1398:33;1440:28;1462:5;1440:28;:::i;:::-;1487:5;1477:15;;;896:602;;;;;;;;:::o;1503:241::-;1559:6;1612:2;1600:9;1591:7;1587:23;1583:32;1580:52;;;1628:1;1625;1618:12;1580:52;1667:9;1654:23;1686:28;1708:5;1686:28;:::i;1749:245::-;1816:6;1869:2;1857:9;1848:7;1844:23;1840:32;1837:52;;;1885:1;1882;1875:12;1837:52;1917:9;1911:16;1936:28;1958:5;1936:28;:::i;1999:184::-;2069:6;2122:2;2110:9;2101:7;2097:23;2093:32;2090:52;;;2138:1;2135;2128:12;2090:52;-1:-1:-1;2161:16:1;;1999:184;-1:-1:-1;1999:184:1:o;2188:::-;2246:6;2299:2;2287:9;2278:7;2274:23;2270:32;2267:52;;;2315:1;2312;2305:12;2267:52;2338:28;2356:9;2338:28;:::i;2377:330::-;2452:6;2460;2468;2521:2;2509:9;2500:7;2496:23;2492:32;2489:52;;;2537:1;2534;2527:12;2489:52;2560:28;2578:9;2560:28;:::i;2712:313::-;2776:6;2784;2837:2;2825:9;2816:7;2812:23;2808:32;2805:52;;;2853:1;2850;2843:12;2805:52;2876:28;2894:9;2876:28;:::i;:::-;2866:38;;2954:2;2943:9;2939:18;2926:32;2967:28;2989:5;2967:28;:::i;:::-;3014:5;3004:15;;;2712:313;;;;;:::o;3030:252::-;3097:6;3105;3158:2;3146:9;3137:7;3133:23;3129:32;3126:52;;;3174:1;3171;3164:12;3126:52;3197:28;3215:9;3197:28;:::i;:::-;3187:38;3272:2;3257:18;;;;3244:32;;-1:-1:-1;;;3030:252:1:o;3287:256::-;3353:6;3361;3414:2;3402:9;3393:7;3389:23;3385:32;3382:52;;;3430:1;3427;3420:12;3382:52;3453:28;3471:9;3453:28;:::i;:::-;3443:38;;3500:37;3533:2;3522:9;3518:18;3500:37;:::i;:::-;3490:47;;3287:256;;;;;:::o;3657:461::-;3710:3;3748:5;3742:12;3775:6;3770:3;3763:19;3801:4;3830:2;3825:3;3821:12;3814:19;;3867:2;3860:5;3856:14;3888:1;3898:195;3912:6;3909:1;3906:13;3898:195;;;3977:13;;-1:-1:-1;;;;;3973:39:1;3961:52;;4033:12;;;;4068:15;;;;4009:1;3927:9;3898:195;;;-1:-1:-1;4109:3:1;;3657:461;-1:-1:-1;;;;;3657:461:1:o;5484:399::-;-1:-1:-1;;;;;5741:15:1;;;5723:34;;5793:15;;;;5788:2;5773:18;;5766:43;-1:-1:-1;;;;;5845:31:1;;;5840:2;5825:18;;5818:59;5673:2;5658:18;;5484:399::o;6867:658::-;7038:2;7090:21;;;7160:13;;7063:18;;;7182:22;;;7009:4;;7038:2;7261:15;;;;7235:2;7220:18;;;7009:4;7304:195;7318:6;7315:1;7312:13;7304:195;;;7383:13;;-1:-1:-1;;;;;7379:39:1;7367:52;;7474:15;;;;7439:12;;;;7415:1;7333:9;7304:195;;;-1:-1:-1;7516:3:1;;6867:658;-1:-1:-1;;;;;;6867:658:1:o;9788:345::-;9990:2;9972:21;;;10029:2;10009:18;;;10002:30;-1:-1:-1;;;10063:2:1;10048:18;;10041:51;10124:2;10109:18;;9788:345::o;10138:356::-;10340:2;10322:21;;;10359:18;;;10352:30;10418:34;10413:2;10398:18;;10391:62;10485:2;10470:18;;10138:356::o;10499:347::-;10701:2;10683:21;;;10740:2;10720:18;;;10713:30;10779:25;10774:2;10759:18;;10752:53;10837:2;10822:18;;10499:347::o;13791:1491::-;13968:2;13957:9;13950:21;13980:53;14029:2;14018:9;14014:18;14005:6;13999:13;-1:-1:-1;;;;;3614:31:1;3602:44;;3548:104;13980:53;13931:4;14080:2;14072:6;14068:15;14062:22;14093:52;14141:2;14130:9;14126:18;14112:12;-1:-1:-1;;;;;3614:31:1;3602:44;;3548:104;14093:52;-1:-1:-1;14194:2:1;14182:15;;14176:22;-1:-1:-1;;;;;4284:30:1;;14256:2;14241:18;;4272:43;-1:-1:-1;14309:2:1;14297:15;;14291:22;-1:-1:-1;;;;;4284:30:1;;14371:3;14356:19;;4272:43;-1:-1:-1;14425:3:1;14413:16;;14407:23;-1:-1:-1;;;;;4284:30:1;;14488:3;14473:19;;4272:43;-1:-1:-1;14542:3:1;14530:16;;14524:23;-1:-1:-1;;;;;4284:30:1;;14605:3;14590:19;;4272:43;14556:54;14665:3;14657:6;14653:16;14647:23;14641:3;14630:9;14626:19;14619:52;14720:3;14712:6;14708:16;14702:23;14744:3;14756:51;14803:2;14792:9;14788:18;14772:14;4193:13;4186:21;4174:34;;4123:91;14756:51;14844:15;;14838:22;;-1:-1:-1;14879:3:1;14891:51;14923:18;;;14838:22;4193:13;4186:21;4174:34;;4123:91;14891:51;14979:15;;14973:22;;-1:-1:-1;15014:3:1;15026:51;15058:18;;;14973:22;4193:13;4186:21;4174:34;;4123:91;15026:51;15114:15;;15108:22;15149:6;15171:18;;;15164:30;15108:22;-1:-1:-1;15211:65:1;15271:3;15256:19;;15108:22;15211:65;:::i;:::-;15203:73;13791:1491;-1:-1:-1;;;;13791:1491:1:o;15287:634::-;15468:2;15457:9;15450:21;15527:6;15521:13;15514:21;15507:29;15502:2;15491:9;15487:18;15480:57;-1:-1:-1;;;;;15595:2:1;15587:6;15583:15;15577:22;15573:47;15568:2;15557:9;15553:18;15546:75;15675:2;15667:6;15663:15;15657:22;15652:2;15641:9;15637:18;15630:50;15735:2;15727:6;15723:15;15717:22;15711:3;15700:9;15696:19;15689:51;15431:4;15787:3;15779:6;15775:16;15769:23;15830:4;15823;15812:9;15808:20;15801:34;15852:63;15910:3;15899:9;15895:19;15881:12;15852:63;:::i;16108:128::-;16148:3;16179:1;16175:6;16172:1;16169:13;16166:39;;;16185:18;;:::i;:::-;-1:-1:-1;16221:9:1;;16108:128::o;16241:236::-;16280:3;-1:-1:-1;;;;;16353:2:1;16350:1;16346:10;16383:2;16380:1;16376:10;16414:3;16410:2;16406:12;16401:3;16398:21;16395:47;;;16422:18;;:::i;:::-;16458:13;;16241:236;-1:-1:-1;;;;16241:236:1:o;16482:168::-;16522:7;16588:1;16584;16580:6;16576:14;16573:1;16570:21;16565:1;16558:9;16551:17;16547:45;16544:71;;;16595:18;;:::i;:::-;-1:-1:-1;16635:9:1;;16482:168::o;16655:209::-;16693:3;-1:-1:-1;;;;;16774:2:1;16767:5;16763:14;16801:2;16792:7;16789:15;16786:41;;;16807:18;;:::i;:::-;16856:1;16843:15;;16655:209;-1:-1:-1;;;16655:209:1:o;16869:::-;16901:1;16927;16917:132;;16971:10;16966:3;16962:20;16959:1;16952:31;17006:4;17003:1;16996:15;17034:4;17031:1;17024:15;16917:132;-1:-1:-1;17063:9:1;;16869:209::o;17083:127::-;17144:10;17139:3;17135:20;17132:1;17125:31;17175:4;17172:1;17165:15;17199:4;17196:1;17189:15;17215:127;17276:10;17271:3;17267:20;17264:1;17257:31;17307:4;17304:1;17297:15;17331:4;17328:1;17321:15;17347:118;17433:5;17426:13;17419:21;17412:5;17409:32;17399:60;;17455:1;17452;17445:12

Swarm Source

ipfs://f3bb4f4e1e9b16c9cd63b3f30b8d07453d231eea2a7575be2a3c69ab4aac6bf6

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Loading...
Loading
[ Download: CSV Export  ]

A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.