More Info
Private Name Tags
ContractCreator
Sponsored
Latest 25 from a total of 1,043 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Swap Sand Man Fo... | 19033401 | 1122 days ago | IN | 0 POL | 0.00003139 | ||||
Swap Sand Man Fo... | 19033368 | 1122 days ago | IN | 0 POL | 0.00065927 | ||||
Swap Sand Man Fo... | 19033368 | 1122 days ago | IN | 0 POL | 0.00066241 | ||||
Swap Sand Man Fo... | 19026167 | 1122 days ago | IN | 0 POL | 0.00024402 | ||||
Swap Sand Man Fo... | 19026167 | 1122 days ago | IN | 0 POL | 0.00012445 | ||||
Swap Sand Man Fo... | 19026076 | 1122 days ago | IN | 0 POL | 0.00012445 | ||||
Swap Sand Man Fo... | 19010452 | 1123 days ago | IN | 0 POL | 0.00003453 | ||||
Swap Sand Man Fo... | 19008961 | 1123 days ago | IN | 0 POL | 0.00031406 | ||||
Swap Sand Man Fo... | 19008961 | 1123 days ago | IN | 0 POL | 0.00012549 | ||||
Swap Sand Man Fo... | 19008961 | 1123 days ago | IN | 0 POL | 0.00027086 | ||||
Swap Sand Man Fo... | 19008934 | 1123 days ago | IN | 0 POL | 0.00031406 | ||||
Swap Sand Man Fo... | 19008934 | 1123 days ago | IN | 0 POL | 0.00032034 | ||||
Swap Sand Man Fo... | 19008934 | 1123 days ago | IN | 0 POL | 0.00016331 | ||||
Swap Sand Man Fo... | 19006455 | 1123 days ago | IN | 0 POL | 0.00018836 | ||||
Swap Sand Man Fo... | 19006455 | 1123 days ago | IN | 0 POL | 0.00015697 | ||||
Swap Sand Man Fo... | 19006455 | 1123 days ago | IN | 0 POL | 0.00003833 | ||||
Swap Sand Man Fo... | 19006455 | 1123 days ago | IN | 0 POL | 0.00003833 | ||||
Swap Sand Man Fo... | 19006455 | 1123 days ago | IN | 0 POL | 0.00003833 | ||||
Swap Sand Man Fo... | 19006454 | 1123 days ago | IN | 0 POL | 0.00006278 | ||||
Swap Sand Man Fo... | 19006454 | 1123 days ago | IN | 0 POL | 0.00003833 | ||||
Swap Sand Man Fo... | 19006454 | 1123 days ago | IN | 0 POL | 0.00003798 | ||||
Swap Sand Man Fo... | 19006454 | 1123 days ago | IN | 0 POL | 0.00003833 | ||||
Swap Sand Man Fo... | 19006436 | 1123 days ago | IN | 0 POL | 0.0000518 | ||||
Swap Sand Man Fo... | 19001378 | 1123 days ago | IN | 0 POL | 0.0016795 | ||||
Swap Sand Man Fo... | 19001272 | 1123 days ago | IN | 0 POL | 0.0016795 |
Loading...
Loading
Contract Name:
DelightVipAccessPresale
Compiler Version
v0.8.4+commit.c7e474f2
Contract Source Code (Solidity)
/** *Submitted for verification at polygonscan.com on 2021-09-07 */ // SPDX-License-Identifier: MIT // File @openzeppelin/contracts/token/ERC20/[email protected] pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address sender, address recipient, uint256 amount ) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } // File @openzeppelin/contracts/token/ERC20/extensions/[email protected] pragma solidity ^0.8.0; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } // File @openzeppelin/contracts/utils/[email protected] pragma solidity ^0.8.0; /* * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File @openzeppelin/contracts/token/ERC20/[email protected] pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin guidelines: functions revert instead * of returning `false` on failure. This behavior is nonetheless conventional * and does not conflict with the expectations of ERC20 applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5,05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom( address sender, address recipient, uint256 amount ) public virtual override returns (bool) { _transfer(sender, recipient, amount); uint256 currentAllowance = _allowances[sender][_msgSender()]; require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance"); unchecked { _approve(sender, _msgSender(), currentAllowance - amount); } return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { uint256 currentAllowance = _allowances[_msgSender()][spender]; require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(_msgSender(), spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `sender` to `recipient`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer( address sender, address recipient, uint256 amount ) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); uint256 senderBalance = _balances[sender]; require(senderBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[sender] = senderBalance - amount; } _balances[recipient] += amount; emit Transfer(sender, recipient, amount); _afterTokenTransfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; _balances[account] += amount; emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; } _totalSupply -= amount; emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} } // File @openzeppelin/contracts/utils/[email protected] 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); } function _verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) private pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File @openzeppelin/contracts/token/ERC20/utils/[email protected] pragma solidity ^0.8.0; /** * @title SafeERC20 * @dev Wrappers around ERC20 operations that throw on failure (when the token * contract returns false). Tokens that return no value (and instead revert or * throw on failure) are also supported, non-reverting calls are assumed to be * successful. * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract, * which allows you to call the safe operations as `token.safeTransfer(...)`, etc. */ library SafeERC20 { using Address for address; function safeTransfer( IERC20 token, address to, uint256 value ) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value)); } function safeTransferFrom( IERC20 token, address from, address to, uint256 value ) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value)); } /** * @dev Deprecated. This function has issues similar to the ones found in * {IERC20-approve}, and its usage is discouraged. * * Whenever possible, use {safeIncreaseAllowance} and * {safeDecreaseAllowance} instead. */ function safeApprove( IERC20 token, address spender, uint256 value ) internal { // safeApprove should only be called when setting an initial allowance, // or when resetting it to zero. To increase and decrease it, use // 'safeIncreaseAllowance' and 'safeDecreaseAllowance' require( (value == 0) || (token.allowance(address(this), spender) == 0), "SafeERC20: approve from non-zero to non-zero allowance" ); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value)); } function safeIncreaseAllowance( IERC20 token, address spender, uint256 value ) internal { uint256 newAllowance = token.allowance(address(this), spender) + value; _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } function safeDecreaseAllowance( IERC20 token, address spender, uint256 value ) internal { unchecked { uint256 oldAllowance = token.allowance(address(this), spender); require(oldAllowance >= value, "SafeERC20: decreased allowance below zero"); uint256 newAllowance = oldAllowance - value; _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } } /** * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement * on the return value: the return value is optional (but if data is returned, it must not be false). * @param token The token targeted by the call. * @param data The call data (encoded using abi.encode or one of its variants). */ function _callOptionalReturn(IERC20 token, bytes memory data) private { // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that // the target address contains contract code and also asserts for success in the low-level call. bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed"); if (returndata.length > 0) { // Return data is optional require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed"); } } } // File @openzeppelin/contracts/security/[email protected] pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and make it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } } // File @openzeppelin/contracts/access/[email protected] pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _setOwner(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _setOwner(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _setOwner(newOwner); } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File contracts/DelightVipAccessPresale.sol /* ___ ___ ___ _____ /\__\ /\__\ /\ \ /::\ \ /:/ _/_ ___ /:/ _/_ \:\ \ ___ /:/\:\ \ /:/ /\__\ /\__\ /:/ /\ \ \:\ \ /\__\ /:/ \:\__\ /:/ /:/ _/_ ___ ___ /:/__/ /:/ /::\ \ ___ /::\ \ /:/ / /:/__/ \:|__| /:/_/:/ /\__\ /\ \ /\__\ /::\ \ /:/__\/\:\__\ /\ /:/\:\__\ /:/__/ \:\ \ /:/ / \:\/:/ /:/ / \:\ \ /:/ / \/\:\ \__ \:\ \ /:/ / \:\/:/ \/__/ /::\ \ \:\ /:/ / \::/_/:/ / \:\ /:/ / ~~\:\/\__\ \:\ /:/ / \::/__/ /:/\:\ \ \:\/:/ / \:\/:/ / \:\/:/ / \::/ / \:\/:/ / \:\ \ \/__\:\ \ \::/ / \::/ / \::/ / /:/ / \::/ / \:\__\ \:\__\ \/__/ \/__/ \/__/ \/__/ \/__/ \/__/ \/__/ */ pragma solidity ^0.8.4; /* ERROR REF --------- E1: Delight cannot be equal to delirium E2: Delight still sane E3: Not Enough delight tokens in contract for swap E4: Failed sending sandman token E5: Can only send excess delight to dead address after presale has ended E6: Can only burn unsold presale once! E7: Cannot set start block in the past! E8: _DelightAddress cannot be the zero address E9: Fee address cannot partake in presale E10: Presale hasn't started yet, good things come to those that wait E11: Presale has ended, come back next time! E12: No more deligth tokens remaining! Come back next time! E13: No more deligth left! Come back next time! E14: Not enough sandman provided E15: User cannot purchase 0 delight E16: Failed sending delight E18: Failed to collect lithium from user E19: Burning too much delirium, check again please E20: Can only retrieve excess tokens after delight swap has ended E21: Cannot change start block if presale has already commenced E22: Cannot set start block in the past E23: Cannot change price after start presale E24: New delight price is to high! E25: New delight price is too low! E26: Can only send excess delight to dead address after presale has ended E27: Can only burn unsold presale once! E28: Start block has to be less than end block */ contract DelightVipAccessPresale is Ownable, ReentrancyGuard { address public constant BURN_ADDRESS = 0x000000000000000000000000000000000000dEaD; address public constant FEE_ADDRESS = 0xFbd37BfD354611b809054CBA049AAa7CC5fD364b; address public immutable delightAddress; address public immutable sandManAddress; uint256 public startBlock; uint256 public endBlock; bool public hasBurnedUnsoldPresale; //SETUP uint256 public delightVipPresaleSize = 48 * (10 ** 3) * (10 ** 18); // 48,000 delight for l1 uint256 public delightSaleVipPriceE35 = 48 * (10 ** 33); uint256 public delightRemaining = delightVipPresaleSize; uint256 public constant oneHourMatic = 1500; uint256 public constant minDurationPresale = oneHourMatic * 24 * 3; event SandManToDelight(address sender, uint256 sandMantoSwap, uint256 delightPurchaseAmount); event BurnUnclaimedDelight(uint256 amountDelightBurned); event RetrieveDepreciatedSandManAddresss(address feeAddress, uint256 sandmanInContract); event SetStartBlock(uint256 newStartBlock, uint256 newEndBlock); constructor(uint256 _startBlock, uint256 _endBlock, address _delightAddress, address _sandManAddress) { require(_delightAddress != address(0), "E8"); startBlock = _startBlock; endBlock = _endBlock; delightAddress = _delightAddress; sandManAddress = _sandManAddress; } function swapSandManForDelight(uint256 sandManToSwap) external nonReentrant { require(msg.sender != FEE_ADDRESS, "E9"); require(block.number >= startBlock, "E10"); require(block.number < endBlock, "E11"); require(delightRemaining > 0, "E12"); require(IERC20(delightAddress).balanceOf(address(this)) > 0, "E13"); require(sandManToSwap > 0, "E14"); uint256 delightPurchaseAmount = (sandManToSwap * delightSaleVipPriceE35) / 1e35; if (delightRemaining < delightPurchaseAmount) delightPurchaseAmount = delightRemaining; require(delightPurchaseAmount > 0, "E15"); assert(delightPurchaseAmount <= delightRemaining); assert(delightPurchaseAmount <= IERC20(delightAddress).balanceOf(address(this))); delightRemaining = delightRemaining - delightPurchaseAmount; require(IERC20(delightAddress).transfer(msg.sender, delightPurchaseAmount), "E16"); require(IERC20(sandManAddress).transferFrom(msg.sender, FEE_ADDRESS, sandManToSwap), "E18"); emit SandManToDelight(msg.sender, sandManToSwap, delightPurchaseAmount); } function setStartBlock(uint256 _newStartBlock, uint256 _newEndBlock) external onlyOwner { require(block.number < startBlock, "E21"); require(block.number < _newStartBlock, "E22"); require(_newStartBlock < _newEndBlock, "E28"); require((_newEndBlock - _newStartBlock) > minDurationPresale, "E13"); startBlock = _newStartBlock; endBlock = _newEndBlock; emit SetStartBlock(startBlock, endBlock); } function sendUnclaimedDelightToDeadAddress() external onlyOwner { require(block.number > endBlock, "E26"); require(!hasBurnedUnsoldPresale, "E27"); uint256 delightInContract = IERC20(delightAddress).balanceOf(address(this)); if (delightInContract > 0) require(IERC20(delightAddress).transfer(BURN_ADDRESS, delightInContract), "E16"); hasBurnedUnsoldPresale = true; emit BurnUnclaimedDelight(delightInContract); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"uint256","name":"_startBlock","type":"uint256"},{"internalType":"uint256","name":"_endBlock","type":"uint256"},{"internalType":"address","name":"_delightAddress","type":"address"},{"internalType":"address","name":"_sandManAddress","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amountDelightBurned","type":"uint256"}],"name":"BurnUnclaimedDelight","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"feeAddress","type":"address"},{"indexed":false,"internalType":"uint256","name":"sandmanInContract","type":"uint256"}],"name":"RetrieveDepreciatedSandManAddresss","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"sender","type":"address"},{"indexed":false,"internalType":"uint256","name":"sandMantoSwap","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"delightPurchaseAmount","type":"uint256"}],"name":"SandManToDelight","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newStartBlock","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newEndBlock","type":"uint256"}],"name":"SetStartBlock","type":"event"},{"inputs":[],"name":"BURN_ADDRESS","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"FEE_ADDRESS","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"delightAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"delightRemaining","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"delightSaleVipPriceE35","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"delightVipPresaleSize","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"endBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hasBurnedUnsoldPresale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minDurationPresale","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"oneHourMatic","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sandManAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sendUnclaimedDelightToDeadAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newStartBlock","type":"uint256"},{"internalType":"uint256","name":"_newEndBlock","type":"uint256"}],"name":"setStartBlock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"sandManToSwap","type":"uint256"}],"name":"swapSandManForDelight","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60c0604052690a2a15d09519be0000006005556e093e952cda8b9aa44111e0000000006006556005546007553480156200003857600080fd5b50604051620021cd380380620021cd83398181016040528101906200005e919062000278565b6200007e620000726200017e60201b60201c565b6200018660201b60201c565b60018081905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620000f8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620000ef906200030b565b60405180910390fd5b83600281905550826003819055508173ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff1660601b815250508073ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff1660601b8152505050505050620003d9565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000815190506200025b81620003a5565b92915050565b6000815190506200027281620003bf565b92915050565b600080600080608085870312156200028f57600080fd5b60006200029f8782880162000261565b9450506020620002b28782880162000261565b9350506040620002c5878288016200024a565b9250506060620002d8878288016200024a565b91505092959194509250565b6000620002f36002836200032d565b915062000300826200037c565b602082019050919050565b600060208201905081810360008301526200032681620002e4565b9050919050565b600082825260208201905092915050565b60006200034b8262000352565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b7f4538000000000000000000000000000000000000000000000000000000000000600082015250565b620003b0816200033e565b8114620003bc57600080fd5b50565b620003ca8162000372565b8114620003d657600080fd5b50565b60805160601c60a05160601c611d9e6200042f60003960008181610bc80152610fbb015260008181610423015281816104d70152818161063a01528181610805015281816109e90152610adc0152611d9e6000f3fe608060405234801561001057600080fd5b50600436106101165760003560e01c80638a796bf6116100a2578063b5ba3d4911610071578063b5ba3d4914610275578063eafaeea914610293578063eb1edd61146102b1578063f2fde38b146102cf578063fccc2813146102eb57610116565b80638a796bf6146101ff5780638da5cb5b1461021b5780639ca8568114610239578063b55768eb1461025757610116565b806348cd4cb1116100e957806348cd4cb11461017f5780634a761bbc1461019d578063611bf8d0146101bb57806368a04492146101d9578063715018a6146101f557610116565b8063083c63231461011b5780630f2c976b146101395780631dc4b8091461014357806332965f5714610161575b600080fd5b610123610309565b604051610130919061188a565b60405180910390f35b61014161030f565b005b61014b610619565b604051610158919061164f565b60405180910390f35b61016961062c565b604051610176919061188a565b60405180910390f35b610187610632565b604051610194919061188a565b60405180910390f35b6101a5610638565b6040516101b2919061159d565b60405180910390f35b6101c361065c565b6040516101d0919061188a565b60405180910390f35b6101f360048036038101906101ee919061128f565b610662565b005b6101fd610d0e565b005b610219600480360381019061021491906112e1565b610d96565b005b610223610f90565b604051610230919061159d565b60405180910390f35b610241610fb9565b60405161024e919061159d565b60405180910390f35b61025f610fdd565b60405161026c919061188a565b60405180910390f35b61027d610fe3565b60405161028a919061188a565b60405180910390f35b61029b611001565b6040516102a8919061188a565b60405180910390f35b6102b9611007565b6040516102c6919061159d565b60405180910390f35b6102e960048036038101906102e4919061123d565b61101f565b005b6102f3611117565b604051610300919061159d565b60405180910390f35b60035481565b61031761111d565b73ffffffffffffffffffffffffffffffffffffffff16610335610f90565b73ffffffffffffffffffffffffffffffffffffffff161461038b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610382906117aa565b60405180910390fd5b60035443116103cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103c69061182a565b60405180910390fd5b600460009054906101000a900460ff161561041f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610416906116ca565b60405180910390fd5b60007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b815260040161047a919061159d565b60206040518083038186803b15801561049257600080fd5b505afa1580156104a6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104ca91906112b8565b905060008111156105c4577f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb61dead836040518363ffffffff1660e01b81526004016105329291906115ef565b602060405180830381600087803b15801561054c57600080fd5b505af1158015610560573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105849190611266565b6105c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105ba906117ca565b60405180910390fd5b5b6001600460006101000a81548160ff0219169083151502179055507f9a8f4822fe4ad52cc3445484f82c26e10bd1498f7025c454e95fb3b4ce6e70a88160405161060e919061188a565b60405180910390a150565b600460009054906101000a900460ff1681565b60065481565b60025481565b7f000000000000000000000000000000000000000000000000000000000000000081565b6105dc81565b600260015414156106a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161069f9061186a565b60405180910390fd5b600260018190555073fbd37bfd354611b809054cba049aaa7cc5fd364b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161415610733576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161072a906116ea565b60405180910390fd5b600254431015610778576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161076f9061172a565b60405180910390fd5b60035443106107bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107b39061176a565b60405180910390fd5b600060075411610801576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107f89061184a565b60405180910390fd5b60007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b815260040161085c919061159d565b60206040518083038186803b15801561087457600080fd5b505afa158015610888573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108ac91906112b8565b116108ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e39061178a565b60405180910390fd5b6000811161092f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109269061174a565b60405180910390fd5b60006e13426172c74d822b878fe8000000006006548361094f9190611910565b61095991906118df565b905080600754101561096b5760075490505b600081116109ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109a5906117ea565b60405180910390fd5b6007548111156109e7577f4e487b7100000000000000000000000000000000000000000000000000000000600052600160045260246000fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610a40919061159d565b60206040518083038186803b158015610a5857600080fd5b505afa158015610a6c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a9091906112b8565b811115610ac6577f4e487b7100000000000000000000000000000000000000000000000000000000600052600160045260246000fd5b80600754610ad4919061196a565b6007819055507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b8152600401610b359291906115ef565b602060405180830381600087803b158015610b4f57600080fd5b505af1158015610b63573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b879190611266565b610bc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bbd906117ca565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166323b872dd3373fbd37bfd354611b809054cba049aaa7cc5fd364b856040518463ffffffff1660e01b8152600401610c37939291906115b8565b602060405180830381600087803b158015610c5157600080fd5b505af1158015610c65573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c899190611266565b610cc8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cbf9061170a565b60405180910390fd5b7fb62487f68c063e555ff2c39fe2b2a1ecf5c3893b928844c589a649448dcabcce338383604051610cfb93929190611618565b60405180910390a1506001808190555050565b610d1661111d565b73ffffffffffffffffffffffffffffffffffffffff16610d34610f90565b73ffffffffffffffffffffffffffffffffffffffff1614610d8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d81906117aa565b60405180910390fd5b610d946000611125565b565b610d9e61111d565b73ffffffffffffffffffffffffffffffffffffffff16610dbc610f90565b73ffffffffffffffffffffffffffffffffffffffff1614610e12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e09906117aa565b60405180910390fd5b6002544310610e56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4d9061180a565b60405180910390fd5b814310610e98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8f9061166a565b60405180910390fd5b808210610eda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed1906116aa565b60405180910390fd5b600360186105dc610eeb9190611910565b610ef59190611910565b8282610f01919061196a565b11610f41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f389061178a565b60405180910390fd5b81600281905550806003819055507f5bd025030aef837abe4fff12d2844a332e22f1c2680830e53bbd5e21d8d1baee600254600354604051610f849291906118a5565b60405180910390a15050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b7f000000000000000000000000000000000000000000000000000000000000000081565b60055481565b600360186105dc610ff49190611910565b610ffe9190611910565b81565b60075481565b73fbd37bfd354611b809054cba049aaa7cc5fd364b81565b61102761111d565b73ffffffffffffffffffffffffffffffffffffffff16611045610f90565b73ffffffffffffffffffffffffffffffffffffffff161461109b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611092906117aa565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561110b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111029061168a565b60405180910390fd5b61111481611125565b50565b61dead81565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000813590506111f881611d23565b92915050565b60008151905061120d81611d3a565b92915050565b60008135905061122281611d51565b92915050565b60008151905061123781611d51565b92915050565b60006020828403121561124f57600080fd5b600061125d848285016111e9565b91505092915050565b60006020828403121561127857600080fd5b6000611286848285016111fe565b91505092915050565b6000602082840312156112a157600080fd5b60006112af84828501611213565b91505092915050565b6000602082840312156112ca57600080fd5b60006112d884828501611228565b91505092915050565b600080604083850312156112f457600080fd5b600061130285828601611213565b925050602061131385828601611213565b9150509250929050565b6113268161199e565b82525050565b611335816119b0565b82525050565b60006113486003836118ce565b915061135382611a44565b602082019050919050565b600061136b6026836118ce565b915061137682611a6d565b604082019050919050565b600061138e6003836118ce565b915061139982611abc565b602082019050919050565b60006113b16003836118ce565b91506113bc82611ae5565b602082019050919050565b60006113d46002836118ce565b91506113df82611b0e565b602082019050919050565b60006113f76003836118ce565b915061140282611b37565b602082019050919050565b600061141a6003836118ce565b915061142582611b60565b602082019050919050565b600061143d6003836118ce565b915061144882611b89565b602082019050919050565b60006114606003836118ce565b915061146b82611bb2565b602082019050919050565b60006114836003836118ce565b915061148e82611bdb565b602082019050919050565b60006114a66020836118ce565b91506114b182611c04565b602082019050919050565b60006114c96003836118ce565b91506114d482611c2d565b602082019050919050565b60006114ec6003836118ce565b91506114f782611c56565b602082019050919050565b600061150f6003836118ce565b915061151a82611c7f565b602082019050919050565b60006115326003836118ce565b915061153d82611ca8565b602082019050919050565b60006115556003836118ce565b915061156082611cd1565b602082019050919050565b6000611578601f836118ce565b915061158382611cfa565b602082019050919050565b611597816119dc565b82525050565b60006020820190506115b2600083018461131d565b92915050565b60006060820190506115cd600083018661131d565b6115da602083018561131d565b6115e7604083018461158e565b949350505050565b6000604082019050611604600083018561131d565b611611602083018461158e565b9392505050565b600060608201905061162d600083018661131d565b61163a602083018561158e565b611647604083018461158e565b949350505050565b6000602082019050611664600083018461132c565b92915050565b600060208201905081810360008301526116838161133b565b9050919050565b600060208201905081810360008301526116a38161135e565b9050919050565b600060208201905081810360008301526116c381611381565b9050919050565b600060208201905081810360008301526116e3816113a4565b9050919050565b60006020820190508181036000830152611703816113c7565b9050919050565b60006020820190508181036000830152611723816113ea565b9050919050565b600060208201905081810360008301526117438161140d565b9050919050565b6000602082019050818103600083015261176381611430565b9050919050565b6000602082019050818103600083015261178381611453565b9050919050565b600060208201905081810360008301526117a381611476565b9050919050565b600060208201905081810360008301526117c381611499565b9050919050565b600060208201905081810360008301526117e3816114bc565b9050919050565b60006020820190508181036000830152611803816114df565b9050919050565b6000602082019050818103600083015261182381611502565b9050919050565b6000602082019050818103600083015261184381611525565b9050919050565b6000602082019050818103600083015261186381611548565b9050919050565b600060208201905081810360008301526118838161156b565b9050919050565b600060208201905061189f600083018461158e565b92915050565b60006040820190506118ba600083018561158e565b6118c7602083018461158e565b9392505050565b600082825260208201905092915050565b60006118ea826119dc565b91506118f5836119dc565b92508261190557611904611a15565b5b828204905092915050565b600061191b826119dc565b9150611926836119dc565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561195f5761195e6119e6565b5b828202905092915050565b6000611975826119dc565b9150611980836119dc565b925082821015611993576119926119e6565b5b828203905092915050565b60006119a9826119bc565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4532320000000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4532380000000000000000000000000000000000000000000000000000000000600082015250565b7f4532370000000000000000000000000000000000000000000000000000000000600082015250565b7f4539000000000000000000000000000000000000000000000000000000000000600082015250565b7f4531380000000000000000000000000000000000000000000000000000000000600082015250565b7f4531300000000000000000000000000000000000000000000000000000000000600082015250565b7f4531340000000000000000000000000000000000000000000000000000000000600082015250565b7f4531310000000000000000000000000000000000000000000000000000000000600082015250565b7f4531330000000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4531360000000000000000000000000000000000000000000000000000000000600082015250565b7f4531350000000000000000000000000000000000000000000000000000000000600082015250565b7f4532310000000000000000000000000000000000000000000000000000000000600082015250565b7f4532360000000000000000000000000000000000000000000000000000000000600082015250565b7f4531320000000000000000000000000000000000000000000000000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b611d2c8161199e565b8114611d3757600080fd5b50565b611d43816119b0565b8114611d4e57600080fd5b50565b611d5a816119dc565b8114611d6557600080fd5b5056fea2646970667358221220a43999b6d6ed13e3d9c7c49744ac1781cc6b62228d11340b3df8b8f8fadf0d6364736f6c6343000804003300000000000000000000000000000000000000000000000000000000011fabd8000000000000000000000000000000000000000000000000000000000121f118000000000000000000000000960fe3cbef6d922ece9fa3e5611b8f9ec14de649000000000000000000000000f9b4defdde04fe18f5ee6456607f8a2ec9ff6a75
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101165760003560e01c80638a796bf6116100a2578063b5ba3d4911610071578063b5ba3d4914610275578063eafaeea914610293578063eb1edd61146102b1578063f2fde38b146102cf578063fccc2813146102eb57610116565b80638a796bf6146101ff5780638da5cb5b1461021b5780639ca8568114610239578063b55768eb1461025757610116565b806348cd4cb1116100e957806348cd4cb11461017f5780634a761bbc1461019d578063611bf8d0146101bb57806368a04492146101d9578063715018a6146101f557610116565b8063083c63231461011b5780630f2c976b146101395780631dc4b8091461014357806332965f5714610161575b600080fd5b610123610309565b604051610130919061188a565b60405180910390f35b61014161030f565b005b61014b610619565b604051610158919061164f565b60405180910390f35b61016961062c565b604051610176919061188a565b60405180910390f35b610187610632565b604051610194919061188a565b60405180910390f35b6101a5610638565b6040516101b2919061159d565b60405180910390f35b6101c361065c565b6040516101d0919061188a565b60405180910390f35b6101f360048036038101906101ee919061128f565b610662565b005b6101fd610d0e565b005b610219600480360381019061021491906112e1565b610d96565b005b610223610f90565b604051610230919061159d565b60405180910390f35b610241610fb9565b60405161024e919061159d565b60405180910390f35b61025f610fdd565b60405161026c919061188a565b60405180910390f35b61027d610fe3565b60405161028a919061188a565b60405180910390f35b61029b611001565b6040516102a8919061188a565b60405180910390f35b6102b9611007565b6040516102c6919061159d565b60405180910390f35b6102e960048036038101906102e4919061123d565b61101f565b005b6102f3611117565b604051610300919061159d565b60405180910390f35b60035481565b61031761111d565b73ffffffffffffffffffffffffffffffffffffffff16610335610f90565b73ffffffffffffffffffffffffffffffffffffffff161461038b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610382906117aa565b60405180910390fd5b60035443116103cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103c69061182a565b60405180910390fd5b600460009054906101000a900460ff161561041f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610416906116ca565b60405180910390fd5b60007f000000000000000000000000960fe3cbef6d922ece9fa3e5611b8f9ec14de64973ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b815260040161047a919061159d565b60206040518083038186803b15801561049257600080fd5b505afa1580156104a6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104ca91906112b8565b905060008111156105c4577f000000000000000000000000960fe3cbef6d922ece9fa3e5611b8f9ec14de64973ffffffffffffffffffffffffffffffffffffffff1663a9059cbb61dead836040518363ffffffff1660e01b81526004016105329291906115ef565b602060405180830381600087803b15801561054c57600080fd5b505af1158015610560573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105849190611266565b6105c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105ba906117ca565b60405180910390fd5b5b6001600460006101000a81548160ff0219169083151502179055507f9a8f4822fe4ad52cc3445484f82c26e10bd1498f7025c454e95fb3b4ce6e70a88160405161060e919061188a565b60405180910390a150565b600460009054906101000a900460ff1681565b60065481565b60025481565b7f000000000000000000000000960fe3cbef6d922ece9fa3e5611b8f9ec14de64981565b6105dc81565b600260015414156106a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161069f9061186a565b60405180910390fd5b600260018190555073fbd37bfd354611b809054cba049aaa7cc5fd364b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161415610733576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161072a906116ea565b60405180910390fd5b600254431015610778576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161076f9061172a565b60405180910390fd5b60035443106107bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107b39061176a565b60405180910390fd5b600060075411610801576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107f89061184a565b60405180910390fd5b60007f000000000000000000000000960fe3cbef6d922ece9fa3e5611b8f9ec14de64973ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b815260040161085c919061159d565b60206040518083038186803b15801561087457600080fd5b505afa158015610888573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108ac91906112b8565b116108ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e39061178a565b60405180910390fd5b6000811161092f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109269061174a565b60405180910390fd5b60006e13426172c74d822b878fe8000000006006548361094f9190611910565b61095991906118df565b905080600754101561096b5760075490505b600081116109ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109a5906117ea565b60405180910390fd5b6007548111156109e7577f4e487b7100000000000000000000000000000000000000000000000000000000600052600160045260246000fd5b7f000000000000000000000000960fe3cbef6d922ece9fa3e5611b8f9ec14de64973ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610a40919061159d565b60206040518083038186803b158015610a5857600080fd5b505afa158015610a6c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a9091906112b8565b811115610ac6577f4e487b7100000000000000000000000000000000000000000000000000000000600052600160045260246000fd5b80600754610ad4919061196a565b6007819055507f000000000000000000000000960fe3cbef6d922ece9fa3e5611b8f9ec14de64973ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b8152600401610b359291906115ef565b602060405180830381600087803b158015610b4f57600080fd5b505af1158015610b63573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b879190611266565b610bc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bbd906117ca565b60405180910390fd5b7f000000000000000000000000f9b4defdde04fe18f5ee6456607f8a2ec9ff6a7573ffffffffffffffffffffffffffffffffffffffff166323b872dd3373fbd37bfd354611b809054cba049aaa7cc5fd364b856040518463ffffffff1660e01b8152600401610c37939291906115b8565b602060405180830381600087803b158015610c5157600080fd5b505af1158015610c65573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c899190611266565b610cc8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cbf9061170a565b60405180910390fd5b7fb62487f68c063e555ff2c39fe2b2a1ecf5c3893b928844c589a649448dcabcce338383604051610cfb93929190611618565b60405180910390a1506001808190555050565b610d1661111d565b73ffffffffffffffffffffffffffffffffffffffff16610d34610f90565b73ffffffffffffffffffffffffffffffffffffffff1614610d8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d81906117aa565b60405180910390fd5b610d946000611125565b565b610d9e61111d565b73ffffffffffffffffffffffffffffffffffffffff16610dbc610f90565b73ffffffffffffffffffffffffffffffffffffffff1614610e12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e09906117aa565b60405180910390fd5b6002544310610e56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4d9061180a565b60405180910390fd5b814310610e98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8f9061166a565b60405180910390fd5b808210610eda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed1906116aa565b60405180910390fd5b600360186105dc610eeb9190611910565b610ef59190611910565b8282610f01919061196a565b11610f41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f389061178a565b60405180910390fd5b81600281905550806003819055507f5bd025030aef837abe4fff12d2844a332e22f1c2680830e53bbd5e21d8d1baee600254600354604051610f849291906118a5565b60405180910390a15050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b7f000000000000000000000000f9b4defdde04fe18f5ee6456607f8a2ec9ff6a7581565b60055481565b600360186105dc610ff49190611910565b610ffe9190611910565b81565b60075481565b73fbd37bfd354611b809054cba049aaa7cc5fd364b81565b61102761111d565b73ffffffffffffffffffffffffffffffffffffffff16611045610f90565b73ffffffffffffffffffffffffffffffffffffffff161461109b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611092906117aa565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561110b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111029061168a565b60405180910390fd5b61111481611125565b50565b61dead81565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000813590506111f881611d23565b92915050565b60008151905061120d81611d3a565b92915050565b60008135905061122281611d51565b92915050565b60008151905061123781611d51565b92915050565b60006020828403121561124f57600080fd5b600061125d848285016111e9565b91505092915050565b60006020828403121561127857600080fd5b6000611286848285016111fe565b91505092915050565b6000602082840312156112a157600080fd5b60006112af84828501611213565b91505092915050565b6000602082840312156112ca57600080fd5b60006112d884828501611228565b91505092915050565b600080604083850312156112f457600080fd5b600061130285828601611213565b925050602061131385828601611213565b9150509250929050565b6113268161199e565b82525050565b611335816119b0565b82525050565b60006113486003836118ce565b915061135382611a44565b602082019050919050565b600061136b6026836118ce565b915061137682611a6d565b604082019050919050565b600061138e6003836118ce565b915061139982611abc565b602082019050919050565b60006113b16003836118ce565b91506113bc82611ae5565b602082019050919050565b60006113d46002836118ce565b91506113df82611b0e565b602082019050919050565b60006113f76003836118ce565b915061140282611b37565b602082019050919050565b600061141a6003836118ce565b915061142582611b60565b602082019050919050565b600061143d6003836118ce565b915061144882611b89565b602082019050919050565b60006114606003836118ce565b915061146b82611bb2565b602082019050919050565b60006114836003836118ce565b915061148e82611bdb565b602082019050919050565b60006114a66020836118ce565b91506114b182611c04565b602082019050919050565b60006114c96003836118ce565b91506114d482611c2d565b602082019050919050565b60006114ec6003836118ce565b91506114f782611c56565b602082019050919050565b600061150f6003836118ce565b915061151a82611c7f565b602082019050919050565b60006115326003836118ce565b915061153d82611ca8565b602082019050919050565b60006115556003836118ce565b915061156082611cd1565b602082019050919050565b6000611578601f836118ce565b915061158382611cfa565b602082019050919050565b611597816119dc565b82525050565b60006020820190506115b2600083018461131d565b92915050565b60006060820190506115cd600083018661131d565b6115da602083018561131d565b6115e7604083018461158e565b949350505050565b6000604082019050611604600083018561131d565b611611602083018461158e565b9392505050565b600060608201905061162d600083018661131d565b61163a602083018561158e565b611647604083018461158e565b949350505050565b6000602082019050611664600083018461132c565b92915050565b600060208201905081810360008301526116838161133b565b9050919050565b600060208201905081810360008301526116a38161135e565b9050919050565b600060208201905081810360008301526116c381611381565b9050919050565b600060208201905081810360008301526116e3816113a4565b9050919050565b60006020820190508181036000830152611703816113c7565b9050919050565b60006020820190508181036000830152611723816113ea565b9050919050565b600060208201905081810360008301526117438161140d565b9050919050565b6000602082019050818103600083015261176381611430565b9050919050565b6000602082019050818103600083015261178381611453565b9050919050565b600060208201905081810360008301526117a381611476565b9050919050565b600060208201905081810360008301526117c381611499565b9050919050565b600060208201905081810360008301526117e3816114bc565b9050919050565b60006020820190508181036000830152611803816114df565b9050919050565b6000602082019050818103600083015261182381611502565b9050919050565b6000602082019050818103600083015261184381611525565b9050919050565b6000602082019050818103600083015261186381611548565b9050919050565b600060208201905081810360008301526118838161156b565b9050919050565b600060208201905061189f600083018461158e565b92915050565b60006040820190506118ba600083018561158e565b6118c7602083018461158e565b9392505050565b600082825260208201905092915050565b60006118ea826119dc565b91506118f5836119dc565b92508261190557611904611a15565b5b828204905092915050565b600061191b826119dc565b9150611926836119dc565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561195f5761195e6119e6565b5b828202905092915050565b6000611975826119dc565b9150611980836119dc565b925082821015611993576119926119e6565b5b828203905092915050565b60006119a9826119bc565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4532320000000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4532380000000000000000000000000000000000000000000000000000000000600082015250565b7f4532370000000000000000000000000000000000000000000000000000000000600082015250565b7f4539000000000000000000000000000000000000000000000000000000000000600082015250565b7f4531380000000000000000000000000000000000000000000000000000000000600082015250565b7f4531300000000000000000000000000000000000000000000000000000000000600082015250565b7f4531340000000000000000000000000000000000000000000000000000000000600082015250565b7f4531310000000000000000000000000000000000000000000000000000000000600082015250565b7f4531330000000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4531360000000000000000000000000000000000000000000000000000000000600082015250565b7f4531350000000000000000000000000000000000000000000000000000000000600082015250565b7f4532310000000000000000000000000000000000000000000000000000000000600082015250565b7f4532360000000000000000000000000000000000000000000000000000000000600082015250565b7f4531320000000000000000000000000000000000000000000000000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b611d2c8161199e565b8114611d3757600080fd5b50565b611d43816119b0565b8114611d4e57600080fd5b50565b611d5a816119dc565b8114611d6557600080fd5b5056fea2646970667358221220a43999b6d6ed13e3d9c7c49744ac1781cc6b62228d11340b3df8b8f8fadf0d6364736f6c63430008040033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000011fabd8000000000000000000000000000000000000000000000000000000000121f118000000000000000000000000960fe3cbef6d922ece9fa3e5611b8f9ec14de649000000000000000000000000f9b4defdde04fe18f5ee6456607f8a2ec9ff6a75
-----Decoded View---------------
Arg [0] : _startBlock (uint256): 18852824
Arg [1] : _endBlock (uint256): 19001624
Arg [2] : _delightAddress (address): 0x960fE3CBEF6d922eCe9fa3E5611B8f9Ec14DE649
Arg [3] : _sandManAddress (address): 0xf9b4dEFdDe04fe18F5ee6456607F8A2eC9fF6A75
-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000011fabd8
Arg [1] : 000000000000000000000000000000000000000000000000000000000121f118
Arg [2] : 000000000000000000000000960fe3cbef6d922ece9fa3e5611b8f9ec14de649
Arg [3] : 000000000000000000000000f9b4defdde04fe18f5ee6456607f8a2ec9ff6a75
Deployed Bytecode Sourcemap
35783:3639:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36160:23;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38924:491;;;:::i;:::-;;36192:34;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36350:55;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36128:25;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36030:39;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36474:43;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37255:1185;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32558:94;;;:::i;:::-;;38448:466;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31907:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36076:39;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36252:66;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36524;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36412:55;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35941:80;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32807:192;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35853:81;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36160:23;;;;:::o;38924:491::-;32138:12;:10;:12::i;:::-;32127:23;;:7;:5;:7::i;:::-;:23;;;32119:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39022:8:::1;;39007:12;:23;38999:39;;;;;;;;;;;;:::i;:::-;;;;;;;;;39058:22;;;;;;;;;;;39057:23;39049:39;;;;;;;;;;;;:::i;:::-;;;;;;;;;39101:25;39137:14;39130:32;;;39171:4;39130:47;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;39101:76;;39214:1;39194:17;:21;39190:120;;;39245:14;39238:31;;;35892:42;39284:17;39238:64;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;39230:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;39190:120;39346:4;39321:22;;:29;;;;;;;;;;;;;;;;;;39368:39;39389:17;39368:39;;;;;;:::i;:::-;;;;;;;;32198:1;38924:491::o:0;36192:34::-;;;;;;;;;;;;;:::o;36350:55::-;;;;:::o;36128:25::-;;;;:::o;36030:39::-;;;:::o;36474:43::-;36513:4;36474:43;:::o;37255:1185::-;29962:1;30558:7;;:19;;30550:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;29962:1;30691:7;:18;;;;35979:42:::1;37350:25;;:10;:25;;;;37342:40;;;;;;;;;;;;:::i;:::-;;;;;;;;;37417:10;;37401:12;:26;;37393:42;;;;;;;;;;;;:::i;:::-;;;;;;;;;37469:8;;37454:12;:23;37446:39;;;;;;;;;;;;:::i;:::-;;;;;;;;;37525:1;37506:16;;:20;37498:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;37603:1;37560:14;37553:32;;;37594:4;37553:47;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:51;37545:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;37647:1;37631:13;:17;37623:33;;;;;;;;;;;;:::i;:::-;;;;;;;;;37669:29;37744:4;37718:22;;37702:13;:38;;;;:::i;:::-;37701:47;;;;:::i;:::-;37669:79;;37792:21;37773:16;;:40;37769:99;;;37852:16;;37828:40;;37769:99;37913:1;37889:21;:25;37881:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;37967:16;;37942:21;:41;;37935:49;;;;;;;;;;;;38034:14;38027:32;;;38068:4;38027:47;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;38002:21;:72;;37995:80;;;;;;;;;;;;38126:21;38107:16;;:40;;;;:::i;:::-;38088:16;:59;;;;38175:14;38168:31;;;38200:10;38212:21;38168:66;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;38160:82;;;;;;;;;;;;:::i;:::-;;;;;;;;;38270:14;38263:35;;;38299:10;35979:42;38324:13;38263:75;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;38255:91;;;;;;;;;;;;:::i;:::-;;;;;;;;;38364:66;38381:10;38393:13;38408:21;38364:66;;;;;;;;:::i;:::-;;;;;;;;30722:1;29918::::0;30870:7;:22;;;;37255:1185;:::o;32558:94::-;32138:12;:10;:12::i;:::-;32127:23;;:7;:5;:7::i;:::-;:23;;;32119:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;32623:21:::1;32641:1;32623:9;:21::i;:::-;32558:94::o:0;38448:466::-;32138:12;:10;:12::i;:::-;32127:23;;:7;:5;:7::i;:::-;:23;;;32119:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38570:10:::1;;38555:12;:25;38547:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;38622:14;38607:12;:29;38599:45;;;;;;;;;;;;:::i;:::-;;;;;;;;;38680:12;38663:14;:29;38655:45;;;;;;;;;;;;:::i;:::-;;;;;;;;;36589:1;36584:2;36513:4;36569:17;;;;:::i;:::-;:21;;;;:::i;:::-;38735:14;38720:12;:29;;;;:::i;:::-;38719:52;38711:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38805:14;38792:10;:27;;;;38841:12;38830:8;:23;;;;38871:35;38885:10;;38897:8;;38871:35;;;;;;;:::i;:::-;;;;;;;;38448:466:::0;;:::o;31907:87::-;31953:7;31980:6;;;;;;;;;;;31973:13;;31907:87;:::o;36076:39::-;;;:::o;36252:66::-;;;;:::o;36524:::-;36589:1;36584:2;36513:4;36569:17;;;;:::i;:::-;:21;;;;:::i;:::-;36524:66;:::o;36412:55::-;;;;:::o;35941:80::-;35979:42;35941:80;:::o;32807:192::-;32138:12;:10;:12::i;:::-;32127:23;;:7;:5;:7::i;:::-;:23;;;32119:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;32916:1:::1;32896:22;;:8;:22;;;;32888:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;32972:19;32982:8;32972:9;:19::i;:::-;32807:192:::0;:::o;35853:81::-;35892:42;35853:81;:::o;4161:98::-;4214:7;4241:10;4234:17;;4161:98;:::o;33007:173::-;33063:16;33082:6;;;;;;;;;;;33063:25;;33108:8;33099:6;;:17;;;;;;;;;;;;;;;;;;33163:8;33132:40;;33153:8;33132:40;;;;;;;;;;;;33007:173;;:::o;7:139:1:-;53:5;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;59:87;;;;:::o;152:137::-;206:5;237:6;231:13;222:22;;253:30;277:5;253:30;:::i;:::-;212:77;;;;:::o;295:139::-;341:5;379:6;366:20;357:29;;395:33;422:5;395:33;:::i;:::-;347:87;;;;:::o;440:143::-;497:5;528:6;522:13;513:22;;544:33;571:5;544:33;:::i;:::-;503:80;;;;:::o;589:262::-;648:6;697:2;685:9;676:7;672:23;668:32;665:2;;;713:1;710;703:12;665:2;756:1;781:53;826:7;817:6;806:9;802:22;781:53;:::i;:::-;771:63;;727:117;655:196;;;;:::o;857:278::-;924:6;973:2;961:9;952:7;948:23;944:32;941:2;;;989:1;986;979:12;941:2;1032:1;1057:61;1110:7;1101:6;1090:9;1086:22;1057:61;:::i;:::-;1047:71;;1003:125;931:204;;;;:::o;1141:262::-;1200:6;1249:2;1237:9;1228:7;1224:23;1220:32;1217:2;;;1265:1;1262;1255:12;1217:2;1308:1;1333:53;1378:7;1369:6;1358:9;1354:22;1333:53;:::i;:::-;1323:63;;1279:117;1207:196;;;;:::o;1409:284::-;1479:6;1528:2;1516:9;1507:7;1503:23;1499:32;1496:2;;;1544:1;1541;1534:12;1496:2;1587:1;1612:64;1668:7;1659:6;1648:9;1644:22;1612:64;:::i;:::-;1602:74;;1558:128;1486:207;;;;:::o;1699:407::-;1767:6;1775;1824:2;1812:9;1803:7;1799:23;1795:32;1792:2;;;1840:1;1837;1830:12;1792:2;1883:1;1908:53;1953:7;1944:6;1933:9;1929:22;1908:53;:::i;:::-;1898:63;;1854:117;2010:2;2036:53;2081:7;2072:6;2061:9;2057:22;2036:53;:::i;:::-;2026:63;;1981:118;1782:324;;;;;:::o;2112:118::-;2199:24;2217:5;2199:24;:::i;:::-;2194:3;2187:37;2177:53;;:::o;2236:109::-;2317:21;2332:5;2317:21;:::i;:::-;2312:3;2305:34;2295:50;;:::o;2351:365::-;2493:3;2514:66;2578:1;2573:3;2514:66;:::i;:::-;2507:73;;2589:93;2678:3;2589:93;:::i;:::-;2707:2;2702:3;2698:12;2691:19;;2497:219;;;:::o;2722:366::-;2864:3;2885:67;2949:2;2944:3;2885:67;:::i;:::-;2878:74;;2961:93;3050:3;2961:93;:::i;:::-;3079:2;3074:3;3070:12;3063:19;;2868:220;;;:::o;3094:365::-;3236:3;3257:66;3321:1;3316:3;3257:66;:::i;:::-;3250:73;;3332:93;3421:3;3332:93;:::i;:::-;3450:2;3445:3;3441:12;3434:19;;3240:219;;;:::o;3465:365::-;3607:3;3628:66;3692:1;3687:3;3628:66;:::i;:::-;3621:73;;3703:93;3792:3;3703:93;:::i;:::-;3821:2;3816:3;3812:12;3805:19;;3611:219;;;:::o;3836:365::-;3978:3;3999:66;4063:1;4058:3;3999:66;:::i;:::-;3992:73;;4074:93;4163:3;4074:93;:::i;:::-;4192:2;4187:3;4183:12;4176:19;;3982:219;;;:::o;4207:365::-;4349:3;4370:66;4434:1;4429:3;4370:66;:::i;:::-;4363:73;;4445:93;4534:3;4445:93;:::i;:::-;4563:2;4558:3;4554:12;4547:19;;4353:219;;;:::o;4578:365::-;4720:3;4741:66;4805:1;4800:3;4741:66;:::i;:::-;4734:73;;4816:93;4905:3;4816:93;:::i;:::-;4934:2;4929:3;4925:12;4918:19;;4724:219;;;:::o;4949:365::-;5091:3;5112:66;5176:1;5171:3;5112:66;:::i;:::-;5105:73;;5187:93;5276:3;5187:93;:::i;:::-;5305:2;5300:3;5296:12;5289:19;;5095:219;;;:::o;5320:365::-;5462:3;5483:66;5547:1;5542:3;5483:66;:::i;:::-;5476:73;;5558:93;5647:3;5558:93;:::i;:::-;5676:2;5671:3;5667:12;5660:19;;5466:219;;;:::o;5691:365::-;5833:3;5854:66;5918:1;5913:3;5854:66;:::i;:::-;5847:73;;5929:93;6018:3;5929:93;:::i;:::-;6047:2;6042:3;6038:12;6031:19;;5837:219;;;:::o;6062:366::-;6204:3;6225:67;6289:2;6284:3;6225:67;:::i;:::-;6218:74;;6301:93;6390:3;6301:93;:::i;:::-;6419:2;6414:3;6410:12;6403:19;;6208:220;;;:::o;6434:365::-;6576:3;6597:66;6661:1;6656:3;6597:66;:::i;:::-;6590:73;;6672:93;6761:3;6672:93;:::i;:::-;6790:2;6785:3;6781:12;6774:19;;6580:219;;;:::o;6805:365::-;6947:3;6968:66;7032:1;7027:3;6968:66;:::i;:::-;6961:73;;7043:93;7132:3;7043:93;:::i;:::-;7161:2;7156:3;7152:12;7145:19;;6951:219;;;:::o;7176:365::-;7318:3;7339:66;7403:1;7398:3;7339:66;:::i;:::-;7332:73;;7414:93;7503:3;7414:93;:::i;:::-;7532:2;7527:3;7523:12;7516:19;;7322:219;;;:::o;7547:365::-;7689:3;7710:66;7774:1;7769:3;7710:66;:::i;:::-;7703:73;;7785:93;7874:3;7785:93;:::i;:::-;7903:2;7898:3;7894:12;7887:19;;7693:219;;;:::o;7918:365::-;8060:3;8081:66;8145:1;8140:3;8081:66;:::i;:::-;8074:73;;8156:93;8245:3;8156:93;:::i;:::-;8274:2;8269:3;8265:12;8258:19;;8064:219;;;:::o;8289:366::-;8431:3;8452:67;8516:2;8511:3;8452:67;:::i;:::-;8445:74;;8528:93;8617:3;8528:93;:::i;:::-;8646:2;8641:3;8637:12;8630:19;;8435:220;;;:::o;8661:118::-;8748:24;8766:5;8748:24;:::i;:::-;8743:3;8736:37;8726:53;;:::o;8785:222::-;8878:4;8916:2;8905:9;8901:18;8893:26;;8929:71;8997:1;8986:9;8982:17;8973:6;8929:71;:::i;:::-;8883:124;;;;:::o;9013:442::-;9162:4;9200:2;9189:9;9185:18;9177:26;;9213:71;9281:1;9270:9;9266:17;9257:6;9213:71;:::i;:::-;9294:72;9362:2;9351:9;9347:18;9338:6;9294:72;:::i;:::-;9376;9444:2;9433:9;9429:18;9420:6;9376:72;:::i;:::-;9167:288;;;;;;:::o;9461:332::-;9582:4;9620:2;9609:9;9605:18;9597:26;;9633:71;9701:1;9690:9;9686:17;9677:6;9633:71;:::i;:::-;9714:72;9782:2;9771:9;9767:18;9758:6;9714:72;:::i;:::-;9587:206;;;;;:::o;9799:442::-;9948:4;9986:2;9975:9;9971:18;9963:26;;9999:71;10067:1;10056:9;10052:17;10043:6;9999:71;:::i;:::-;10080:72;10148:2;10137:9;10133:18;10124:6;10080:72;:::i;:::-;10162;10230:2;10219:9;10215:18;10206:6;10162:72;:::i;:::-;9953:288;;;;;;:::o;10247:210::-;10334:4;10372:2;10361:9;10357:18;10349:26;;10385:65;10447:1;10436:9;10432:17;10423:6;10385:65;:::i;:::-;10339:118;;;;:::o;10463:419::-;10629:4;10667:2;10656:9;10652:18;10644:26;;10716:9;10710:4;10706:20;10702:1;10691:9;10687:17;10680:47;10744:131;10870:4;10744:131;:::i;:::-;10736:139;;10634:248;;;:::o;10888:419::-;11054:4;11092:2;11081:9;11077:18;11069:26;;11141:9;11135:4;11131:20;11127:1;11116:9;11112:17;11105:47;11169:131;11295:4;11169:131;:::i;:::-;11161:139;;11059:248;;;:::o;11313:419::-;11479:4;11517:2;11506:9;11502:18;11494:26;;11566:9;11560:4;11556:20;11552:1;11541:9;11537:17;11530:47;11594:131;11720:4;11594:131;:::i;:::-;11586:139;;11484:248;;;:::o;11738:419::-;11904:4;11942:2;11931:9;11927:18;11919:26;;11991:9;11985:4;11981:20;11977:1;11966:9;11962:17;11955:47;12019:131;12145:4;12019:131;:::i;:::-;12011:139;;11909:248;;;:::o;12163:419::-;12329:4;12367:2;12356:9;12352:18;12344:26;;12416:9;12410:4;12406:20;12402:1;12391:9;12387:17;12380:47;12444:131;12570:4;12444:131;:::i;:::-;12436:139;;12334:248;;;:::o;12588:419::-;12754:4;12792:2;12781:9;12777:18;12769:26;;12841:9;12835:4;12831:20;12827:1;12816:9;12812:17;12805:47;12869:131;12995:4;12869:131;:::i;:::-;12861:139;;12759:248;;;:::o;13013:419::-;13179:4;13217:2;13206:9;13202:18;13194:26;;13266:9;13260:4;13256:20;13252:1;13241:9;13237:17;13230:47;13294:131;13420:4;13294:131;:::i;:::-;13286:139;;13184:248;;;:::o;13438:419::-;13604:4;13642:2;13631:9;13627:18;13619:26;;13691:9;13685:4;13681:20;13677:1;13666:9;13662:17;13655:47;13719:131;13845:4;13719:131;:::i;:::-;13711:139;;13609:248;;;:::o;13863:419::-;14029:4;14067:2;14056:9;14052:18;14044:26;;14116:9;14110:4;14106:20;14102:1;14091:9;14087:17;14080:47;14144:131;14270:4;14144:131;:::i;:::-;14136:139;;14034:248;;;:::o;14288:419::-;14454:4;14492:2;14481:9;14477:18;14469:26;;14541:9;14535:4;14531:20;14527:1;14516:9;14512:17;14505:47;14569:131;14695:4;14569:131;:::i;:::-;14561:139;;14459:248;;;:::o;14713:419::-;14879:4;14917:2;14906:9;14902:18;14894:26;;14966:9;14960:4;14956:20;14952:1;14941:9;14937:17;14930:47;14994:131;15120:4;14994:131;:::i;:::-;14986:139;;14884:248;;;:::o;15138:419::-;15304:4;15342:2;15331:9;15327:18;15319:26;;15391:9;15385:4;15381:20;15377:1;15366:9;15362:17;15355:47;15419:131;15545:4;15419:131;:::i;:::-;15411:139;;15309:248;;;:::o;15563:419::-;15729:4;15767:2;15756:9;15752:18;15744:26;;15816:9;15810:4;15806:20;15802:1;15791:9;15787:17;15780:47;15844:131;15970:4;15844:131;:::i;:::-;15836:139;;15734:248;;;:::o;15988:419::-;16154:4;16192:2;16181:9;16177:18;16169:26;;16241:9;16235:4;16231:20;16227:1;16216:9;16212:17;16205:47;16269:131;16395:4;16269:131;:::i;:::-;16261:139;;16159:248;;;:::o;16413:419::-;16579:4;16617:2;16606:9;16602:18;16594:26;;16666:9;16660:4;16656:20;16652:1;16641:9;16637:17;16630:47;16694:131;16820:4;16694:131;:::i;:::-;16686:139;;16584:248;;;:::o;16838:419::-;17004:4;17042:2;17031:9;17027:18;17019:26;;17091:9;17085:4;17081:20;17077:1;17066:9;17062:17;17055:47;17119:131;17245:4;17119:131;:::i;:::-;17111:139;;17009:248;;;:::o;17263:419::-;17429:4;17467:2;17456:9;17452:18;17444:26;;17516:9;17510:4;17506:20;17502:1;17491:9;17487:17;17480:47;17544:131;17670:4;17544:131;:::i;:::-;17536:139;;17434:248;;;:::o;17688:222::-;17781:4;17819:2;17808:9;17804:18;17796:26;;17832:71;17900:1;17889:9;17885:17;17876:6;17832:71;:::i;:::-;17786:124;;;;:::o;17916:332::-;18037:4;18075:2;18064:9;18060:18;18052:26;;18088:71;18156:1;18145:9;18141:17;18132:6;18088:71;:::i;:::-;18169:72;18237:2;18226:9;18222:18;18213:6;18169:72;:::i;:::-;18042:206;;;;;:::o;18254:169::-;18338:11;18372:6;18367:3;18360:19;18412:4;18407:3;18403:14;18388:29;;18350:73;;;;:::o;18429:185::-;18469:1;18486:20;18504:1;18486:20;:::i;:::-;18481:25;;18520:20;18538:1;18520:20;:::i;:::-;18515:25;;18559:1;18549:2;;18564:18;;:::i;:::-;18549:2;18606:1;18603;18599:9;18594:14;;18471:143;;;;:::o;18620:348::-;18660:7;18683:20;18701:1;18683:20;:::i;:::-;18678:25;;18717:20;18735:1;18717:20;:::i;:::-;18712:25;;18905:1;18837:66;18833:74;18830:1;18827:81;18822:1;18815:9;18808:17;18804:105;18801:2;;;18912:18;;:::i;:::-;18801:2;18960:1;18957;18953:9;18942:20;;18668:300;;;;:::o;18974:191::-;19014:4;19034:20;19052:1;19034:20;:::i;:::-;19029:25;;19068:20;19086:1;19068:20;:::i;:::-;19063:25;;19107:1;19104;19101:8;19098:2;;;19112:18;;:::i;:::-;19098:2;19157:1;19154;19150:9;19142:17;;19019:146;;;;:::o;19171:96::-;19208:7;19237:24;19255:5;19237:24;:::i;:::-;19226:35;;19216:51;;;:::o;19273:90::-;19307:7;19350:5;19343:13;19336:21;19325:32;;19315:48;;;:::o;19369:126::-;19406:7;19446:42;19439:5;19435:54;19424:65;;19414:81;;;:::o;19501:77::-;19538:7;19567:5;19556:16;;19546:32;;;:::o;19584:180::-;19632:77;19629:1;19622:88;19729:4;19726:1;19719:15;19753:4;19750:1;19743:15;19770:180;19818:77;19815:1;19808:88;19915:4;19912:1;19905:15;19939:4;19936:1;19929:15;19956:153;20096:5;20092:1;20084:6;20080:14;20073:29;20062:47;:::o;20115:225::-;20255:34;20251:1;20243:6;20239:14;20232:58;20324:8;20319:2;20311:6;20307:15;20300:33;20221:119;:::o;20346:153::-;20486:5;20482:1;20474:6;20470:14;20463:29;20452:47;:::o;20505:153::-;20645:5;20641:1;20633:6;20629:14;20622:29;20611:47;:::o;20664:152::-;20804:4;20800:1;20792:6;20788:14;20781:28;20770:46;:::o;20822:153::-;20962:5;20958:1;20950:6;20946:14;20939:29;20928:47;:::o;20981:153::-;21121:5;21117:1;21109:6;21105:14;21098:29;21087:47;:::o;21140:153::-;21280:5;21276:1;21268:6;21264:14;21257:29;21246:47;:::o;21299:153::-;21439:5;21435:1;21427:6;21423:14;21416:29;21405:47;:::o;21458:153::-;21598:5;21594:1;21586:6;21582:14;21575:29;21564:47;:::o;21617:182::-;21757:34;21753:1;21745:6;21741:14;21734:58;21723:76;:::o;21805:153::-;21945:5;21941:1;21933:6;21929:14;21922:29;21911:47;:::o;21964:153::-;22104:5;22100:1;22092:6;22088:14;22081:29;22070:47;:::o;22123:153::-;22263:5;22259:1;22251:6;22247:14;22240:29;22229:47;:::o;22282:153::-;22422:5;22418:1;22410:6;22406:14;22399:29;22388:47;:::o;22441:153::-;22581:5;22577:1;22569:6;22565:14;22558:29;22547:47;:::o;22600:181::-;22740:33;22736:1;22728:6;22724:14;22717:57;22706:75;:::o;22787:122::-;22860:24;22878:5;22860:24;:::i;:::-;22853:5;22850:35;22840:2;;22899:1;22896;22889:12;22840:2;22830:79;:::o;22915:116::-;22985:21;23000:5;22985:21;:::i;:::-;22978:5;22975:32;22965:2;;23021:1;23018;23011:12;22965:2;22955:76;:::o;23037:122::-;23110:24;23128:5;23110:24;:::i;:::-;23103:5;23100:35;23090:2;;23149:1;23146;23139:12;23090:2;23080:79;:::o
Swarm Source
ipfs://a43999b6d6ed13e3d9c7c49744ac1781cc6b62228d11340b3df8b8f8fadf0d63
Loading...
Loading
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.