ERC-20
Overview
Max Total Supply
78 qRoya
Holders
49
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 0 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
RoyaleQueenStakingLot
Compiler Version
v0.6.12+commit.27d51765
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2021-04-28 */ // SPDX-License-Identifier: GPL-3.0-or-later pragma solidity ^0.6.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 GSN 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 payable) { return msg.sender; } function _msgData() internal view virtual returns (bytes memory) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } interface RoyaNFT { /** * @dev Returns the amount of `id` tokens owned by `account`. */ function balanceOf(address account, uint256 id) external view returns (uint256); /** @notice Transfers `_value` amount of an `_id` from the `_from` address to the `_to` address specified (with safety call). @dev Caller must be approved to manage the tokens being transferred out of the `_from` account (see "Approval" section of the standard). MUST revert if `_to` is the zero address. MUST revert if balance of holder for token `_id` is lower than the `_value` sent. MUST revert on any other error. MUST emit the `TransferSingle` event to reflect the balance change (see "Safe Transfer Rules" section of the standard). After the above conditions are met, this function MUST check if `_to` is a smart contract (e.g. code size > 0). If so, it MUST call `onERC1155Received` on `_to` and act appropriately (see "Safe Transfer Rules" section of the standard). @param _from Source address @param _to Target address @param _id ID of the token type @param _value Transfer amount @param _data Additional data with no specified format, MUST be sent unaltered in call to `onERC1155Received` on `_to` */ function safeTransferFrom(address _from, address _to, uint256 _id, uint256 _value, bytes calldata _data) external; } // File: @openzeppelin/contracts/token/ERC20/IERC20.sol pragma solidity ^0.6.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/math/SafeMath.sol pragma solidity ^0.6.0; /** * @dev Wrappers over Solidity's arithmetic operations with added overflow * checks. * * Arithmetic operations in Solidity wrap on overflow. This can easily result * in bugs, because programmers usually assume that an overflow raises an * error, which is the standard behavior in high level programming languages. * `SafeMath` restores this intuition by reverting the transaction when an * operation overflows. * * Using this library instead of the unchecked operations eliminates an entire * class of bugs, so it's recommended to use it always. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return sub(a, b, "SafeMath: subtraction overflow"); } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b <= a, errorMessage); uint256 c = a - b; return c; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) { return 0; } uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two unsigned integers. Reverts on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return div(a, b, "SafeMath: division by zero"); } /** * @dev Returns the integer division of two unsigned integers. Reverts with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b > 0, errorMessage); uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return mod(a, b, "SafeMath: modulo by zero"); } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts with custom message when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b != 0, errorMessage); return a % b; } } // File: @openzeppelin/contracts/utils/Address.sol pragma solidity ^0.6.2; /** * @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) { // According to EIP-1052, 0x0 is the value returned for not-yet created accounts // and 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470 is returned // for accounts without code, i.e. `keccak256('')` bytes32 codehash; bytes32 accountHash = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470; // solhint-disable-next-line no-inline-assembly assembly { codehash := extcodehash(account) } return (codehash != accountHash && codehash != 0x0); } /** * @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"); // solhint-disable-next-line avoid-low-level-calls, avoid-call-value (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"); return _functionCallWithValue(target, data, value, errorMessage); } function _functionCallWithValue(address target, bytes memory data, uint256 weiValue, string memory errorMessage) private returns (bytes memory) { require(isContract(target), "Address: call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.call{ value: weiValue }(data); 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 // solhint-disable-next-line no-inline-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/token/ERC20/ERC20.sol pragma solidity ^0.6.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 { using SafeMath for uint256; using Address for address; mapping (address => uint256) private _balances; mapping (address => mapping (address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; uint8 private _decimals; bool private transferrable; /** * @dev Sets the values for {name} and {symbol}, initializes {decimals} with * a default value of 18. * * To select a different value for {decimals}, use {_setupDecimals}. * * All three of these values are immutable: they can only be set once during * construction. */ constructor (string memory name, string memory symbol) public { _name = name; _symbol = symbol; _decimals = 18; } /** * @dev Returns the name of the token. */ function name() public view returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view 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 {_setupDecimals} is * called. * * 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 returns (uint8) { return _decimals; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view 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); _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance")); 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].add(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) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero")); return true; } /** * @dev Moves tokens `amount` from `sender` to `recipient`. * * This is 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(transferrable, "ERC20: Not transferrable"); require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance"); _balances[recipient] = _balances[recipient].add(amount); emit Transfer(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 * * - `to` 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 = _totalSupply.add(amount); _balances[account] = _balances[account].add(amount); emit Transfer(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); _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance"); _totalSupply = _totalSupply.sub(amount); emit Transfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner`s tokens. * * This is 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 Sets {decimals} to a value other than the default one of 18. * * WARNING: This function should only be called from the constructor. Most * applications that interact with token contracts will not expect * {decimals} to ever change, and may work incorrectly if it does. */ function _setupDecimals(uint8 decimals_) internal { _decimals = decimals_; } /** * @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 to 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 { } } // File: @openzeppelin/contracts/token/ERC20/SafeERC20.sol pragma solidity ^0.6.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 SafeMath for uint256; 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' // solhint-disable-next-line max-line-length 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).add(value); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } function safeDecreaseAllowance(IERC20 token, address spender, uint256 value) internal { uint256 newAllowance = token.allowance(address(this), spender).sub(value, "SafeERC20: decreased allowance below zero"); _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 // solhint-disable-next-line max-line-length require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed"); } } } // File: @openzeppelin/contracts/access/Ownable.sol pragma solidity ^0.6.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. */ contract Ownable is Context { address private _owner; address private _nominatedOwner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); event OwnershipNominated(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor (address _multisigWallet) internal { _owner = _multisigWallet; emit OwnershipTransferred(address(0), _multisigWallet); } /** * @dev Returns the address of the current owner. */ function owner() public view 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. */ /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function nominateNewOwner(address _wallet) external onlyOwner { _nominatedOwner = _wallet; emit OwnershipNominated(_owner,_wallet); } function acceptOwnership() external { require(msg.sender == _nominatedOwner, "You must be nominated before you can accept ownership"); emit OwnershipTransferred(_owner, _nominatedOwner); _owner = _nominatedOwner; _nominatedOwner = address(0); } } // File: contracts/Interfaces/Interfaces.sol pragma solidity 0.6.12; interface IStakingLot { event Claim(address indexed acount, uint amount); event Profit(uint amount); function claimProfit() external returns (uint profit); function buy(uint amount) external; function sell(uint amount) external; function profitOf(address account) external view returns (uint); } interface IStakingLotERC20 is IStakingLot { function sendProfit(uint amount) external; } contract CommonConstants { bytes4 constant internal ERC1155_ACCEPTED = 0xf23a6e61; // bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)")) bytes4 constant internal ERC1155_BATCH_ACCEPTED = 0xbc197c81; // bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)")) } contract ERC1155Receiver is CommonConstants { // Keep values from last received contract. bool shouldReject; bytes public lastData; address public lastOperator; address public lastFrom; uint256 public lastId; uint256 public lastValue; function onERC1155Received(address _operator, address _from, uint256 _id, uint256 _value, bytes calldata _data) external returns(bytes4) { lastOperator = _operator; lastFrom = _from; lastId = _id; lastValue = _value; lastData = _data; if (shouldReject == true) { revert("onERC1155Received: transfer not accepted"); } else { return ERC1155_ACCEPTED; } } function onERC1155BatchReceived(address _operator, address _from, uint256[] calldata _ids, uint256[] calldata _values, bytes calldata _data) external returns(bytes4) { lastOperator = _operator; lastFrom = _from; lastId = _ids[0]; lastValue = _values[0]; lastData = _data; if (shouldReject == true) { revert("onERC1155BatchReceived: transfer not accepted"); } else { return ERC1155_BATCH_ACCEPTED; } } // ERC165 interface support function supportsInterface(bytes4 interfaceID) external pure returns (bool) { return interfaceID == 0x01ffc9a7 || // ERC165 interfaceID == 0x4e2312e0; // ERC1155_ACCEPTED ^ ERC1155_BATCH_ACCEPTED; } } // For the future integrations of non-standard ERC20 tokens such as USDT and others // interface ERC20Incorrect { // event Transfer(address indexed from, address indexed to, uint256 value); // // event Approval(address indexed owner, address indexed spender, uint256 value); // // function transfer(address to, uint256 value) external; // // function transferFrom( // address from, // address to, // uint256 value // ) external; // // function approve(address spender, uint256 value) external; // function balanceOf(address who) external view returns (uint256); // function allowance(address owner, address spender) external view returns (uint256); // // } pragma solidity 0.6.12; abstract contract StakingLot is ERC20, IStakingLot, ERC1155Receiver, Ownable { using SafeERC20 for IERC20; using SafeMath for uint; IERC20 public immutable ROYA; uint public constant MAX_SUPPLY = 2000; uint public constant LOT_PRICE = 10000 * 10**18; uint public constant DISCOUNTED_LOT_PRICE = 7200 * 10**18; uint internal constant ACCURACY = 1e30; address payable public immutable FALLBACK_RECIPIENT; RoyaNFT RNFT; uint public totalProfit = 0; mapping(address => uint) internal lastProfit; mapping(address => uint) internal savedProfit; uint256 public lockupPeriod = 691200; mapping(address => uint256) public lastBoughtTimestamp; mapping(address => bool) public _revertTransfersInLockUpPeriod; mapping(address => mapping (uint256 => bool)) public hasLockedNFT; mapping(address => uint256) public discountedLots; bool public allowNFTDiscounts; constructor(ERC20 _token, string memory name, string memory short, RoyaNFT _rnft, address _multisigWallet) public ERC20(name, short) Ownable(_multisigWallet) { ROYA = _token; _setupDecimals(0); FALLBACK_RECIPIENT = msg.sender; RNFT = _rnft; allowNFTDiscounts = true; } function claimProfit() external override returns (uint profit) { profit = saveProfit(msg.sender); require(profit > 0, "Zero profit"); savedProfit[msg.sender] = 0; _transferProfit(profit); emit Claim(msg.sender, profit); } function buy(uint amount) external override { lastBoughtTimestamp[msg.sender] = block.timestamp; require(amount > 0, "Amount is zero"); require(totalSupply() + amount <= MAX_SUPPLY); _mint(msg.sender, amount); ROYA.safeTransferFrom(msg.sender, address(this), amount.mul(LOT_PRICE)); } function buyWithNFT(uint256 amount, uint256 id) external{ lastBoughtTimestamp[msg.sender] = block.timestamp; require(allowNFTDiscounts, "NFT discounts disabled"); require(amount > 0, "Amount is zero"); require(id >= 1 && id <= 72, "Should be Queen NFT"); require(RNFT.balanceOf(msg.sender, id) > 0,"No NFT to claim discount"); require(totalSupply() + amount <= MAX_SUPPLY); _mint(msg.sender, amount); hasLockedNFT[msg.sender][id] = true; amount = amount - 1; RNFT.safeTransferFrom(msg.sender, address(this), id, 1, '0x'); ROYA.safeTransferFrom(msg.sender, address(this), amount.mul(LOT_PRICE).add(DISCOUNTED_LOT_PRICE)); discountedLots[msg.sender] += 1; } function sell(uint amount) external override lockupFree { require(balanceOf(msg.sender) - discountedLots[msg.sender] >= amount,"NFT locked in contract or Invalid Amount"); _burn(msg.sender, amount); ROYA.safeTransfer(msg.sender, amount.mul(LOT_PRICE)); } function sellWithNFT(uint amount, uint256 id) external lockupFree { require(hasLockedNFT[msg.sender][id],"This NFT is not locked"); require(amount>0,"Invalid amount."); require(amount-1<=balanceOf(msg.sender).sub(discountedLots[msg.sender]),"Invalid amount."); RNFT.safeTransferFrom(address(this), msg.sender, id, 1, '0x'); hasLockedNFT[msg.sender][id] = false; _burn(msg.sender, amount); amount =amount - 1; discountedLots[msg.sender] -= 1; ROYA.safeTransfer(msg.sender, amount.mul(LOT_PRICE).add(DISCOUNTED_LOT_PRICE)); } /** * @notice Used for ... */ function revertTransfersInLockUpPeriod(bool value) external { _revertTransfersInLockUpPeriod[msg.sender] = value; } function setAllowNFTDiscounts(bool value) external onlyOwner { allowNFTDiscounts = value; } function profitOf(address account) external view override returns (uint) { return savedProfit[account].add(getUnsaved(account)); } function getUnsaved(address account) internal view returns (uint profit) { return totalProfit.sub(lastProfit[account]).mul(balanceOf(account)).div(ACCURACY); } function getLockedNFTs(address account) external view returns (uint[] memory) { uint256[] memory s= new uint256[](72); uint256 j=0; for(uint i = 1; i<=72; i++){ if(hasLockedNFT[account][i]){ s[j++]=i; } } return s; } function saveProfit(address account) internal returns (uint profit) { uint unsaved = getUnsaved(account); lastProfit[account] = totalProfit; profit = savedProfit[account].add(unsaved); savedProfit[account] = profit; } function _beforeTokenTransfer(address from, address to, uint256 amount) internal override { require(amount>0,"Invalid amount"); if (from != address(0)) saveProfit(from); if (to != address(0)) saveProfit(to); if ( lastBoughtTimestamp[from].add(lockupPeriod) > block.timestamp && lastBoughtTimestamp[from] > lastBoughtTimestamp[to] ) { require( !_revertTransfersInLockUpPeriod[to], "the recipient does not accept blocked funds" ); lastBoughtTimestamp[to] = lastBoughtTimestamp[from]; } } function _transferProfit(uint amount) internal virtual; modifier lockupFree { require( lastBoughtTimestamp[msg.sender].add(lockupPeriod) <= block.timestamp, "Action suspended due to lockup" ); _; } } pragma solidity 0.6.12; contract RoyaleQueenStakingLot is StakingLot, IStakingLotERC20 { using SafeERC20 for IERC20; using SafeMath for uint; IERC20 public immutable USDC; constructor(ERC20 _token, ERC20 usdc, RoyaNFT rnft, address _multisigWallet) public StakingLot(_token, "QROYA", "qRoya", rnft, _multisigWallet) { USDC = usdc; } function sendProfit(uint amount) external override { uint _totalSupply = totalSupply(); if (_totalSupply > 0) { totalProfit += amount.mul(ACCURACY) / _totalSupply; USDC.safeTransferFrom(msg.sender, address(this), amount); emit Profit(amount); } else { USDC.safeTransferFrom(msg.sender, FALLBACK_RECIPIENT, amount); } } function _transferProfit(uint amount) internal override { USDC.safeTransfer(msg.sender, amount); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"contract ERC20","name":"_token","type":"address"},{"internalType":"contract ERC20","name":"usdc","type":"address"},{"internalType":"contract RoyaNFT","name":"rnft","type":"address"},{"internalType":"address","name":"_multisigWallet","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"acount","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Claim","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipNominated","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":"uint256","name":"amount","type":"uint256"}],"name":"Profit","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"DISCOUNTED_LOT_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"FALLBACK_RECIPIENT","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"LOT_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ROYA","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"USDC","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_revertTransfersInLockUpPeriod","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"acceptOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"allowNFTDiscounts","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"buy","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"buyWithNFT","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"claimProfit","outputs":[{"internalType":"uint256","name":"profit","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"discountedLots","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"getLockedNFTs","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"hasLockedNFT","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"lastBoughtTimestamp","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastData","outputs":[{"internalType":"bytes","name":"","type":"bytes"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastFrom","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastOperator","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastValue","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lockupPeriod","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_wallet","type":"address"}],"name":"nominateNewOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_operator","type":"address"},{"internalType":"address","name":"_from","type":"address"},{"internalType":"uint256[]","name":"_ids","type":"uint256[]"},{"internalType":"uint256[]","name":"_values","type":"uint256[]"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"onERC1155BatchReceived","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_operator","type":"address"},{"internalType":"address","name":"_from","type":"address"},{"internalType":"uint256","name":"_id","type":"uint256"},{"internalType":"uint256","name":"_value","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"onERC1155Received","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"profitOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"value","type":"bool"}],"name":"revertTransfersInLockUpPeriod","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"sell","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"sellWithNFT","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"sendProfit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"value","type":"bool"}],"name":"setAllowNFTDiscounts","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceID","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalProfit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60e06040526000600e55620a8c006011553480156200001d57600080fd5b5060405162004d8d38038062004d8d833981810160405260808110156200004357600080fd5b8101908080519060200190929190805190602001909291908051906020019092919080519060200190929190505050836040518060400160405280600581526020017f51524f59410000000000000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f71526f796100000000000000000000000000000000000000000000000000000081525084848084848160039080519060200190620000fc92919062000311565b5080600490805190602001906200011592919062000311565b506012600560006101000a81548160ff021916908360ff160217905550505080600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3508473ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff1660601b815250506200021a6000620002f360201b60201c565b3373ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff1660601b8152505081600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001601660006101000a81548160ff02191690831515021790555050505050508273ffffffffffffffffffffffffffffffffffffffff1660c08173ffffffffffffffffffffffffffffffffffffffff1660601b8152505050505050620003b7565b80600560006101000a81548160ff021916908360ff16021790555050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200035457805160ff191683800117855562000385565b8280016001018555821562000385579182015b828111156200038457825182559160200191906001019062000367565b5b50905062000394919062000398565b5090565b5b80821115620003b357600081600090555060010162000399565b5090565b60805160601c60a05160601c60c05160601c61497862000415600039806117c5528061186e5280611c735280613e865250806113cd528061184c5250806118f852806121b1528061287d5280612b855280612dec52506149786000f3fe608060405234801561001057600080fd5b506004361061027e5760003560e01c806379ba50971161015c578063a6737291116100ce578063dd62ed3e11610087578063dd62ed3e14610e31578063e4849b3214610ea9578063ee947a7c14610ed7578063f011a7af14610ef5578063f23a6e6114610f13578063f8bac599146110135761027e565b8063a673729114610b5b578063a8cad73314610bb3578063a9059cbb14610beb578063bc197c8114610c4f578063c1292cc314610de5578063d96a094a14610e035761027e565b80638da5cb5b116101205780638da5cb5b146109ca57806392c2a478146109fe57806394c0991714610a3657806395d89b4114610a54578063a457c2d714610ad7578063a5b21c1f14610b3b5761027e565b806379ba5097146108a157806380443378146108ab57806385ae0317146108df578063860015191461097857806389a30271146109965761027e565b806332cb6b0c116101f557806354198ce9116101b957806354198ce9146107035780635fc0d2dd1461075b5780636b42539d146107895780636eb3cd49146107e1578063709ccacb1461081557806370a08231146108495761027e565b806332cb6b0c146105eb57806339509351146106095780633f40406c1461066d57806343183834146106c75780634ed37f02146106e55761027e565b806318160ddd1161024757806318160ddd146104945780631b016373146104b257806323b872dd146104e65780632839b0371461056a5780632ba591751461059a578063313ce567146105ca5761027e565b80626e75ec1461028357806301ffc9a71461030657806306fdde0314610369578063095ea7b3146103ec5780631627540c14610450575b600080fd5b61028b611077565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156102cb5780820151818401526020810190506102b0565b50505050905090810190601f1680156102f85780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6103516004803603602081101561031c57600080fd5b8101908080357bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19169060200190929190505050611115565b60405180821515815260200191505060405180910390f35b610371611177565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156103b1578082015181840152602081019050610396565b50505050905090810190601f1680156103de5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6104386004803603604081101561040257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611219565b60405180821515815260200191505060405180910390f35b6104926004803603602081101561046657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611237565b005b61049c6113c1565b6040518082815260200191505060405180910390f35b6104ba6113cb565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610552600480360360608110156104fc57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506113ef565b60405180821515815260200191505060405180910390f35b6105986004803603602081101561058057600080fd5b810190808035151590602001909291905050506114c8565b005b6105c8600480360360208110156105b057600080fd5b810190808035151590602001909291905050506115af565b005b6105d2611609565b604051808260ff16815260200191505060405180910390f35b6105f3611620565b6040518082815260200191505060405180910390f35b6106556004803603604081101561061f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611626565b60405180821515815260200191505060405180910390f35b6106af6004803603602081101561068357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506116d9565b60405180821515815260200191505060405180910390f35b6106cf6116f9565b6040518082815260200191505060405180910390f35b6106ed6116ff565b6040518082815260200191505060405180910390f35b6107456004803603602081101561071957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061170d565b6040518082815260200191505060405180910390f35b6107876004803603602081101561077157600080fd5b8101908080359060200190929190505050611770565b005b6107cb6004803603602081101561079f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506118b8565b6040518082815260200191505060405180910390f35b6107e96118d0565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b61081d6118f6565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b61088b6004803603602081101561085f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061191a565b6040518082815260200191505060405180910390f35b6108a9611962565b005b6108b3611b4d565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610921600480360360208110156108f557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611b73565b6040518080602001828103825283818151815260200191508051906020019060200280838360005b83811015610964578082015181840152602081019050610949565b505050509050019250505060405180910390f35b610980611c6b565b6040518082815260200191505060405180910390f35b61099e611c71565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6109d2611c95565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610a3460048036036040811015610a1457600080fd5b810190808035906020019092919080359060200190929190505050611cbf565b005b610a3e6121f9565b6040518082815260200191505060405180910390f35b610a5c612207565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610a9c578082015181840152602081019050610a81565b50505050905090810190601f168015610ac95780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610b2360048036036040811015610aed57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506122a9565b60405180821515815260200191505060405180910390f35b610b43612376565b60405180821515815260200191505060405180910390f35b610b9d60048036036020811015610b7157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612389565b6040518082815260200191505060405180910390f35b610be960048036036040811015610bc957600080fd5b8101908080359060200190929190803590602001909291905050506123a1565b005b610c3760048036036040811015610c0157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050612914565b60405180821515815260200191505060405180910390f35b610db0600480360360a0811015610c6557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190640100000000811115610cc257600080fd5b820183602082011115610cd457600080fd5b80359060200191846020830284011164010000000083111715610cf657600080fd5b909192939192939080359060200190640100000000811115610d1757600080fd5b820183602082011115610d2957600080fd5b80359060200191846020830284011164010000000083111715610d4b57600080fd5b909192939192939080359060200190640100000000811115610d6c57600080fd5b820183602082011115610d7e57600080fd5b80359060200191846001830284011164010000000083111715610da057600080fd5b9091929391929390505050612932565b60405180827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200191505060405180910390f35b610ded612a7f565b6040518082815260200191505060405180910390f35b610e2f60048036036020811015610e1957600080fd5b8101908080359060200190929190505050612a85565b005b610e9360048036036040811015610e4757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612bcd565b6040518082815260200191505060405180910390f35b610ed560048036036020811015610ebf57600080fd5b8101908080359060200190929190505050612c54565b005b610edf612e33565b6040518082815260200191505060405180910390f35b610efd612e39565b6040518082815260200191505060405180910390f35b610fde600480360360a0811015610f2957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291908035906020019092919080359060200190640100000000811115610f9a57600080fd5b820183602082011115610fac57600080fd5b80359060200191846001830284011164010000000083111715610fce57600080fd5b9091929391929390505050612f5b565b60405180827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200191505060405180910390f35b61105f6004803603604081101561102957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050613080565b60405180821515815260200191505060405180910390f35b60068054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561110d5780601f106110e25761010080835404028352916020019161110d565b820191906000526020600020905b8154815290600101906020018083116110f057829003601f168201915b505050505081565b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806111705750634e2312e060e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b606060038054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561120f5780601f106111e45761010080835404028352916020019161120f565b820191906000526020600020905b8154815290600101906020018083116111f257829003601f168201915b5050505050905090565b600061122d6112266130af565b84846130b7565b6001905092915050565b61123f6130af565b73ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611301576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f7cbe00258cd5670c808f2116fb86564f7f5717eef219817bc486add91c9ab7ca60405160405180910390a350565b6000600254905090565b7f000000000000000000000000000000000000000000000000000000000000000081565b60006113fc8484846132ae565b6114bd846114086130af565b6114b88560405180606001604052806028815260200161483760289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061146e6130af565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546135f19092919063ffffffff16565b6130b7565b600190509392505050565b6114d06130af565b73ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611592576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80601660006101000a81548160ff02191690831515021790555050565b80601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000600560009054906101000a900460ff16905090565b6107d081565b60006116cf6116336130af565b846116ca85600160006116446130af565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546136b190919063ffffffff16565b6130b7565b6001905092915050565b60136020528060005260406000206000915054906101000a900460ff1681565b600a5481565b69021e19e0c9bab240000081565b600061176961171b83613739565b601060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546136b190919063ffffffff16565b9050919050565b600061177a6113c1565b9050600081111561184657806117a66c0c9f2c9cd04674edea40000000846137cf90919063ffffffff16565b816117ad57fe5b04600e6000828254019250508190555061180a3330847f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff16613855909392919063ffffffff16565b7f357d905f1831209797df4d55d79c5c5bf1d9f7311c976afd05e13d881eab9bc8826040518082815260200191505060405180910390a16118b4565b6118b3337f0000000000000000000000000000000000000000000000000000000000000000847f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff16613855909392919063ffffffff16565b5b5050565b60156020528060005260406000206000915090505481565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611a08576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260358152602001806146fa6035913960400191505060405180910390fd5b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b606080604867ffffffffffffffff81118015611b8e57600080fd5b50604051908082528060200260200182016040528015611bbd5781602001602082028036833780820191505090505b509050600080600190505b60488111611c6057601460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082815260200190815260200160002060009054906101000a900460ff1615611c535780838380600101945081518110611c4657fe5b6020026020010181815250505b8080600101915050611bc8565b508192505050919050565b600e5481565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b42611d14601154601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546136b190919063ffffffff16565b1115611d88576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f416374696f6e2073757370656e6465642064756520746f206c6f636b7570000081525060200191505060405180910390fd5b601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082815260200190815260200160002060009054906101000a900460ff16611e58576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260168152602001807f54686973204e4654206973206e6f74206c6f636b65640000000000000000000081525060200191505060405180910390fd5b60008211611ece576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600f8152602001807f496e76616c696420616d6f756e742e000000000000000000000000000000000081525060200191505060405180910390fd5b611f28601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611f1a3361191a565b61391690919063ffffffff16565b600183031115611fa0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600f8152602001807f496e76616c696420616d6f756e742e000000000000000000000000000000000081525060200191505060405180910390fd5b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f242432a30338460016040518563ffffffff1660e01b8152600401808573ffffffffffffffffffffffffffffffffffffffff1681526020018473ffffffffffffffffffffffffffffffffffffffff16815260200183815260200182815260200180602001828103825260028152602001807f307800000000000000000000000000000000000000000000000000000000000081525060200195505050505050600060405180830381600087803b15801561209357600080fd5b505af11580156120a7573d6000803e3d6000fd5b505050506000601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002060006101000a81548160ff02191690831515021790555061211e3383613960565b6001820391506001601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825403925050819055506121f5336121af69018650127cc3dc8000006121a169021e19e0c9bab2400000876137cf90919063ffffffff16565b6136b190919063ffffffff16565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff16613b249092919063ffffffff16565b5050565b69018650127cc3dc80000081565b606060048054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561229f5780601f106122745761010080835404028352916020019161229f565b820191906000526020600020905b81548152906001019060200180831161228257829003601f168201915b5050505050905090565b600061236c6122b66130af565b846123678560405180606001604052806025815260200161491e60259139600160006122e06130af565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546135f19092919063ffffffff16565b6130b7565b6001905092915050565b601660009054906101000a900460ff1681565b60126020528060005260406000206000915090505481565b42601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550601660009054906101000a900460ff16612467576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260168152602001807f4e465420646973636f756e74732064697361626c65640000000000000000000081525060200191505060405180910390fd5b600082116124dd576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600e8152602001807f416d6f756e74206973207a65726f00000000000000000000000000000000000081525060200191505060405180910390fd5b600181101580156124ef575060488111155b612561576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260138152602001807f53686f756c6420626520517565656e204e46540000000000000000000000000081525060200191505060405180910390fd5b6000600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1662fdd58e33846040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019250505060206040518083038186803b1580156125f357600080fd5b505afa158015612607573d6000803e3d6000fd5b505050506040513d602081101561261d57600080fd5b8101908080519060200190929190505050116126a1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260188152602001807f4e6f204e465420746f20636c61696d20646973636f756e74000000000000000081525060200191505060405180910390fd5b6107d0826126ad6113c1565b0111156126b957600080fd5b6126c33383613bc6565b6001601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002060006101000a81548160ff021916908315150217905550600182039150600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f242432a33308460016040518563ffffffff1660e01b8152600401808573ffffffffffffffffffffffffffffffffffffffff1681526020018473ffffffffffffffffffffffffffffffffffffffff16815260200183815260200182815260200180602001828103825260028152602001807f307800000000000000000000000000000000000000000000000000000000000081525060200195505050505050600060405180830381600087803b15801561282557600080fd5b505af1158015612839573d6000803e3d6000fd5b505050506128c2333061287b69018650127cc3dc80000061286d69021e19e0c9bab2400000886137cf90919063ffffffff16565b6136b190919063ffffffff16565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff16613855909392919063ffffffff16565b6001601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055505050565b60006129286129216130af565b84846132ae565b6001905092915050565b600088600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555087600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550868660008181106129c357fe5b90506020020135600981905550848460008181106129dd57fe5b90506020020135600a819055508282600691906129fb929190614639565b5060011515600560029054906101000a900460ff1615151415612a69576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602d81526020018061472f602d913960400191505060405180910390fd5b63bc197c8160e01b905098975050505050505050565b60095481565b42601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060008111612b3f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600e8152602001807f416d6f756e74206973207a65726f00000000000000000000000000000000000081525060200191505060405180910390fd5b6107d081612b4b6113c1565b011115612b5757600080fd5b612b613382613bc6565b612bca3330612b8369021e19e0c9bab2400000856137cf90919063ffffffff16565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff16613855909392919063ffffffff16565b50565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b42612ca9601154601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546136b190919063ffffffff16565b1115612d1d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f416374696f6e2073757370656e6465642064756520746f206c6f636b7570000081525060200191505060405180910390fd5b80601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612d673361191a565b031015612dbf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260288152602001806147ee6028913960400191505060405180910390fd5b612dc93382613960565b612e3033612dea69021e19e0c9bab2400000846137cf90919063ffffffff16565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff16613b249092919063ffffffff16565b50565b60115481565b6000612e4433613d8d565b905060008111612ebc576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600b8152602001807f5a65726f2070726f66697400000000000000000000000000000000000000000081525060200191505060405180910390fd5b6000601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612f0a81613e7f565b3373ffffffffffffffffffffffffffffffffffffffff167f47cee97cb7acd717b3c0aa1435d004cd5b3c8c57d70dbceb4e4458bbd60e39d4826040518082815260200191505060405180910390a290565b600086600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555085600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508460098190555083600a81905550828260069190612ffe929190614639565b5060011515600560029054906101000a900460ff161515141561306c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260288152602001806147a06028913960400191505060405180910390fd5b63f23a6e6160e01b90509695505050505050565b60146020528160005260406000206020528060005260406000206000915091509054906101000a900460ff1681565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561313d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806148d06024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156131c3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602281526020018061477e6022913960400191505060405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600560019054906101000a900460ff16613330576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260188152602001807f45524332303a204e6f74207472616e736665727261626c65000000000000000081525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156133b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806148ab6025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561343c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806146d76023913960400191505060405180910390fd5b613447838383613ecd565b6134b2816040518060600160405280602681526020016147c8602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546135f19092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550613545816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546136b190919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b600083831115829061369e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015613663578082015181840152602081019050613648565b50505050905090810190601f1680156136905780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b60008082840190508381101561372f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b60006137c86c0c9f2c9cd04674edea400000006137ba6137588561191a565b6137ac600f60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600e5461391690919063ffffffff16565b6137cf90919063ffffffff16565b6141d190919063ffffffff16565b9050919050565b6000808314156137e2576000905061384f565b60008284029050828482816137f357fe5b041461384a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806148166021913960400191505060405180910390fd5b809150505b92915050565b613910846323b872dd60e01b858585604051602401808473ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019350505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff838183161783525050505061421b565b50505050565b600061395883836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506135f1565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156139e6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602181526020018061485f6021913960400191505060405180910390fd5b6139f282600083613ecd565b613a5d8160405180606001604052806022815260200161475c602291396000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546135f19092919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550613ab48160025461391690919063ffffffff16565b600281905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b613bc18363a9059cbb60e01b8484604051602401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff838183161783525050505061421b565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613c69576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f45524332303a206d696e7420746f20746865207a65726f20616464726573730081525060200191505060405180910390fd5b613c7560008383613ecd565b613c8a816002546136b190919063ffffffff16565b600281905550613ce1816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546136b190919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b600080613d9983613739565b9050600e54600f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550613e3381601060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546136b190919063ffffffff16565b915081601060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555050919050565b613eca33827f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff16613b249092919063ffffffff16565b50565b60008111613f43576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600e8152602001807f496e76616c696420616d6f756e7400000000000000000000000000000000000081525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614613f8257613f8083613d8d565b505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614613fc157613fbf82613d8d565b505b42614016601154601260008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546136b190919063ffffffff16565b1180156140a05750601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054601260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054115b156141cc57601360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615614148576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602b815260200180614880602b913960400191505060405180910390fd5b601260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054601260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b505050565b600061421383836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525061430a565b905092915050565b606061427d826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff166143d09092919063ffffffff16565b90506000815111156143055780806020019051602081101561429e57600080fd5b8101908080519060200190929190505050614304576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a8152602001806148f4602a913960400191505060405180910390fd5b5b505050565b600080831182906143b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561437b578082015181840152602081019050614360565b50505050905090810190601f1680156143a85780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385816143c257fe5b049050809150509392505050565b60606143df84846000856143e8565b90509392505050565b60606143f3856145ee565b614465576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000081525060200191505060405180910390fd5b600060608673ffffffffffffffffffffffffffffffffffffffff1685876040518082805190602001908083835b602083106144b55780518252602082019150602081019050602083039250614492565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114614517576040519150601f19603f3d011682016040523d82523d6000602084013e61451c565b606091505b509150915081156145315780925050506145e6565b6000815111156145445780518082602001fd5b836040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156145ab578082015181840152602081019050614590565b50505050905090810190601f1680156145d85780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b949350505050565b60008060007fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a47060001b9050833f915080821415801561463057506000801b8214155b92505050919050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1061467a57803560ff19168380011785556146a8565b828001600101855582156146a8579182015b828111156146a757823582559160200191906001019061468c565b5b5090506146b591906146b9565b5090565b5b808211156146d25760008160009055506001016146ba565b509056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373596f75206d757374206265206e6f6d696e61746564206265666f726520796f752063616e20616363657074206f776e6572736869706f6e45524331313535426174636852656365697665643a207472616e73666572206e6f7420616363657074656445524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a20617070726f766520746f20746865207a65726f20616464726573736f6e4552433131353552656365697665643a207472616e73666572206e6f7420616363657074656445524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e63654e4654206c6f636b656420696e20636f6e7472616374206f7220496e76616c696420416d6f756e74536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737374686520726563697069656e7420646f6573206e6f742061636365707420626c6f636b65642066756e647345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573735361666545524332303a204552433230206f7065726174696f6e20646964206e6f74207375636365656445524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220a46364b79bebf1a1944fa2966292a697593dc4f959ec975a16115402316e3c6e64736f6c634300060c00330000000000000000000000007eaf9c89037e4814dc0d9952ac7f888c784548db000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000448cb15b00ced3ac47467e33493d602f34c8e77e000000000000000000000000ccbbf208cd893959f78f7e68e8896e11e9cd3beb
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061027e5760003560e01c806379ba50971161015c578063a6737291116100ce578063dd62ed3e11610087578063dd62ed3e14610e31578063e4849b3214610ea9578063ee947a7c14610ed7578063f011a7af14610ef5578063f23a6e6114610f13578063f8bac599146110135761027e565b8063a673729114610b5b578063a8cad73314610bb3578063a9059cbb14610beb578063bc197c8114610c4f578063c1292cc314610de5578063d96a094a14610e035761027e565b80638da5cb5b116101205780638da5cb5b146109ca57806392c2a478146109fe57806394c0991714610a3657806395d89b4114610a54578063a457c2d714610ad7578063a5b21c1f14610b3b5761027e565b806379ba5097146108a157806380443378146108ab57806385ae0317146108df578063860015191461097857806389a30271146109965761027e565b806332cb6b0c116101f557806354198ce9116101b957806354198ce9146107035780635fc0d2dd1461075b5780636b42539d146107895780636eb3cd49146107e1578063709ccacb1461081557806370a08231146108495761027e565b806332cb6b0c146105eb57806339509351146106095780633f40406c1461066d57806343183834146106c75780634ed37f02146106e55761027e565b806318160ddd1161024757806318160ddd146104945780631b016373146104b257806323b872dd146104e65780632839b0371461056a5780632ba591751461059a578063313ce567146105ca5761027e565b80626e75ec1461028357806301ffc9a71461030657806306fdde0314610369578063095ea7b3146103ec5780631627540c14610450575b600080fd5b61028b611077565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156102cb5780820151818401526020810190506102b0565b50505050905090810190601f1680156102f85780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6103516004803603602081101561031c57600080fd5b8101908080357bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19169060200190929190505050611115565b60405180821515815260200191505060405180910390f35b610371611177565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156103b1578082015181840152602081019050610396565b50505050905090810190601f1680156103de5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6104386004803603604081101561040257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611219565b60405180821515815260200191505060405180910390f35b6104926004803603602081101561046657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611237565b005b61049c6113c1565b6040518082815260200191505060405180910390f35b6104ba6113cb565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610552600480360360608110156104fc57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506113ef565b60405180821515815260200191505060405180910390f35b6105986004803603602081101561058057600080fd5b810190808035151590602001909291905050506114c8565b005b6105c8600480360360208110156105b057600080fd5b810190808035151590602001909291905050506115af565b005b6105d2611609565b604051808260ff16815260200191505060405180910390f35b6105f3611620565b6040518082815260200191505060405180910390f35b6106556004803603604081101561061f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611626565b60405180821515815260200191505060405180910390f35b6106af6004803603602081101561068357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506116d9565b60405180821515815260200191505060405180910390f35b6106cf6116f9565b6040518082815260200191505060405180910390f35b6106ed6116ff565b6040518082815260200191505060405180910390f35b6107456004803603602081101561071957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061170d565b6040518082815260200191505060405180910390f35b6107876004803603602081101561077157600080fd5b8101908080359060200190929190505050611770565b005b6107cb6004803603602081101561079f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506118b8565b6040518082815260200191505060405180910390f35b6107e96118d0565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b61081d6118f6565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b61088b6004803603602081101561085f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061191a565b6040518082815260200191505060405180910390f35b6108a9611962565b005b6108b3611b4d565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610921600480360360208110156108f557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611b73565b6040518080602001828103825283818151815260200191508051906020019060200280838360005b83811015610964578082015181840152602081019050610949565b505050509050019250505060405180910390f35b610980611c6b565b6040518082815260200191505060405180910390f35b61099e611c71565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6109d2611c95565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610a3460048036036040811015610a1457600080fd5b810190808035906020019092919080359060200190929190505050611cbf565b005b610a3e6121f9565b6040518082815260200191505060405180910390f35b610a5c612207565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610a9c578082015181840152602081019050610a81565b50505050905090810190601f168015610ac95780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610b2360048036036040811015610aed57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506122a9565b60405180821515815260200191505060405180910390f35b610b43612376565b60405180821515815260200191505060405180910390f35b610b9d60048036036020811015610b7157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612389565b6040518082815260200191505060405180910390f35b610be960048036036040811015610bc957600080fd5b8101908080359060200190929190803590602001909291905050506123a1565b005b610c3760048036036040811015610c0157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050612914565b60405180821515815260200191505060405180910390f35b610db0600480360360a0811015610c6557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190640100000000811115610cc257600080fd5b820183602082011115610cd457600080fd5b80359060200191846020830284011164010000000083111715610cf657600080fd5b909192939192939080359060200190640100000000811115610d1757600080fd5b820183602082011115610d2957600080fd5b80359060200191846020830284011164010000000083111715610d4b57600080fd5b909192939192939080359060200190640100000000811115610d6c57600080fd5b820183602082011115610d7e57600080fd5b80359060200191846001830284011164010000000083111715610da057600080fd5b9091929391929390505050612932565b60405180827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200191505060405180910390f35b610ded612a7f565b6040518082815260200191505060405180910390f35b610e2f60048036036020811015610e1957600080fd5b8101908080359060200190929190505050612a85565b005b610e9360048036036040811015610e4757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612bcd565b6040518082815260200191505060405180910390f35b610ed560048036036020811015610ebf57600080fd5b8101908080359060200190929190505050612c54565b005b610edf612e33565b6040518082815260200191505060405180910390f35b610efd612e39565b6040518082815260200191505060405180910390f35b610fde600480360360a0811015610f2957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291908035906020019092919080359060200190640100000000811115610f9a57600080fd5b820183602082011115610fac57600080fd5b80359060200191846001830284011164010000000083111715610fce57600080fd5b9091929391929390505050612f5b565b60405180827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200191505060405180910390f35b61105f6004803603604081101561102957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050613080565b60405180821515815260200191505060405180910390f35b60068054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561110d5780601f106110e25761010080835404028352916020019161110d565b820191906000526020600020905b8154815290600101906020018083116110f057829003601f168201915b505050505081565b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806111705750634e2312e060e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b606060038054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561120f5780601f106111e45761010080835404028352916020019161120f565b820191906000526020600020905b8154815290600101906020018083116111f257829003601f168201915b5050505050905090565b600061122d6112266130af565b84846130b7565b6001905092915050565b61123f6130af565b73ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611301576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f7cbe00258cd5670c808f2116fb86564f7f5717eef219817bc486add91c9ab7ca60405160405180910390a350565b6000600254905090565b7f0000000000000000000000008d4b5a1b15014a5170886e0664f7a04dfc44ac8981565b60006113fc8484846132ae565b6114bd846114086130af565b6114b88560405180606001604052806028815260200161483760289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061146e6130af565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546135f19092919063ffffffff16565b6130b7565b600190509392505050565b6114d06130af565b73ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611592576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80601660006101000a81548160ff02191690831515021790555050565b80601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000600560009054906101000a900460ff16905090565b6107d081565b60006116cf6116336130af565b846116ca85600160006116446130af565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546136b190919063ffffffff16565b6130b7565b6001905092915050565b60136020528060005260406000206000915054906101000a900460ff1681565b600a5481565b69021e19e0c9bab240000081565b600061176961171b83613739565b601060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546136b190919063ffffffff16565b9050919050565b600061177a6113c1565b9050600081111561184657806117a66c0c9f2c9cd04674edea40000000846137cf90919063ffffffff16565b816117ad57fe5b04600e6000828254019250508190555061180a3330847f000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb4873ffffffffffffffffffffffffffffffffffffffff16613855909392919063ffffffff16565b7f357d905f1831209797df4d55d79c5c5bf1d9f7311c976afd05e13d881eab9bc8826040518082815260200191505060405180910390a16118b4565b6118b3337f0000000000000000000000008d4b5a1b15014a5170886e0664f7a04dfc44ac89847f000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb4873ffffffffffffffffffffffffffffffffffffffff16613855909392919063ffffffff16565b5b5050565b60156020528060005260406000206000915090505481565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b7f0000000000000000000000007eaf9c89037e4814dc0d9952ac7f888c784548db81565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611a08576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260358152602001806146fa6035913960400191505060405180910390fd5b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b606080604867ffffffffffffffff81118015611b8e57600080fd5b50604051908082528060200260200182016040528015611bbd5781602001602082028036833780820191505090505b509050600080600190505b60488111611c6057601460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082815260200190815260200160002060009054906101000a900460ff1615611c535780838380600101945081518110611c4657fe5b6020026020010181815250505b8080600101915050611bc8565b508192505050919050565b600e5481565b7f000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb4881565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b42611d14601154601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546136b190919063ffffffff16565b1115611d88576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f416374696f6e2073757370656e6465642064756520746f206c6f636b7570000081525060200191505060405180910390fd5b601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082815260200190815260200160002060009054906101000a900460ff16611e58576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260168152602001807f54686973204e4654206973206e6f74206c6f636b65640000000000000000000081525060200191505060405180910390fd5b60008211611ece576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600f8152602001807f496e76616c696420616d6f756e742e000000000000000000000000000000000081525060200191505060405180910390fd5b611f28601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611f1a3361191a565b61391690919063ffffffff16565b600183031115611fa0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600f8152602001807f496e76616c696420616d6f756e742e000000000000000000000000000000000081525060200191505060405180910390fd5b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f242432a30338460016040518563ffffffff1660e01b8152600401808573ffffffffffffffffffffffffffffffffffffffff1681526020018473ffffffffffffffffffffffffffffffffffffffff16815260200183815260200182815260200180602001828103825260028152602001807f307800000000000000000000000000000000000000000000000000000000000081525060200195505050505050600060405180830381600087803b15801561209357600080fd5b505af11580156120a7573d6000803e3d6000fd5b505050506000601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002060006101000a81548160ff02191690831515021790555061211e3383613960565b6001820391506001601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825403925050819055506121f5336121af69018650127cc3dc8000006121a169021e19e0c9bab2400000876137cf90919063ffffffff16565b6136b190919063ffffffff16565b7f0000000000000000000000007eaf9c89037e4814dc0d9952ac7f888c784548db73ffffffffffffffffffffffffffffffffffffffff16613b249092919063ffffffff16565b5050565b69018650127cc3dc80000081565b606060048054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561229f5780601f106122745761010080835404028352916020019161229f565b820191906000526020600020905b81548152906001019060200180831161228257829003601f168201915b5050505050905090565b600061236c6122b66130af565b846123678560405180606001604052806025815260200161491e60259139600160006122e06130af565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546135f19092919063ffffffff16565b6130b7565b6001905092915050565b601660009054906101000a900460ff1681565b60126020528060005260406000206000915090505481565b42601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550601660009054906101000a900460ff16612467576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260168152602001807f4e465420646973636f756e74732064697361626c65640000000000000000000081525060200191505060405180910390fd5b600082116124dd576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600e8152602001807f416d6f756e74206973207a65726f00000000000000000000000000000000000081525060200191505060405180910390fd5b600181101580156124ef575060488111155b612561576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260138152602001807f53686f756c6420626520517565656e204e46540000000000000000000000000081525060200191505060405180910390fd5b6000600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1662fdd58e33846040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019250505060206040518083038186803b1580156125f357600080fd5b505afa158015612607573d6000803e3d6000fd5b505050506040513d602081101561261d57600080fd5b8101908080519060200190929190505050116126a1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260188152602001807f4e6f204e465420746f20636c61696d20646973636f756e74000000000000000081525060200191505060405180910390fd5b6107d0826126ad6113c1565b0111156126b957600080fd5b6126c33383613bc6565b6001601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002060006101000a81548160ff021916908315150217905550600182039150600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f242432a33308460016040518563ffffffff1660e01b8152600401808573ffffffffffffffffffffffffffffffffffffffff1681526020018473ffffffffffffffffffffffffffffffffffffffff16815260200183815260200182815260200180602001828103825260028152602001807f307800000000000000000000000000000000000000000000000000000000000081525060200195505050505050600060405180830381600087803b15801561282557600080fd5b505af1158015612839573d6000803e3d6000fd5b505050506128c2333061287b69018650127cc3dc80000061286d69021e19e0c9bab2400000886137cf90919063ffffffff16565b6136b190919063ffffffff16565b7f0000000000000000000000007eaf9c89037e4814dc0d9952ac7f888c784548db73ffffffffffffffffffffffffffffffffffffffff16613855909392919063ffffffff16565b6001601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055505050565b60006129286129216130af565b84846132ae565b6001905092915050565b600088600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555087600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550868660008181106129c357fe5b90506020020135600981905550848460008181106129dd57fe5b90506020020135600a819055508282600691906129fb929190614639565b5060011515600560029054906101000a900460ff1615151415612a69576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602d81526020018061472f602d913960400191505060405180910390fd5b63bc197c8160e01b905098975050505050505050565b60095481565b42601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060008111612b3f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600e8152602001807f416d6f756e74206973207a65726f00000000000000000000000000000000000081525060200191505060405180910390fd5b6107d081612b4b6113c1565b011115612b5757600080fd5b612b613382613bc6565b612bca3330612b8369021e19e0c9bab2400000856137cf90919063ffffffff16565b7f0000000000000000000000007eaf9c89037e4814dc0d9952ac7f888c784548db73ffffffffffffffffffffffffffffffffffffffff16613855909392919063ffffffff16565b50565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b42612ca9601154601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546136b190919063ffffffff16565b1115612d1d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f416374696f6e2073757370656e6465642064756520746f206c6f636b7570000081525060200191505060405180910390fd5b80601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612d673361191a565b031015612dbf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260288152602001806147ee6028913960400191505060405180910390fd5b612dc93382613960565b612e3033612dea69021e19e0c9bab2400000846137cf90919063ffffffff16565b7f0000000000000000000000007eaf9c89037e4814dc0d9952ac7f888c784548db73ffffffffffffffffffffffffffffffffffffffff16613b249092919063ffffffff16565b50565b60115481565b6000612e4433613d8d565b905060008111612ebc576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600b8152602001807f5a65726f2070726f66697400000000000000000000000000000000000000000081525060200191505060405180910390fd5b6000601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612f0a81613e7f565b3373ffffffffffffffffffffffffffffffffffffffff167f47cee97cb7acd717b3c0aa1435d004cd5b3c8c57d70dbceb4e4458bbd60e39d4826040518082815260200191505060405180910390a290565b600086600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555085600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508460098190555083600a81905550828260069190612ffe929190614639565b5060011515600560029054906101000a900460ff161515141561306c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260288152602001806147a06028913960400191505060405180910390fd5b63f23a6e6160e01b90509695505050505050565b60146020528160005260406000206020528060005260406000206000915091509054906101000a900460ff1681565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561313d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806148d06024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156131c3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602281526020018061477e6022913960400191505060405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600560019054906101000a900460ff16613330576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260188152602001807f45524332303a204e6f74207472616e736665727261626c65000000000000000081525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156133b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806148ab6025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561343c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806146d76023913960400191505060405180910390fd5b613447838383613ecd565b6134b2816040518060600160405280602681526020016147c8602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546135f19092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550613545816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546136b190919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b600083831115829061369e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015613663578082015181840152602081019050613648565b50505050905090810190601f1680156136905780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b60008082840190508381101561372f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b60006137c86c0c9f2c9cd04674edea400000006137ba6137588561191a565b6137ac600f60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600e5461391690919063ffffffff16565b6137cf90919063ffffffff16565b6141d190919063ffffffff16565b9050919050565b6000808314156137e2576000905061384f565b60008284029050828482816137f357fe5b041461384a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806148166021913960400191505060405180910390fd5b809150505b92915050565b613910846323b872dd60e01b858585604051602401808473ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019350505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff838183161783525050505061421b565b50505050565b600061395883836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506135f1565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156139e6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602181526020018061485f6021913960400191505060405180910390fd5b6139f282600083613ecd565b613a5d8160405180606001604052806022815260200161475c602291396000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546135f19092919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550613ab48160025461391690919063ffffffff16565b600281905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b613bc18363a9059cbb60e01b8484604051602401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff838183161783525050505061421b565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613c69576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f45524332303a206d696e7420746f20746865207a65726f20616464726573730081525060200191505060405180910390fd5b613c7560008383613ecd565b613c8a816002546136b190919063ffffffff16565b600281905550613ce1816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546136b190919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b600080613d9983613739565b9050600e54600f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550613e3381601060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546136b190919063ffffffff16565b915081601060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555050919050565b613eca33827f000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb4873ffffffffffffffffffffffffffffffffffffffff16613b249092919063ffffffff16565b50565b60008111613f43576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600e8152602001807f496e76616c696420616d6f756e7400000000000000000000000000000000000081525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614613f8257613f8083613d8d565b505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614613fc157613fbf82613d8d565b505b42614016601154601260008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546136b190919063ffffffff16565b1180156140a05750601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054601260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054115b156141cc57601360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615614148576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602b815260200180614880602b913960400191505060405180910390fd5b601260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054601260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b505050565b600061421383836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525061430a565b905092915050565b606061427d826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff166143d09092919063ffffffff16565b90506000815111156143055780806020019051602081101561429e57600080fd5b8101908080519060200190929190505050614304576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a8152602001806148f4602a913960400191505060405180910390fd5b5b505050565b600080831182906143b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561437b578082015181840152602081019050614360565b50505050905090810190601f1680156143a85780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385816143c257fe5b049050809150509392505050565b60606143df84846000856143e8565b90509392505050565b60606143f3856145ee565b614465576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000081525060200191505060405180910390fd5b600060608673ffffffffffffffffffffffffffffffffffffffff1685876040518082805190602001908083835b602083106144b55780518252602082019150602081019050602083039250614492565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114614517576040519150601f19603f3d011682016040523d82523d6000602084013e61451c565b606091505b509150915081156145315780925050506145e6565b6000815111156145445780518082602001fd5b836040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156145ab578082015181840152602081019050614590565b50505050905090810190601f1680156145d85780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b949350505050565b60008060007fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a47060001b9050833f915080821415801561463057506000801b8214155b92505050919050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1061467a57803560ff19168380011785556146a8565b828001600101855582156146a8579182015b828111156146a757823582559160200191906001019061468c565b5b5090506146b591906146b9565b5090565b5b808211156146d25760008160009055506001016146ba565b509056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373596f75206d757374206265206e6f6d696e61746564206265666f726520796f752063616e20616363657074206f776e6572736869706f6e45524331313535426174636852656365697665643a207472616e73666572206e6f7420616363657074656445524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a20617070726f766520746f20746865207a65726f20616464726573736f6e4552433131353552656365697665643a207472616e73666572206e6f7420616363657074656445524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e63654e4654206c6f636b656420696e20636f6e7472616374206f7220496e76616c696420416d6f756e74536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737374686520726563697069656e7420646f6573206e6f742061636365707420626c6f636b65642066756e647345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573735361666545524332303a204552433230206f7065726174696f6e20646964206e6f74207375636365656445524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220a46364b79bebf1a1944fa2966292a697593dc4f959ec975a16115402316e3c6e64736f6c634300060c0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000007eaf9c89037e4814dc0d9952ac7f888c784548db000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000448cb15b00ced3ac47467e33493d602f34c8e77e000000000000000000000000ccbbf208cd893959f78f7e68e8896e11e9cd3beb
-----Decoded View---------------
Arg [0] : _token (address): 0x7eaF9C89037e4814DC0d9952Ac7F888C784548DB
Arg [1] : usdc (address): 0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48
Arg [2] : rnft (address): 0x448CB15B00ceD3ac47467e33493d602f34c8e77e
Arg [3] : _multisigWallet (address): 0xcCBBf208CD893959f78f7e68e8896e11E9CD3bEB
-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000007eaf9c89037e4814dc0d9952ac7f888c784548db
Arg [1] : 000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48
Arg [2] : 000000000000000000000000448cb15b00ced3ac47467e33493d602f34c8e77e
Arg [3] : 000000000000000000000000ccbbf208cd893959f78f7e68e8896e11e9cd3beb
Deployed Bytecode Sourcemap
43175:897:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35177:21;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36337:238;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;19096:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21202:169;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;33740:156;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;20171:100;;;:::i;:::-;;;;;;;;;;;;;;;;;;;37740:51;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;21845:321;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;41176:105;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;41035:129;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;20023:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;37532:38;;;:::i;:::-;;;;;;;;;;;;;;;;;;;22579:218;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;38064:62;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;35297:24;;;:::i;:::-;;;;;;;;;;;;;;;;;;;37577:47;;;:::i;:::-;;;;;;;;;;;;;;;;;;;41289:144;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;43538:411;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;38205:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;35205:27;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;37497:28;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;20334:119;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;33904:285;;;:::i;:::-;;35239:23;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;41624:309;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37819:27;;;:::i;:::-;;;;;;;;;;;;;;;;;;;43310:28;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;32917:79;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;40369:611;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;37631:57;;;:::i;:::-;;;;;;;;;;;;;;;;;;;19298:87;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23300:269;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;38261:29;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;38003:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;39275:782;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;20666:175;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;35793:503;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;35269:21;;;:::i;:::-;;;;;;;;;;;;;;;;;;;38929:334;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;20904:151;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;40075:286;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;37960:36;;;:::i;:::-;;;;;;;;;;;;;;;;;;;38650:271;;;:::i;:::-;;;;;;;;;;;;;;;;;;;35330:455;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;38133:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;35177:21;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;36337:238::-;36407:4;36447:10;36432:25;;:11;:25;;;;:84;;;;36506:10;36491:25;;:11;:25;;;;36432:84;36424:92;;36337:238;;;:::o;19096:83::-;19133:13;19166:5;19159:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19096:83;:::o;21202:169::-;21285:4;21302:39;21311:12;:10;:12::i;:::-;21325:7;21334:6;21302:8;:39::i;:::-;21359:4;21352:11;;21202:169;;;;:::o;33740:156::-;33139:12;:10;:12::i;:::-;33129:22;;:6;;;;;;;;;;;:22;;;33121:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33831:7:::1;33813:15;;:25;;;;;;;;;;;;;;;;;;33880:7;33854:34;;33873:6;;;;;;;;;;;33854:34;;;;;;;;;;;;33740:156:::0;:::o;20171:100::-;20224:7;20251:12;;20244:19;;20171:100;:::o;37740:51::-;;;:::o;21845:321::-;21951:4;21968:36;21978:6;21986:9;21997:6;21968:9;:36::i;:::-;22015:121;22024:6;22032:12;:10;:12::i;:::-;22046:89;22084:6;22046:89;;;;;;;;;;;;;;;;;:11;:19;22058:6;22046:19;;;;;;;;;;;;;;;:33;22066:12;:10;:12::i;:::-;22046:33;;;;;;;;;;;;;;;;:37;;:89;;;;;:::i;:::-;22015:8;:121::i;:::-;22154:4;22147:11;;21845:321;;;;;:::o;41176:105::-;33139:12;:10;:12::i;:::-;33129:22;;:6;;;;;;;;;;;:22;;;33121:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41268:5:::1;41248:17;;:25;;;;;;;;;;;;;;;;;;41176:105:::0;:::o;41035:129::-;41151:5;41106:30;:42;41137:10;41106:42;;;;;;;;;;;;;;;;:50;;;;;;;;;;;;;;;;;;41035:129;:::o;20023:83::-;20064:5;20089:9;;;;;;;;;;;20082:16;;20023:83;:::o;37532:38::-;37566:4;37532:38;:::o;22579:218::-;22667:4;22684:83;22693:12;:10;:12::i;:::-;22707:7;22716:50;22755:10;22716:11;:25;22728:12;:10;:12::i;:::-;22716:25;;;;;;;;;;;;;;;:34;22742:7;22716:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;22684:8;:83::i;:::-;22785:4;22778:11;;22579:218;;;;:::o;38064:62::-;;;;;;;;;;;;;;;;;;;;;;:::o;35297:24::-;;;;:::o;37577:47::-;37610:14;37577:47;:::o;41289:144::-;41356:4;41380:45;41405:19;41416:7;41405:10;:19::i;:::-;41380:11;:20;41392:7;41380:20;;;;;;;;;;;;;;;;:24;;:45;;;;:::i;:::-;41373:52;;41289:144;;;:::o;43538:411::-;43600:17;43620:13;:11;:13::i;:::-;43600:33;;43663:1;43648:12;:16;43644:298;;;43719:12;43696:20;37729:4;43696:6;:10;;:20;;;;:::i;:::-;:35;;;;;;43681:11;;:50;;;;;;;;;;;43746:56;43768:10;43788:4;43795:6;43746:4;:21;;;;:56;;;;;;:::i;:::-;43822:14;43829:6;43822:14;;;;;;;;;;;;;;;;;;43644:298;;;43869:61;43891:10;43903:18;43923:6;43869:4;:21;;;;:61;;;;;;:::i;:::-;43644:298;43538:411;;:::o;38205:49::-;;;;;;;;;;;;;;;;;:::o;35205:27::-;;;;;;;;;;;;;:::o;37497:28::-;;;:::o;20334:119::-;20400:7;20427:9;:18;20437:7;20427:18;;;;;;;;;;;;;;;;20420:25;;20334:119;;;:::o;33904:285::-;33973:15;;;;;;;;;;;33959:29;;:10;:29;;;33951:95;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34091:15;;;;;;;;;;;34062:45;;34083:6;;;;;;;;;;;34062:45;;;;;;;;;;;;34127:15;;;;;;;;;;;34118:6;;:24;;;;;;;;;;;;;;;;;;34179:1;34153:15;;:28;;;;;;;;;;;;;;;;;;33904:285::o;35239:23::-;;;;;;;;;;;;;:::o;41624:309::-;41687:13;41713:18;41747:2;41733:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41713:37;;41761:9;41787:6;41796:1;41787:10;;41783:124;41802:2;41799:1;:5;41783:124;;41828:12;:21;41841:7;41828:21;;;;;;;;;;;;;;;:24;41850:1;41828:24;;;;;;;;;;;;;;;;;;;;;41825:71;;;41879:1;41872;41874:3;;;;;;41872:6;;;;;;;;;;;;;:8;;;;;41825:71;41806:3;;;;;;;41783:124;;;;41924:1;41917:8;;;;41624:309;;;:::o;37819:27::-;;;;:::o;43310:28::-;;;:::o;32917:79::-;32955:7;32982:6;;;;;;;;;;;32975:13;;32917:79;:::o;40369:611::-;43038:15;42985:49;43021:12;;42985:19;:31;43005:10;42985:31;;;;;;;;;;;;;;;;:35;;:49;;;;:::i;:::-;:68;;42963:154;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40454:12:::1;:24;40467:10;40454:24;;;;;;;;;;;;;;;:28;40479:2;40454:28;;;;;;;;;;;;;;;;;;;;;40446:62;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;40534:1;40527:6;:8;40519:35;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;40583:53;40609:14;:26;40624:10;40609:26;;;;;;;;;;;;;;;;40583:21;40593:10;40583:9;:21::i;:::-;:25;;:53;;;;:::i;:::-;40580:1;40573:6;:8;:63;;40565:90;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;40666:4;;;;;;;;;;;:21;;;40696:4;40703:10;40715:2;40719:1;40666:61;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;40769:5;40738:12;:24;40751:10;40738:24;;;;;;;;;;;;;;;:28;40763:2;40738:28;;;;;;;;;;;;:36;;;;;;;;;;;;;;;;;;40787:25;40793:10;40805:6;40787:5;:25::i;:::-;40840:1;40831:6;:10;40823:18;;40882:1;40852:14;:26;40867:10;40852:26;;;;;;;;;;;;;;;;:31;;;;;;;;;;;40894:78;40912:10;40924:47;37675:13;40924:21;37610:14;40924:6;:10;;:21;;;;:::i;:::-;:25;;:47;;;;:::i;:::-;40894:4;:17;;;;:78;;;;;:::i;:::-;40369:611:::0;;:::o;37631:57::-;37675:13;37631:57;:::o;19298:87::-;19337:13;19370:7;19363:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19298:87;:::o;23300:269::-;23393:4;23410:129;23419:12;:10;:12::i;:::-;23433:7;23442:96;23481:15;23442:96;;;;;;;;;;;;;;;;;:11;:25;23454:12;:10;:12::i;:::-;23442:25;;;;;;;;;;;;;;;:34;23468:7;23442:34;;;;;;;;;;;;;;;;:38;;:96;;;;;:::i;:::-;23410:8;:129::i;:::-;23557:4;23550:11;;23300:269;;;;:::o;38261:29::-;;;;;;;;;;;;;:::o;38003:54::-;;;;;;;;;;;;;;;;;:::o;39275:782::-;39376:15;39342:19;:31;39362:10;39342:31;;;;;;;;;;;;;;;:49;;;;39410:17;;;;;;;;;;;39402:52;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39482:1;39473:6;:10;39465:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39527:1;39521:2;:7;;:19;;;;;39538:2;39532;:8;;39521:19;39513:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39616:1;39583:4;;;;;;;;;;;:14;;;39598:10;39610:2;39583:30;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:34;39575:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37566:4;39680:6;39664:13;:11;:13::i;:::-;:22;:36;;39656:45;;;;;;39722:25;39728:10;39740:6;39722:5;:25::i;:::-;39789:4;39758:12;:24;39771:10;39758:24;;;;;;;;;;;;;;;:28;39783:2;39758:28;;;;;;;;;;;;:35;;;;;;;;;;;;;;;;;;39824:1;39815:6;:10;39806:19;;39836:4;;;;;;;;;;;:21;;;39858:10;39878:4;39885:2;39889:1;39836:61;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39908:97;39930:10;39950:4;39957:47;37675:13;39957:21;37610:14;39957:6;:10;;:21;;;;:::i;:::-;:25;;:47;;;;:::i;:::-;39908:4;:21;;;;:97;;;;;;:::i;:::-;40046:1;40016:14;:26;40031:10;40016:26;;;;;;;;;;;;;;;;:31;;;;;;;;;;;39275:782;;:::o;20666:175::-;20752:4;20769:42;20779:12;:10;:12::i;:::-;20793:9;20804:6;20769:9;:42::i;:::-;20829:4;20822:11;;20666:175;;;;:::o;35793:503::-;35951:6;35985:9;35970:12;;:24;;;;;;;;;;;;;;;;;;36016:5;36005:8;;:16;;;;;;;;;;;;;;;;;;36041:4;;36046:1;36041:7;;;;;;;;;;;;;36032:6;:16;;;;36071:7;;36079:1;36071:10;;;;;;;;;;;;;36059:9;:22;;;;36103:5;;36092:8;:16;;;;;;;:::i;:::-;;36139:4;36123:20;;:12;;;;;;;;;;;:20;;;36119:170;;;36160:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36119:170;34941:10;36255:22;;36248:29;;35793:503;;;;;;;;;;:::o;35269:21::-;;;;:::o;38929:334::-;39018:15;38984:19;:31;39004:10;38984:31;;;;;;;;;;;;;;;:49;;;;39061:1;39052:6;:10;39044:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37566:4;39116:6;39100:13;:11;:13::i;:::-;:22;:36;;39092:45;;;;;;39148:25;39154:10;39166:6;39148:5;:25::i;:::-;39184:71;39206:10;39226:4;39233:21;37610:14;39233:6;:10;;:21;;;;:::i;:::-;39184:4;:21;;;;:71;;;;;;:::i;:::-;38929:334;:::o;20904:151::-;20993:7;21020:11;:18;21032:5;21020:18;;;;;;;;;;;;;;;:27;21039:7;21020:27;;;;;;;;;;;;;;;;21013:34;;20904:151;;;;:::o;40075:286::-;43038:15;42985:49;43021:12;;42985:19;:31;43005:10;42985:31;;;;;;;;;;;;;;;;:35;;:49;;;;:::i;:::-;:68;;42963:154;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40204:6:::1;40174:14;:26;40189:10;40174:26;;;;;;;;;;;;;;;;40150:21;40160:10;40150:9;:21::i;:::-;:50;:60;;40142:112;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40265:25;40271:10;40283:6;40265:5;:25::i;:::-;40301:52;40319:10;40331:21;37610:14;40331:6;:10;;:21;;;;:::i;:::-;40301:4;:17;;;;:52;;;;;:::i;:::-;40075:286:::0;:::o;37960:36::-;;;;:::o;38650:271::-;38700:11;38733:22;38744:10;38733;:22::i;:::-;38724:31;;38783:1;38774:6;:10;38766:34;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38837:1;38811:11;:23;38823:10;38811:23;;;;;;;;;;;;;;;:27;;;;38849:23;38865:6;38849:15;:23::i;:::-;38894:10;38888:25;;;38906:6;38888:25;;;;;;;;;;;;;;;;;;38650:271;:::o;35330:455::-;35459:6;35493:9;35478:12;;:24;;;;;;;;;;;;;;;;;;35524:5;35513:8;;:16;;;;;;;;;;;;;;;;;;35549:3;35540:6;:12;;;;35575:6;35563:9;:18;;;;35603:5;;35592:8;:16;;;;;;;:::i;:::-;;35639:4;35623:20;;:12;;;;;;;;;;;:20;;;35619:159;;;35660:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35619:159;34793:10;35750:16;;35743:23;;35330:455;;;;;;;;:::o;38133:65::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;620:106::-;673:15;708:10;701:17;;620:106;:::o;26508:346::-;26627:1;26610:19;;:5;:19;;;;26602:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26708:1;26689:21;;:7;:21;;;;26681:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26792:6;26762:11;:18;26774:5;26762:18;;;;;;;;;;;;;;;:27;26781:7;26762:27;;;;;;;;;;;;;;;:36;;;;26830:7;26814:32;;26823:5;26814:32;;;26839:6;26814:32;;;;;;;;;;;;;;;;;;26508:346;;;:::o;24059:600::-;24165:13;;;;;;;;;;;24157:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24244:1;24226:20;;:6;:20;;;;24218:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24328:1;24307:23;;:9;:23;;;;24299:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24383:47;24404:6;24412:9;24423:6;24383:20;:47::i;:::-;24463:71;24485:6;24463:71;;;;;;;;;;;;;;;;;:9;:17;24473:6;24463:17;;;;;;;;;;;;;;;;:21;;:71;;;;;:::i;:::-;24443:9;:17;24453:6;24443:17;;;;;;;;;;;;;;;:91;;;;24568:32;24593:6;24568:9;:20;24578:9;24568:20;;;;;;;;;;;;;;;;:24;;:32;;;;:::i;:::-;24545:9;:20;24555:9;24545:20;;;;;;;;;;;;;;;:55;;;;24633:9;24616:35;;24625:6;24616:35;;;24644:6;24616:35;;;;;;;;;;;;;;;;;;24059:600;;;:::o;7076:192::-;7162:7;7195:1;7190;:6;;7198:12;7182:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7222:9;7238:1;7234;:5;7222:17;;7259:1;7252:8;;;7076:192;;;;;:::o;6173:181::-;6231:7;6251:9;6267:1;6263;:5;6251:17;;6292:1;6287;:6;;6279:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6345:1;6338:8;;;6173:181;;;;:::o;41441:173::-;41501:11;41532:74;37729:4;41532:60;41573:18;41583:7;41573:9;:18::i;:::-;41532:36;41548:10;:19;41559:7;41548:19;;;;;;;;;;;;;;;;41532:11;;:15;;:36;;;;:::i;:::-;:40;;:60;;;;:::i;:::-;:64;;:74;;;;:::i;:::-;41525:81;;41441:173;;;:::o;7527:471::-;7585:7;7835:1;7830;:6;7826:47;;;7860:1;7853:8;;;;7826:47;7885:9;7901:1;7897;:5;7885:17;;7930:1;7925;7921;:5;;;;;;:10;7913:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7989:1;7982:8;;;7527:471;;;;;:::o;28819:205::-;28920:96;28940:5;28970:27;;;28999:4;29005:2;29009:5;28947:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28920:19;:96::i;:::-;28819:205;;;;:::o;6637:136::-;6695:7;6722:43;6726:1;6729;6722:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;6715:50;;6637:136;;;;:::o;25650:418::-;25753:1;25734:21;;:7;:21;;;;25726:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25806:49;25827:7;25844:1;25848:6;25806:20;:49::i;:::-;25889:68;25912:6;25889:68;;;;;;;;;;;;;;;;;:9;:18;25899:7;25889:18;;;;;;;;;;;;;;;;:22;;:68;;;;;:::i;:::-;25868:9;:18;25878:7;25868:18;;;;;;;;;;;;;;;:89;;;;25983:24;26000:6;25983:12;;:16;;:24;;;;:::i;:::-;25968:12;:39;;;;26049:1;26023:37;;26032:7;26023:37;;;26053:6;26023:37;;;;;;;;;;;;;;;;;;25650:418;;:::o;28634:177::-;28717:86;28737:5;28767:23;;;28792:2;28796:5;28744:58;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28717:19;:86::i;:::-;28634:177;;;:::o;24940:378::-;25043:1;25024:21;;:7;:21;;;;25016:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25094:49;25123:1;25127:7;25136:6;25094:20;:49::i;:::-;25171:24;25188:6;25171:12;;:16;;:24;;;;:::i;:::-;25156:12;:39;;;;25227:30;25250:6;25227:9;:18;25237:7;25227:18;;;;;;;;;;;;;;;;:22;;:30;;;;:::i;:::-;25206:9;:18;25216:7;25206:18;;;;;;;;;;;;;;;:51;;;;25294:7;25273:37;;25290:1;25273:37;;;25303:6;25273:37;;;;;;;;;;;;;;;;;;24940:378;;:::o;41945:258::-;42000:11;42024:12;42039:19;42050:7;42039:10;:19::i;:::-;42024:34;;42091:11;;42069:10;:19;42080:7;42069:19;;;;;;;;;;;;;;;:33;;;;42122;42147:7;42122:11;:20;42134:7;42122:20;;;;;;;;;;;;;;;;:24;;:33;;;;:::i;:::-;42113:42;;42189:6;42166:11;:20;42178:7;42166:20;;;;;;;;;;;;;;;:29;;;;41945:258;;;;:::o;43957:112::-;44024:37;44042:10;44054:6;44024:4;:17;;;;:37;;;;;:::i;:::-;43957:112;:::o;42211:646::-;42320:1;42313:6;:8;42305:34;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42370:1;42354:18;;:4;:18;;;42350:40;;42374:16;42385:4;42374:10;:16::i;:::-;;42350:40;42419:1;42405:16;;:2;:16;;;42401:36;;42423:14;42434:2;42423:10;:14::i;:::-;;42401:36;42512:15;42466:43;42496:12;;42466:19;:25;42486:4;42466:25;;;;;;;;;;;;;;;;:29;;:43;;;;:::i;:::-;:61;:129;;;;;42572:19;:23;42592:2;42572:23;;;;;;;;;;;;;;;;42544:19;:25;42564:4;42544:25;;;;;;;;;;;;;;;;:51;42466:129;42448:392;;;42649:30;:34;42680:2;42649:34;;;;;;;;;;;;;;;;;;;;;;;;;42648:35;42622:140;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42803:19;:25;42823:4;42803:25;;;;;;;;;;;;;;;;42777:19;:23;42797:2;42777:23;;;;;;;;;;;;;;;:51;;;;42448:392;42211:646;;;:::o;8474:132::-;8532:7;8559:39;8563:1;8566;8559:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;8552:46;;8474:132;;;;:::o;30939:761::-;31363:23;31389:69;31417:4;31389:69;;;;;;;;;;;;;;;;;31397:5;31389:27;;;;:69;;;;;:::i;:::-;31363:95;;31493:1;31473:10;:17;:21;31469:224;;;31615:10;31604:30;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31596:85;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31469:224;30939:761;;;:::o;9102:278::-;9188:7;9220:1;9216;:5;9223:12;9208:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9247:9;9263:1;9259;:5;;;;;;9247:17;;9371:1;9364:8;;;9102:278;;;;;:::o;14512:196::-;14615:12;14647:53;14670:6;14678:4;14684:1;14687:12;14647:22;:53::i;:::-;14640:60;;14512:196;;;;;:::o;15889:979::-;16019:12;16052:18;16063:6;16052:10;:18::i;:::-;16044:60;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16178:12;16192:23;16219:6;:11;;16239:8;16250:4;16219:36;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16177:78;;;;16270:7;16266:595;;;16301:10;16294:17;;;;;;16266:595;16435:1;16415:10;:17;:21;16411:439;;;16678:10;16672:17;16739:15;16726:10;16722:2;16718:19;16711:44;16626:148;16821:12;16814:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15889:979;;;;;;;:::o;11397:619::-;11457:4;11719:16;11746:19;11768:66;11746:88;;;;11937:7;11925:20;11913:32;;11977:11;11965:8;:23;;:42;;;;;12004:3;11992:15;;:8;:15;;11965:42;11957:51;;;;11397:619;;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o
Swarm Source
ipfs://a46364b79bebf1a1944fa2966292a697593dc4f959ec975a16115402316e3c6e
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.