BscScan - Sponsored slots available. Book your slot here!
Overview
Max Total Supply
1,000,000,000REV3L
Holders
2,270 ( -0.044%)
Total Transfers
-
Market
Price
$0.01 @ 0.000013 BNB (+0.57%)
Onchain Market Cap
$7,755,180.00
Circulating Supply Market Cap
$3,232,676.00
Other Info
Token Contract (WITH 18 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
Contract Name:
REV3AL_TOKEN
Compiler Version
v0.8.10+commit.fc410830
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT // Imports ------------------------------------- import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/utils/math/SafeMath.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; // Solidity version ------------------------------------- pragma solidity 0.8.10; contract REV3AL_TOKEN is ERC20, Ownable, ReentrancyGuard { // Using SafeMath library for uint256 operations using SafeMath for uint256; // Variables ------------------------------------- // Total supply for rewards uint256 public stakingSupply = 0; // Initial supply uint256 public initialSupply = 1000000000000000000000000000; // How many tokens a user staked mapping ( address => uint256 ) public stakedTokensByUser; // Total staked tokens uint256 public totalStakedRightNow; // Given rewards uint256 public givenRewards; // Start staking bool public startStaking = false; // APR uint256 public apr30Days = 10; // 10% per year uint256 public apr180Days = 20; // 20% per year uint256 public apr365Days = 30; // 30% per year // Whitelisted addresses address public immutable dexRouter = 0x10ED43C718714eb63d5aA57B78B54704E256024E; address public immutable dexFactory = 0xcA143Ce32Fe78f1f7019d7d551a6402fC5350c73; // Map an address to a boolean value: True - blocked / False - not blocked mapping ( address => bool ) public isBlocked; // Map an address to a boolean value: True - is DEX/CEX / False - is not DEX/CEX mapping ( address => bool ) public isDex; // Struct in order to create a deposit struct createDeposit { uint256 stakedAmount; uint256 periodOfTime; uint256 startDate; uint256 endDate; } // Events ------------------------------------- event CreateDeposit( address _who, uint256 _index, uint256 _amount, uint256 _period, uint256 _endDate ); event Unstake( address _who, uint256 _index, uint256 _amount ); event EmergencyWithdraw( address _who, uint256 _index, uint256 _amount ); // Map the address of the user to an index and to a struct mapping ( address => mapping ( uint256 => createDeposit ) ) public userDeposit; // Map the address of the user to an index mapping ( address => uint256 ) public lastIndex; // Constructor ------------------------------------- constructor() ERC20("REV3AL", "REV3L") { // Mark PCS router and factory as DEX isDex[dexRouter] = true; isDex[dexFactory] = true; // Mint 1,000,000,000 to the deployer of the smart contract _mint(msg.sender, initialSupply); // Mint staking supply to the contract address // _mint(address(this), stakingSupply); } // Modifiers ------------------------------------- modifier callerIsUser() { require(tx.origin == msg.sender, "The caller can not be another smart contract!"); _; } // Staking functions ------------------------------------- // Stake tokens function stakeTokens(uint256 _amount, uint256 _period) public nonReentrant callerIsUser { // Address should not be blocked require(isBlocked[msg.sender] == false, "You can't stake tokens!"); // Staking should be enabled require(startStaking == true, "Staking functions are disabled!"); // Fetch the amount left for rewards uint256 _amountLeft = getAmountLeftForStaking(); // The amount that wants to be staked should be less than the transferable balance require(_amount <= getAvailableBalanceForTransfer(msg.sender), "You can't stake more tokens than you have!"); // The "reward pool" should not be empty require(_amountLeft >= 0, "You can't stake anymore!"); // Choose a valid period require(_period == 30 || _period == 180 || _period == 365, "Invalid period!"); // Old staked amount (by user) = old staked amount + the amount that will be staked stakedTokensByUser[msg.sender] = stakedTokensByUser[msg.sender].add(_amount); // Total staked by every user totalStakedRightNow = totalStakedRightNow.add(_amount); // Fetch the last deposit created uint256 _lastIndex = lastIndex[msg.sender]; // Increase the index lastIndex[msg.sender] = lastIndex[msg.sender].add(1); uint256 __period = _period.mul(1 days); // Create the deposit userDeposit[msg.sender][_lastIndex] = createDeposit({ stakedAmount: _amount, periodOfTime: _period, startDate: block.timestamp, endDate: block.timestamp.add(__period)}); // Emit the event emit CreateDeposit( msg.sender, _lastIndex, _amount, _period, block.timestamp.add(__period)); } // Unstake tokens function unstakeTokens(uint256 _index) public nonReentrant callerIsUser { // Staking should be enabled require(startStaking == true, "Staking functions are disabled!"); // Index should exist require(_index <= lastIndex[msg.sender], "Non-existent index!"); // Fetch data about deposit @index (uint256 _amount, , , uint256 _endDate) = fetchDepositInfo(msg.sender, _index); // Amount to unstake should not be zero require(_amount != 0, "You already unstaked from this deposit!"); // Time now > the end time of the deposit require(block.timestamp >= _endDate, "You can't unstake yet!"); // Compute the rewards that should be sent to the user uint256 _toBeSent = computeFinalRewards(msg.sender, _index); // Fetch the amount left for rewards uint256 _amountLeft = getAmountLeftForStaking(); // Pending rewards should be less than the balance of the rewards pool require(_toBeSent <= _amountLeft, "No tokens left for rewards!"); // Set the staked amound of this deposit to ZERO userDeposit[msg.sender][_index].stakedAmount = 0; // Remove tokens from staking stakedTokensByUser[msg.sender] = stakedTokensByUser[msg.sender].sub(_amount); // Remove tokens from the total balance of the smart contract totalStakedRightNow = totalStakedRightNow.sub(_amount); // Add the pending rewards to the given rewards givenRewards = givenRewards.add(_toBeSent); // Send the rewards to user IERC20(address(this)).transfer(msg.sender, _toBeSent); emit Unstake(msg.sender, _index, _amount); } // Emergency Withdraw function emergencyWithdraw(uint256 _index) public nonReentrant callerIsUser { // Staking should be started require(startStaking == true, "Staking functions are disabled!"); // Index should exist require(_index <= lastIndex[msg.sender], "Non-existent index!"); // Fetch data about deposit @index (uint256 _amount, , , ) = fetchDepositInfo(msg.sender, _index); // Set the staked amound of this deposit to ZERO userDeposit[msg.sender][_index].stakedAmount = 0; // Remove tokens from staking stakedTokensByUser[msg.sender] = stakedTokensByUser[msg.sender].sub(_amount); // Remove tokens from the total balance of the smart contract totalStakedRightNow = totalStakedRightNow.sub(_amount); emit EmergencyWithdraw(msg.sender, _index, _amount); } // Self report - holders can self report their address if they've been hacked function selfReport() public callerIsUser { require(isBlocked[msg.sender] == false, "This address is already reported!"); isBlocked[msg.sender] = true; } // Internal functions ------------------------------------- function _transfer( address from, address to, uint256 amount ) internal override { // // Address is blocked/reported? bool _isBlockedFrom = isBlocked[from]; bool _isBlockedTo = isBlocked[to]; if(isDex[from] == false && isDex[to] == false) { // // Compute the difference uint256 _theDifference = getAvailableBalanceForTransfer(from); require(amount <= _theDifference, "You can't transfer this amount because you have staked tokens!"); } if(_isBlockedFrom == true || _isBlockedTo == true) { super._transfer(from, owner(), amount); } else { super._transfer(from, to, amount); } } // Setters ------------------------------------- // Block an address function blockAddress(address _who) external onlyOwner { address _owner = owner(); require(_who != _owner || isDex[_who] == false, "You can't block this address!"); isBlocked[_who] = true; } // Unblock an address function unblockAddress(address _who) external onlyOwner { require(isBlocked[_who] == true, "This address is already unlocked!"); isBlocked[_who] = false; } // Mark as DEX/CEX function setDexAddress(address _who) external onlyOwner { isDex[_who] = true; } // Toggle to pause/unpause the staking function toggleStaking() external onlyOwner { if(startStaking == true) { startStaking = false; } else { startStaking = true; } } // Block multiple accounts function blockMultiple(address[] memory _recipients) external onlyOwner { // Fetch variables uint256 _listSize = _recipients.length; for (uint i = 0; i < _listSize; i++) { address _who = _recipients[i]; address _owner = owner(); require(_who != _owner || isDex[_who] == false, "You can't block this address!"); isBlocked[_who] = true; } } // Un-Block multiple accounts function unblockMultiple(address[] memory _recipients) external onlyOwner { // Fetch variables uint256 _listSize = _recipients.length; for (uint i = 0; i < _listSize; i++) { address _who = _recipients[i]; isBlocked[_who] = false; } } // Change APR for future pools function changeAPR(uint256 _apr30, uint256 _apr180, uint256 _apr365) external onlyOwner { apr30Days = _apr30; apr180Days = _apr180; apr365Days = _apr365; } function setStakingSupply(uint256 _newStakingSupply) external onlyOwner { stakingSupply = _newStakingSupply; } // Manage tokens that are sent by mistake ------------------------------------- // What we do if somebody send blockchain's native tokens to the smart contract receive() external payable { // @Note // Calling a revert statement implies an exception is thrown, // the unused gas is returned and the state reverts to its original state. revert("You are not allowed to do that!"); } // Withdraw wrong tokens function withdrawWrongTokens(address _whatToken, uint256 _amount) external onlyOwner { IERC20 _tokenToWitdhraw = IERC20(_whatToken); // Transfer the tokens to the owner of the smart contract _tokenToWitdhraw.transfer(owner(), _amount); } // Getters ------------------------------------- function getAvailableBalanceForTransfer(address _who) public view returns (uint256) { // Fetch the balance of the user uint256 _userBalance = IERC20(address(this)).balanceOf(_who); // Return the difference return _userBalance.sub(stakedTokensByUser[msg.sender]); } function fetchDepositInfo(address _who, uint256 _index) public view returns (uint256, uint256, uint256, uint256) { // Create the instance of the deposit createDeposit storage _userDeposit = userDeposit[_who][_index]; return (_userDeposit.stakedAmount, _userDeposit.periodOfTime, _userDeposit.startDate, _userDeposit.endDate); } function computeFinalRewards(address _who, uint256 _index) public view returns (uint256) { (uint256 _stakedAmount, uint256 _periodOfTime, , ) = fetchDepositInfo(_who, _index); uint256 _toBeSent = 0; if(_periodOfTime == 30) { _toBeSent = _stakedAmount.mul(apr30Days).div(uint256(100).mul(12)); } else if(_periodOfTime == 180) { _toBeSent = _stakedAmount.mul(apr180Days).div(uint256(100).mul(2)); } else if(_periodOfTime == 365) { _toBeSent = _stakedAmount.mul(apr365Days).div(100); } return _toBeSent; } function computePendingRewards(address _who, uint256 _index) public view returns (uint256) { ( , uint256 _period, uint256 _startDate, uint256 _endDate) = fetchDepositInfo(_who, _index); uint256 _delta = 0; uint256 _pendingRewards = 0; uint256 _rewardsPerMinute = 0; uint256 _finalRewards = computeFinalRewards(_who, _index); // Time now - start date uint256 _timeNow = block.timestamp; if(_timeNow < _endDate) { _delta = _timeNow.sub(_startDate); if(_period == 30) { _rewardsPerMinute = _finalRewards.div(uint256(30).mul(24).mul(60)); _pendingRewards = _delta.div(60).mul(_rewardsPerMinute); return _pendingRewards; } else if(_period == 180) { _rewardsPerMinute = _finalRewards.div(uint256(180).mul(24).mul(60)); _pendingRewards = _delta.div(60).mul(_rewardsPerMinute); return _pendingRewards; } else if(_period == 365) { _rewardsPerMinute = _finalRewards.div(uint256(365).mul(24).mul(60)); _pendingRewards = _delta.div(60).mul(_rewardsPerMinute); return _pendingRewards; } } else { return _finalRewards; } return _pendingRewards; } function getGivenRewards() public view returns (uint256) { return givenRewards; } function getAmountLeftForStaking() public view returns (uint256) { return stakingSupply.sub(givenRewards); } function getStatus(address _who) public view returns (bool) { return isBlocked[_who]; } function getAPRs() public view returns (uint256, uint256, uint256) { return (apr30Days, apr180Days, apr365Days); } function getTotalStakedByUser(address _who) public view returns (uint256) { return stakedTokensByUser[_who]; } } // Smart Contract built by @polthedev at DRIVENlabs Inc // www.drivenecosystem.com
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @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); /** * @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 `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, 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 `from` to `to` 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 from, address to, uint256 amount ) external returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; import "./IERC20.sol"; import "./extensions/IERC20Metadata.sol"; import "../../utils/Context.sol"; /** * @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 Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, 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}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, 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}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom( address from, address to, uint256 amount ) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, spender) + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `from` to `to`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer( address from, address to, uint256 amount ) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; } _balances[to] += amount; emit Transfer(from, to, amount); _afterTokenTransfer(from, to, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; _balances[account] += amount; emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; } _totalSupply -= amount; emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance( address owner, address spender, uint256 amount ) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - amount); } } } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (utils/math/SafeMath.sol) pragma solidity ^0.8.0; // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the subtraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; import "../IERC20.sol"; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"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":false,"internalType":"address","name":"_who","type":"address"},{"indexed":false,"internalType":"uint256","name":"_index","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_amount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_period","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_endDate","type":"uint256"}],"name":"CreateDeposit","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_who","type":"address"},{"indexed":false,"internalType":"uint256","name":"_index","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"EmergencyWithdraw","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_who","type":"address"},{"indexed":false,"internalType":"uint256","name":"_index","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"Unstake","type":"event"},{"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":[],"name":"apr180Days","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"apr30Days","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"apr365Days","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_who","type":"address"}],"name":"blockAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_recipients","type":"address[]"}],"name":"blockMultiple","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_apr30","type":"uint256"},{"internalType":"uint256","name":"_apr180","type":"uint256"},{"internalType":"uint256","name":"_apr365","type":"uint256"}],"name":"changeAPR","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_who","type":"address"},{"internalType":"uint256","name":"_index","type":"uint256"}],"name":"computeFinalRewards","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_who","type":"address"},{"internalType":"uint256","name":"_index","type":"uint256"}],"name":"computePendingRewards","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":[],"name":"dexFactory","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"dexRouter","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_index","type":"uint256"}],"name":"emergencyWithdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_who","type":"address"},{"internalType":"uint256","name":"_index","type":"uint256"}],"name":"fetchDepositInfo","outputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getAPRs","outputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getAmountLeftForStaking","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_who","type":"address"}],"name":"getAvailableBalanceForTransfer","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getGivenRewards","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_who","type":"address"}],"name":"getStatus","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_who","type":"address"}],"name":"getTotalStakedByUser","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"givenRewards","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[],"name":"initialSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isBlocked","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isDex","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"lastIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"selfReport","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_who","type":"address"}],"name":"setDexAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newStakingSupply","type":"uint256"}],"name":"setStakingSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"uint256","name":"_period","type":"uint256"}],"name":"stakeTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"stakedTokensByUser","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"stakingSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"startStaking","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleStaking","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"totalStakedRightNow","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":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_who","type":"address"}],"name":"unblockAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_recipients","type":"address[]"}],"name":"unblockMultiple","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_index","type":"uint256"}],"name":"unstakeTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"userDeposit","outputs":[{"internalType":"uint256","name":"stakedAmount","type":"uint256"},{"internalType":"uint256","name":"periodOfTime","type":"uint256"},{"internalType":"uint256","name":"startDate","type":"uint256"},{"internalType":"uint256","name":"endDate","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_whatToken","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"withdrawWrongTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60c060405260006007556b033b2e3c9fd0803ce80000006008556000600c60006101000a81548160ff021916908315150217905550600a600d556014600e55601e600f557310ed43c718714eb63d5aa57b78b54704e256024e73ffffffffffffffffffffffffffffffffffffffff1660809073ffffffffffffffffffffffffffffffffffffffff1681525073ca143ce32fe78f1f7019d7d551a6402fc5350c7373ffffffffffffffffffffffffffffffffffffffff1660a09073ffffffffffffffffffffffffffffffffffffffff16815250348015620000de57600080fd5b506040518060400160405280600681526020017f52455633414c00000000000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f524556334c000000000000000000000000000000000000000000000000000000815250816003908051906020019062000163929190620004c6565b5080600490805190602001906200017c929190620004c6565b5050506200019f620001936200027560201b60201c565b6200027d60201b60201c565b600160068190555060016011600060805173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555060016011600060a05173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506200026f336008546200034360201b60201c565b62000722565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620003b6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003ad90620005d7565b60405180910390fd5b620003ca60008383620004bc60201b60201c565b8060026000828254620003de919062000632565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000435919062000632565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200049c9190620006a0565b60405180910390a3620004b860008383620004c160201b60201c565b5050565b505050565b505050565b828054620004d490620006ec565b90600052602060002090601f016020900481019282620004f8576000855562000544565b82601f106200051357805160ff191683800117855562000544565b8280016001018555821562000544579182015b828111156200054357825182559160200191906001019062000526565b5b50905062000553919062000557565b5090565b5b808211156200057257600081600090555060010162000558565b5090565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000620005bf601f8362000576565b9150620005cc8262000587565b602082019050919050565b60006020820190508181036000830152620005f281620005b0565b9050919050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006200063f82620005f9565b91506200064c83620005f9565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000684576200068362000603565b5b828201905092915050565b6200069a81620005f9565b82525050565b6000602082019050620006b760008301846200068f565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200070557607f821691505b602082108114156200071c576200071b620006bd565b5b50919050565b60805160a0516149956200074860003960006126f701526000610d4a01526149956000f3fe6080604052600436106102e85760003560e01c80636b2d057d11610190578063ad2bb1b3116100dc578063e482517711610095578063f2fde38b1161006f578063f2fde38b14610be8578063f377e7cf14610c11578063f603fc6c14610c3c578063fbac395114610c7957610328565b8063e482517714610b42578063ebebda2f14610b6b578063edc8f0d814610bab57610328565b8063ad2bb1b314610a19578063b13bd49114610a42578063b52d734314610a6f578063b8d8fbb414610aaf578063d5f571f814610ada578063dd62ed3e14610b0557610328565b80638da5cb5b116101495780639ca0c003116101235780639ca0c00314610937578063a457c2d714610974578063a9059cbb146109b1578063ac416f98146109ee57610328565b80638da5cb5b146108b8578063950b8124146108e357806395d89b411461090c57610328565b80636b2d057d146107965780636db54d08146107d357806370a0823114610810578063715018a61461084d57806371b0cbfa146108645780637a3eaf301461088f57610328565b8063313ce5671161024f5780633b8105b3116102085780635312ea8e116101e25780635312ea8e146106f05780635b20024414610719578063608e4dd014610744578063635fd7e31461076d57610328565b80633b8105b3146106715780633c11e12a146106885780633f5d2947146106c557610328565b8063313ce5671461057357806336b7016c1461059e578063378dc3dc146105c957806339509351146105f457806339af43b6146106315780633b7b61881461064857610328565b8063186d9d88116102a1578063186d9d881461045357806323b872dd1461047c57806326f9a952146104b957806329477c50146104e25780632a92b02e1461050b57806330ccebb51461053657610328565b806306fdde031461032d5780630758d924146103585780630951984d14610383578063095ea7b3146103c05780630c7e9116146103fd57806318160ddd1461042857610328565b36610328576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161031f906133b7565b60405180910390fd5b600080fd5b34801561033957600080fd5b50610342610cb6565b60405161034f919061345f565b60405180910390f35b34801561036457600080fd5b5061036d610d48565b60405161037a91906134c2565b60405180910390f35b34801561038f57600080fd5b506103aa60048036038101906103a5919061351d565b610d6c565b6040516103b79190613563565b60405180910390f35b3480156103cc57600080fd5b506103e760048036038101906103e291906135aa565b610db5565b6040516103f49190613605565b60405180910390f35b34801561040957600080fd5b50610412610dd8565b60405161041f9190613563565b60405180910390f35b34801561043457600080fd5b5061043d610dde565b60405161044a9190613563565b60405180910390f35b34801561045f57600080fd5b5061047a6004803603810190610475919061351d565b610de8565b005b34801561048857600080fd5b506104a3600480360381019061049e9190613620565b610ede565b6040516104b09190613605565b60405180910390f35b3480156104c557600080fd5b506104e060048036038101906104db919061351d565b610f0d565b005b3480156104ee57600080fd5b50610509600480360381019061050491906137bb565b610f70565b005b34801561051757600080fd5b50610520611019565b60405161052d9190613563565b60405180910390f35b34801561054257600080fd5b5061055d6004803603810190610558919061351d565b61101f565b60405161056a9190613605565b60405180910390f35b34801561057f57600080fd5b50610588611075565b6040516105959190613820565b60405180910390f35b3480156105aa57600080fd5b506105b361107e565b6040516105c09190613563565b60405180910390f35b3480156105d557600080fd5b506105de611084565b6040516105eb9190613563565b60405180910390f35b34801561060057600080fd5b5061061b600480360381019061061691906135aa565b61108a565b6040516106289190613605565b60405180910390f35b34801561063d57600080fd5b506106466110c1565b005b34801561065457600080fd5b5061066f600480360381019061066a919061383b565b61121c565b005b34801561067d57600080fd5b50610686611768565b005b34801561069457600080fd5b506106af60048036038101906106aa919061351d565b6117ca565b6040516106bc9190613605565b60405180910390f35b3480156106d157600080fd5b506106da6117ea565b6040516106e79190613563565b60405180910390f35b3480156106fc57600080fd5b506107176004803603810190610712919061387b565b6117f0565b005b34801561072557600080fd5b5061072e611ae5565b60405161073b9190613563565b60405180910390f35b34801561075057600080fd5b5061076b6004803603810190610766919061387b565b611aef565b005b34801561077957600080fd5b50610794600480360381019061078f91906138a8565b611f67565b005b3480156107a257600080fd5b506107bd60048036038101906107b8919061351d565b611f89565b6040516107ca9190613563565b60405180910390f35b3480156107df57600080fd5b506107fa60048036038101906107f5919061351d565b611fa1565b6040516108079190613563565b60405180910390f35b34801561081c57600080fd5b506108376004803603810190610832919061351d565b61207a565b6040516108449190613563565b60405180910390f35b34801561085957600080fd5b506108626120c2565b005b34801561087057600080fd5b506108796120d6565b6040516108869190613605565b60405180910390f35b34801561089b57600080fd5b506108b660048036038101906108b191906137bb565b6120e9565b005b3480156108c457600080fd5b506108cd612269565b6040516108da91906134c2565b60405180910390f35b3480156108ef57600080fd5b5061090a600480360381019061090591906135aa565b612293565b005b34801561091857600080fd5b5061092161232b565b60405161092e919061345f565b60405180910390f35b34801561094357600080fd5b5061095e600480360381019061095991906135aa565b6123bd565b60405161096b9190613563565b60405180910390f35b34801561098057600080fd5b5061099b600480360381019061099691906135aa565b6124ad565b6040516109a89190613605565b60405180910390f35b3480156109bd57600080fd5b506109d860048036038101906109d391906135aa565b612524565b6040516109e59190613605565b60405180910390f35b3480156109fa57600080fd5b50610a03612547565b604051610a109190613563565b60405180910390f35b348015610a2557600080fd5b50610a406004803603810190610a3b919061351d565b612565565b005b348015610a4e57600080fd5b50610a5761269f565b604051610a66939291906138fb565b60405180910390f35b348015610a7b57600080fd5b50610a966004803603810190610a9191906135aa565b6126b8565b604051610aa69493929190613932565b60405180910390f35b348015610abb57600080fd5b50610ac46126f5565b604051610ad191906134c2565b60405180910390f35b348015610ae657600080fd5b50610aef612719565b604051610afc9190613563565b60405180910390f35b348015610b1157600080fd5b50610b2c6004803603810190610b279190613977565b61271f565b604051610b399190613563565b60405180910390f35b348015610b4e57600080fd5b50610b696004803603810190610b64919061387b565b6127a6565b005b348015610b7757600080fd5b50610b926004803603810190610b8d91906135aa565b6127b8565b604051610ba29493929190613932565b60405180910390f35b348015610bb757600080fd5b50610bd26004803603810190610bcd919061351d565b612838565b604051610bdf9190613563565b60405180910390f35b348015610bf457600080fd5b50610c0f6004803603810190610c0a919061351d565b612850565b005b348015610c1d57600080fd5b50610c266128d4565b604051610c339190613563565b60405180910390f35b348015610c4857600080fd5b50610c636004803603810190610c5e91906135aa565b6128da565b604051610c709190613563565b60405180910390f35b348015610c8557600080fd5b50610ca06004803603810190610c9b919061351d565b612ac5565b604051610cad9190613605565b60405180910390f35b606060038054610cc5906139e6565b80601f0160208091040260200160405190810160405280929190818152602001828054610cf1906139e6565b8015610d3e5780601f10610d1357610100808354040283529160200191610d3e565b820191906000526020600020905b815481529060010190602001808311610d2157829003601f168201915b5050505050905090565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600080610dc0612ae5565b9050610dcd818585612aed565b600191505092915050565b600f5481565b6000600254905090565b610df0612cb8565b60011515601060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514610e83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7a90613a8a565b60405180910390fd5b6000601060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600080610ee9612ae5565b9050610ef6858285612d36565b610f01858585612dc2565b60019150509392505050565b610f15612cb8565b6001601160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b610f78612cb8565b60008151905060005b81811015611014576000838281518110610f9e57610f9d613aaa565b5b602002602001015190506000601060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050808061100c90613b08565b915050610f81565b505050565b600e5481565b6000601060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60006012905090565b600b5481565b60085481565b600080611095612ae5565b90506110b68185856110a7858961271f565b6110b19190613b51565b612aed565b600191505092915050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff161461112f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112690613c19565b60405180910390fd5b60001515601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515146111c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b990613cab565b60405180910390fd5b6001601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550565b60026006541415611262576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125990613d17565b60405180910390fd5b60026006819055503373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146112d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112cf90613c19565b60405180910390fd5b60001515601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615151461136b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136290613d83565b60405180910390fd5b60011515600c60009054906101000a900460ff161515146113c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b890613def565b60405180910390fd5b60006113cb612547565b90506113d633611fa1565b831115611418576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140f90613e81565b60405180910390fd5b600081101561145c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145390613eed565b60405180910390fd5b601e82148061146b575060b482145b80611477575061016d82145b6114b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ad90613f59565b60405180910390fd5b61150883600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612fb190919063ffffffff16565b600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061156083600a54612fb190919063ffffffff16565b600a819055506000601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490506115fd6001601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612fb190919063ffffffff16565b601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060006116586201518085612fc790919063ffffffff16565b9050604051806080016040528086815260200185815260200142815260200161168a8342612fb190919063ffffffff16565b815250601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000848152602001908152602001600020600082015181600001556020820151816001015560408201518160020155606082015181600301559050507ff84127a9cc9f90d43e7f65ffe3eefbcde7e0f76d4c22c8e7697cfc8037b07117338387876117408642612fb190919063ffffffff16565b604051611751959493929190613f79565b60405180910390a150505060016006819055505050565b611770612cb8565b60011515600c60009054906101000a900460ff16151514156117ac576000600c60006101000a81548160ff0219169083151502179055506117c8565b6001600c60006101000a81548160ff0219169083151502179055505b565b60116020528060005260406000206000915054906101000a900460ff1681565b600a5481565b60026006541415611836576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182d90613d17565b60405180910390fd5b60026006819055503373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146118ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118a390613c19565b60405180910390fd5b60011515600c60009054906101000a900460ff16151514611902576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f990613def565b60405180910390fd5b601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054811115611984576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197b90614018565b60405180910390fd5b600061199033836127b8565b50505090506000601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002060000181905550611a4081600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612fdd90919063ffffffff16565b600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611a9881600a54612fdd90919063ffffffff16565b600a819055507fbb757047c2b5f3974fe26b7c10f732e7bce710b0952a71082702781e62ae0595338383604051611ad193929190614038565b60405180910390a150600160068190555050565b6000600b54905090565b60026006541415611b35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b2c90613d17565b60405180910390fd5b60026006819055503373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611bab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ba290613c19565b60405180910390fd5b60011515600c60009054906101000a900460ff16151514611c01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bf890613def565b60405180910390fd5b601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054811115611c83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c7a90614018565b60405180910390fd5b600080611c9033846127b8565b9350505091506000821415611cda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cd1906140e1565b60405180910390fd5b80421015611d1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d149061414d565b60405180910390fd5b6000611d2933856123bd565b90506000611d35612547565b905080821115611d7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d71906141b9565b60405180910390fd5b6000601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600087815260200190815260200160002060000181905550611e2584600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612fdd90919063ffffffff16565b600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611e7d84600a54612fdd90919063ffffffff16565b600a81905550611e9882600b54612fb190919063ffffffff16565b600b819055503073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33846040518363ffffffff1660e01b8152600401611ed99291906141d9565b6020604051808303816000875af1158015611ef8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611f1c919061422e565b507ff960dbf9e5d0682f7a298ed974e33a28b4464914b7a2bfac12ae419a9afeb280338686604051611f5093929190614038565b60405180910390a150505050600160068190555050565b611f6f612cb8565b82600d8190555081600e8190555080600f81905550505050565b60096020528060005260406000206000915090505481565b6000803073ffffffffffffffffffffffffffffffffffffffff166370a08231846040518263ffffffff1660e01b8152600401611fdd91906134c2565b602060405180830381865afa158015611ffa573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061201e9190614270565b9050612072600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205482612fdd90919063ffffffff16565b915050919050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6120ca612cb8565b6120d46000612ff3565b565b600c60009054906101000a900460ff1681565b6120f1612cb8565b60008151905060005b8181101561226457600083828151811061211757612116613aaa565b5b60200260200101519050600061212b612269565b90508073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415806121b8575060001515601160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515145b6121f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121ee906142e9565b60405180910390fd5b6001601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050808061225c90613b08565b9150506120fa565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61229b612cb8565b60008290508073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb6122c4612269565b846040518363ffffffff1660e01b81526004016122e29291906141d9565b6020604051808303816000875af1158015612301573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612325919061422e565b50505050565b60606004805461233a906139e6565b80601f0160208091040260200160405190810160405280929190818152602001828054612366906139e6565b80156123b35780601f10612388576101008083540402835291602001916123b3565b820191906000526020600020905b81548152906001019060200180831161239657829003601f168201915b5050505050905090565b60008060006123cc85856127b8565b5050915091506000601e82141561241f576124186123f5600c6064612fc790919063ffffffff16565b61240a600d5486612fc790919063ffffffff16565b6130b990919063ffffffff16565b90506124a1565b60b482141561246a5761246361244060026064612fc790919063ffffffff16565b612455600e5486612fc790919063ffffffff16565b6130b990919063ffffffff16565b90506124a0565b61016d82141561249f5761249c606461248e600f5486612fc790919063ffffffff16565b6130b990919063ffffffff16565b90505b5b5b80935050505092915050565b6000806124b8612ae5565b905060006124c6828661271f565b90508381101561250b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125029061437b565b60405180910390fd5b6125188286868403612aed565b60019250505092915050565b60008061252f612ae5565b905061253c818585612dc2565b600191505092915050565b6000612560600b54600754612fdd90919063ffffffff16565b905090565b61256d612cb8565b6000612577612269565b90508073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141580612604575060001515601160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515145b612643576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161263a906142e9565b60405180910390fd5b6001601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6000806000600d54600e54600f54925092509250909192565b6012602052816000526040600020602052806000526040600020600091509150508060000154908060010154908060020154908060030154905084565b7f000000000000000000000000000000000000000000000000000000000000000081565b600d5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6127ae612cb8565b8060078190555050565b6000806000806000601260008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008781526020019081526020016000209050806000015481600101548260020154836003015494509450945094505092959194509250565b60136020528060005260406000206000915090505481565b612858612cb8565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156128c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128bf9061440d565b60405180910390fd5b6128d181612ff3565b50565b60075481565b6000806000806128ea86866127b8565b935093509350506000806000806129018a8a6123bd565b9050600042905085811015612aa3576129238782612fdd90919063ffffffff16565b9450601e8814156129a257612968612959603c61294b6018601e612fc790919063ffffffff16565b612fc790919063ffffffff16565b836130b990919063ffffffff16565b925061299083612982603c886130b990919063ffffffff16565b612fc790919063ffffffff16565b93508398505050505050505050612abf565b60b4881415612a1f576129e56129d6603c6129c8601860b4612fc790919063ffffffff16565b612fc790919063ffffffff16565b836130b990919063ffffffff16565b9250612a0d836129ff603c886130b990919063ffffffff16565b612fc790919063ffffffff16565b93508398505050505050505050612abf565b61016d881415612a9e57612a64612a55603c612a47601861016d612fc790919063ffffffff16565b612fc790919063ffffffff16565b836130b990919063ffffffff16565b9250612a8c83612a7e603c886130b990919063ffffffff16565b612fc790919063ffffffff16565b93508398505050505050505050612abf565b612ab3565b8198505050505050505050612abf565b83985050505050505050505b92915050565b60106020528060005260406000206000915054906101000a900460ff1681565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612b5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b549061449f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612bcd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bc490614531565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051612cab9190613563565b60405180910390a3505050565b612cc0612ae5565b73ffffffffffffffffffffffffffffffffffffffff16612cde612269565b73ffffffffffffffffffffffffffffffffffffffff1614612d34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d2b9061459d565b60405180910390fd5b565b6000612d42848461271f565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114612dbc5781811015612dae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612da590614609565b60405180910390fd5b612dbb8484848403612aed565b5b50505050565b6000601060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1690506000601060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905060001515601160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515148015612f14575060001515601160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515145b15612f6b576000612f2486611fa1565b905080841115612f69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f609061469b565b60405180910390fd5b505b600115158215151480612f82575060011515811515145b15612f9e57612f9985612f93612269565b856130cf565b612faa565b612fa98585856130cf565b5b5050505050565b60008183612fbf9190613b51565b905092915050565b60008183612fd591906146bb565b905092915050565b60008183612feb9190614715565b905092915050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081836130c79190614778565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561313f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131369061481b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156131af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131a6906148ad565b60405180910390fd5b6131ba838383613350565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015613240576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132379061493f565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546132d39190613b51565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516133379190613563565b60405180910390a361334a848484613355565b50505050565b505050565b505050565b600082825260208201905092915050565b7f596f7520617265206e6f7420616c6c6f77656420746f20646f20746861742100600082015250565b60006133a1601f8361335a565b91506133ac8261336b565b602082019050919050565b600060208201905081810360008301526133d081613394565b9050919050565b600081519050919050565b60005b838110156134005780820151818401526020810190506133e5565b8381111561340f576000848401525b50505050565b6000601f19601f8301169050919050565b6000613431826133d7565b61343b818561335a565b935061344b8185602086016133e2565b61345481613415565b840191505092915050565b600060208201905081810360008301526134798184613426565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006134ac82613481565b9050919050565b6134bc816134a1565b82525050565b60006020820190506134d760008301846134b3565b92915050565b6000604051905090565b600080fd5b600080fd5b6134fa816134a1565b811461350557600080fd5b50565b600081359050613517816134f1565b92915050565b600060208284031215613533576135326134e7565b5b600061354184828501613508565b91505092915050565b6000819050919050565b61355d8161354a565b82525050565b60006020820190506135786000830184613554565b92915050565b6135878161354a565b811461359257600080fd5b50565b6000813590506135a48161357e565b92915050565b600080604083850312156135c1576135c06134e7565b5b60006135cf85828601613508565b92505060206135e085828601613595565b9150509250929050565b60008115159050919050565b6135ff816135ea565b82525050565b600060208201905061361a60008301846135f6565b92915050565b600080600060608486031215613639576136386134e7565b5b600061364786828701613508565b935050602061365886828701613508565b925050604061366986828701613595565b9150509250925092565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6136b082613415565b810181811067ffffffffffffffff821117156136cf576136ce613678565b5b80604052505050565b60006136e26134dd565b90506136ee82826136a7565b919050565b600067ffffffffffffffff82111561370e5761370d613678565b5b602082029050602081019050919050565b600080fd5b6000613737613732846136f3565b6136d8565b9050808382526020820190506020840283018581111561375a5761375961371f565b5b835b81811015613783578061376f8882613508565b84526020840193505060208101905061375c565b5050509392505050565b600082601f8301126137a2576137a1613673565b5b81356137b2848260208601613724565b91505092915050565b6000602082840312156137d1576137d06134e7565b5b600082013567ffffffffffffffff8111156137ef576137ee6134ec565b5b6137fb8482850161378d565b91505092915050565b600060ff82169050919050565b61381a81613804565b82525050565b60006020820190506138356000830184613811565b92915050565b60008060408385031215613852576138516134e7565b5b600061386085828601613595565b925050602061387185828601613595565b9150509250929050565b600060208284031215613891576138906134e7565b5b600061389f84828501613595565b91505092915050565b6000806000606084860312156138c1576138c06134e7565b5b60006138cf86828701613595565b93505060206138e086828701613595565b92505060406138f186828701613595565b9150509250925092565b60006060820190506139106000830186613554565b61391d6020830185613554565b61392a6040830184613554565b949350505050565b60006080820190506139476000830187613554565b6139546020830186613554565b6139616040830185613554565b61396e6060830184613554565b95945050505050565b6000806040838503121561398e5761398d6134e7565b5b600061399c85828601613508565b92505060206139ad85828601613508565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806139fe57607f821691505b60208210811415613a1257613a116139b7565b5b50919050565b7f54686973206164647265737320697320616c726561647920756e6c6f636b656460008201527f2100000000000000000000000000000000000000000000000000000000000000602082015250565b6000613a7460218361335a565b9150613a7f82613a18565b604082019050919050565b60006020820190508181036000830152613aa381613a67565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613b138261354a565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613b4657613b45613ad9565b5b600182019050919050565b6000613b5c8261354a565b9150613b678361354a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613b9c57613b9b613ad9565b5b828201905092915050565b7f5468652063616c6c65722063616e206e6f7420626520616e6f7468657220736d60008201527f61727420636f6e74726163742100000000000000000000000000000000000000602082015250565b6000613c03602d8361335a565b9150613c0e82613ba7565b604082019050919050565b60006020820190508181036000830152613c3281613bf6565b9050919050565b7f54686973206164647265737320697320616c7265616479207265706f7274656460008201527f2100000000000000000000000000000000000000000000000000000000000000602082015250565b6000613c9560218361335a565b9150613ca082613c39565b604082019050919050565b60006020820190508181036000830152613cc481613c88565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000613d01601f8361335a565b9150613d0c82613ccb565b602082019050919050565b60006020820190508181036000830152613d3081613cf4565b9050919050565b7f596f752063616e2774207374616b6520746f6b656e7321000000000000000000600082015250565b6000613d6d60178361335a565b9150613d7882613d37565b602082019050919050565b60006020820190508181036000830152613d9c81613d60565b9050919050565b7f5374616b696e672066756e6374696f6e73206172652064697361626c65642100600082015250565b6000613dd9601f8361335a565b9150613de482613da3565b602082019050919050565b60006020820190508181036000830152613e0881613dcc565b9050919050565b7f596f752063616e2774207374616b65206d6f726520746f6b656e73207468616e60008201527f20796f7520686176652100000000000000000000000000000000000000000000602082015250565b6000613e6b602a8361335a565b9150613e7682613e0f565b604082019050919050565b60006020820190508181036000830152613e9a81613e5e565b9050919050565b7f596f752063616e2774207374616b6520616e796d6f7265210000000000000000600082015250565b6000613ed760188361335a565b9150613ee282613ea1565b602082019050919050565b60006020820190508181036000830152613f0681613eca565b9050919050565b7f496e76616c696420706572696f64210000000000000000000000000000000000600082015250565b6000613f43600f8361335a565b9150613f4e82613f0d565b602082019050919050565b60006020820190508181036000830152613f7281613f36565b9050919050565b600060a082019050613f8e60008301886134b3565b613f9b6020830187613554565b613fa86040830186613554565b613fb56060830185613554565b613fc26080830184613554565b9695505050505050565b7f4e6f6e2d6578697374656e7420696e6465782100000000000000000000000000600082015250565b600061400260138361335a565b915061400d82613fcc565b602082019050919050565b6000602082019050818103600083015261403181613ff5565b9050919050565b600060608201905061404d60008301866134b3565b61405a6020830185613554565b6140676040830184613554565b949350505050565b7f596f7520616c726561647920756e7374616b65642066726f6d2074686973206460008201527f65706f7369742100000000000000000000000000000000000000000000000000602082015250565b60006140cb60278361335a565b91506140d68261406f565b604082019050919050565b600060208201905081810360008301526140fa816140be565b9050919050565b7f596f752063616e277420756e7374616b65207965742100000000000000000000600082015250565b600061413760168361335a565b915061414282614101565b602082019050919050565b600060208201905081810360008301526141668161412a565b9050919050565b7f4e6f20746f6b656e73206c65667420666f722072657761726473210000000000600082015250565b60006141a3601b8361335a565b91506141ae8261416d565b602082019050919050565b600060208201905081810360008301526141d281614196565b9050919050565b60006040820190506141ee60008301856134b3565b6141fb6020830184613554565b9392505050565b61420b816135ea565b811461421657600080fd5b50565b60008151905061422881614202565b92915050565b600060208284031215614244576142436134e7565b5b600061425284828501614219565b91505092915050565b60008151905061426a8161357e565b92915050565b600060208284031215614286576142856134e7565b5b60006142948482850161425b565b91505092915050565b7f596f752063616e277420626c6f636b2074686973206164647265737321000000600082015250565b60006142d3601d8361335a565b91506142de8261429d565b602082019050919050565b60006020820190508181036000830152614302816142c6565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061436560258361335a565b915061437082614309565b604082019050919050565b6000602082019050818103600083015261439481614358565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006143f760268361335a565b91506144028261439b565b604082019050919050565b60006020820190508181036000830152614426816143ea565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061448960248361335a565b91506144948261442d565b604082019050919050565b600060208201905081810360008301526144b88161447c565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061451b60228361335a565b9150614526826144bf565b604082019050919050565b6000602082019050818103600083015261454a8161450e565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061458760208361335a565b915061459282614551565b602082019050919050565b600060208201905081810360008301526145b68161457a565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b60006145f3601d8361335a565b91506145fe826145bd565b602082019050919050565b60006020820190508181036000830152614622816145e6565b9050919050565b7f596f752063616e2774207472616e73666572207468697320616d6f756e74206260008201527f65636175736520796f752068617665207374616b656420746f6b656e73210000602082015250565b6000614685603e8361335a565b915061469082614629565b604082019050919050565b600060208201905081810360008301526146b481614678565b9050919050565b60006146c68261354a565b91506146d18361354a565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561470a57614709613ad9565b5b828202905092915050565b60006147208261354a565b915061472b8361354a565b92508282101561473e5761473d613ad9565b5b828203905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006147838261354a565b915061478e8361354a565b92508261479e5761479d614749565b5b828204905092915050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061480560258361335a565b9150614810826147a9565b604082019050919050565b60006020820190508181036000830152614834816147f8565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061489760238361335a565b91506148a28261483b565b604082019050919050565b600060208201905081810360008301526148c68161488a565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061492960268361335a565b9150614934826148cd565b604082019050919050565b600060208201905081810360008301526149588161491c565b905091905056fea2646970667358221220f3413d2ab0d6e8eda44ee5178fc5cb6e99564539f7b0e77e3df48939ea8c507064736f6c634300080a0033
Deployed Bytecode
0x6080604052600436106102e85760003560e01c80636b2d057d11610190578063ad2bb1b3116100dc578063e482517711610095578063f2fde38b1161006f578063f2fde38b14610be8578063f377e7cf14610c11578063f603fc6c14610c3c578063fbac395114610c7957610328565b8063e482517714610b42578063ebebda2f14610b6b578063edc8f0d814610bab57610328565b8063ad2bb1b314610a19578063b13bd49114610a42578063b52d734314610a6f578063b8d8fbb414610aaf578063d5f571f814610ada578063dd62ed3e14610b0557610328565b80638da5cb5b116101495780639ca0c003116101235780639ca0c00314610937578063a457c2d714610974578063a9059cbb146109b1578063ac416f98146109ee57610328565b80638da5cb5b146108b8578063950b8124146108e357806395d89b411461090c57610328565b80636b2d057d146107965780636db54d08146107d357806370a0823114610810578063715018a61461084d57806371b0cbfa146108645780637a3eaf301461088f57610328565b8063313ce5671161024f5780633b8105b3116102085780635312ea8e116101e25780635312ea8e146106f05780635b20024414610719578063608e4dd014610744578063635fd7e31461076d57610328565b80633b8105b3146106715780633c11e12a146106885780633f5d2947146106c557610328565b8063313ce5671461057357806336b7016c1461059e578063378dc3dc146105c957806339509351146105f457806339af43b6146106315780633b7b61881461064857610328565b8063186d9d88116102a1578063186d9d881461045357806323b872dd1461047c57806326f9a952146104b957806329477c50146104e25780632a92b02e1461050b57806330ccebb51461053657610328565b806306fdde031461032d5780630758d924146103585780630951984d14610383578063095ea7b3146103c05780630c7e9116146103fd57806318160ddd1461042857610328565b36610328576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161031f906133b7565b60405180910390fd5b600080fd5b34801561033957600080fd5b50610342610cb6565b60405161034f919061345f565b60405180910390f35b34801561036457600080fd5b5061036d610d48565b60405161037a91906134c2565b60405180910390f35b34801561038f57600080fd5b506103aa60048036038101906103a5919061351d565b610d6c565b6040516103b79190613563565b60405180910390f35b3480156103cc57600080fd5b506103e760048036038101906103e291906135aa565b610db5565b6040516103f49190613605565b60405180910390f35b34801561040957600080fd5b50610412610dd8565b60405161041f9190613563565b60405180910390f35b34801561043457600080fd5b5061043d610dde565b60405161044a9190613563565b60405180910390f35b34801561045f57600080fd5b5061047a6004803603810190610475919061351d565b610de8565b005b34801561048857600080fd5b506104a3600480360381019061049e9190613620565b610ede565b6040516104b09190613605565b60405180910390f35b3480156104c557600080fd5b506104e060048036038101906104db919061351d565b610f0d565b005b3480156104ee57600080fd5b50610509600480360381019061050491906137bb565b610f70565b005b34801561051757600080fd5b50610520611019565b60405161052d9190613563565b60405180910390f35b34801561054257600080fd5b5061055d6004803603810190610558919061351d565b61101f565b60405161056a9190613605565b60405180910390f35b34801561057f57600080fd5b50610588611075565b6040516105959190613820565b60405180910390f35b3480156105aa57600080fd5b506105b361107e565b6040516105c09190613563565b60405180910390f35b3480156105d557600080fd5b506105de611084565b6040516105eb9190613563565b60405180910390f35b34801561060057600080fd5b5061061b600480360381019061061691906135aa565b61108a565b6040516106289190613605565b60405180910390f35b34801561063d57600080fd5b506106466110c1565b005b34801561065457600080fd5b5061066f600480360381019061066a919061383b565b61121c565b005b34801561067d57600080fd5b50610686611768565b005b34801561069457600080fd5b506106af60048036038101906106aa919061351d565b6117ca565b6040516106bc9190613605565b60405180910390f35b3480156106d157600080fd5b506106da6117ea565b6040516106e79190613563565b60405180910390f35b3480156106fc57600080fd5b506107176004803603810190610712919061387b565b6117f0565b005b34801561072557600080fd5b5061072e611ae5565b60405161073b9190613563565b60405180910390f35b34801561075057600080fd5b5061076b6004803603810190610766919061387b565b611aef565b005b34801561077957600080fd5b50610794600480360381019061078f91906138a8565b611f67565b005b3480156107a257600080fd5b506107bd60048036038101906107b8919061351d565b611f89565b6040516107ca9190613563565b60405180910390f35b3480156107df57600080fd5b506107fa60048036038101906107f5919061351d565b611fa1565b6040516108079190613563565b60405180910390f35b34801561081c57600080fd5b506108376004803603810190610832919061351d565b61207a565b6040516108449190613563565b60405180910390f35b34801561085957600080fd5b506108626120c2565b005b34801561087057600080fd5b506108796120d6565b6040516108869190613605565b60405180910390f35b34801561089b57600080fd5b506108b660048036038101906108b191906137bb565b6120e9565b005b3480156108c457600080fd5b506108cd612269565b6040516108da91906134c2565b60405180910390f35b3480156108ef57600080fd5b5061090a600480360381019061090591906135aa565b612293565b005b34801561091857600080fd5b5061092161232b565b60405161092e919061345f565b60405180910390f35b34801561094357600080fd5b5061095e600480360381019061095991906135aa565b6123bd565b60405161096b9190613563565b60405180910390f35b34801561098057600080fd5b5061099b600480360381019061099691906135aa565b6124ad565b6040516109a89190613605565b60405180910390f35b3480156109bd57600080fd5b506109d860048036038101906109d391906135aa565b612524565b6040516109e59190613605565b60405180910390f35b3480156109fa57600080fd5b50610a03612547565b604051610a109190613563565b60405180910390f35b348015610a2557600080fd5b50610a406004803603810190610a3b919061351d565b612565565b005b348015610a4e57600080fd5b50610a5761269f565b604051610a66939291906138fb565b60405180910390f35b348015610a7b57600080fd5b50610a966004803603810190610a9191906135aa565b6126b8565b604051610aa69493929190613932565b60405180910390f35b348015610abb57600080fd5b50610ac46126f5565b604051610ad191906134c2565b60405180910390f35b348015610ae657600080fd5b50610aef612719565b604051610afc9190613563565b60405180910390f35b348015610b1157600080fd5b50610b2c6004803603810190610b279190613977565b61271f565b604051610b399190613563565b60405180910390f35b348015610b4e57600080fd5b50610b696004803603810190610b64919061387b565b6127a6565b005b348015610b7757600080fd5b50610b926004803603810190610b8d91906135aa565b6127b8565b604051610ba29493929190613932565b60405180910390f35b348015610bb757600080fd5b50610bd26004803603810190610bcd919061351d565b612838565b604051610bdf9190613563565b60405180910390f35b348015610bf457600080fd5b50610c0f6004803603810190610c0a919061351d565b612850565b005b348015610c1d57600080fd5b50610c266128d4565b604051610c339190613563565b60405180910390f35b348015610c4857600080fd5b50610c636004803603810190610c5e91906135aa565b6128da565b604051610c709190613563565b60405180910390f35b348015610c8557600080fd5b50610ca06004803603810190610c9b919061351d565b612ac5565b604051610cad9190613605565b60405180910390f35b606060038054610cc5906139e6565b80601f0160208091040260200160405190810160405280929190818152602001828054610cf1906139e6565b8015610d3e5780601f10610d1357610100808354040283529160200191610d3e565b820191906000526020600020905b815481529060010190602001808311610d2157829003601f168201915b5050505050905090565b7f00000000000000000000000010ed43c718714eb63d5aa57b78b54704e256024e81565b6000600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600080610dc0612ae5565b9050610dcd818585612aed565b600191505092915050565b600f5481565b6000600254905090565b610df0612cb8565b60011515601060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514610e83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7a90613a8a565b60405180910390fd5b6000601060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600080610ee9612ae5565b9050610ef6858285612d36565b610f01858585612dc2565b60019150509392505050565b610f15612cb8565b6001601160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b610f78612cb8565b60008151905060005b81811015611014576000838281518110610f9e57610f9d613aaa565b5b602002602001015190506000601060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050808061100c90613b08565b915050610f81565b505050565b600e5481565b6000601060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60006012905090565b600b5481565b60085481565b600080611095612ae5565b90506110b68185856110a7858961271f565b6110b19190613b51565b612aed565b600191505092915050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff161461112f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112690613c19565b60405180910390fd5b60001515601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515146111c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b990613cab565b60405180910390fd5b6001601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550565b60026006541415611262576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125990613d17565b60405180910390fd5b60026006819055503373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146112d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112cf90613c19565b60405180910390fd5b60001515601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615151461136b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136290613d83565b60405180910390fd5b60011515600c60009054906101000a900460ff161515146113c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b890613def565b60405180910390fd5b60006113cb612547565b90506113d633611fa1565b831115611418576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140f90613e81565b60405180910390fd5b600081101561145c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145390613eed565b60405180910390fd5b601e82148061146b575060b482145b80611477575061016d82145b6114b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ad90613f59565b60405180910390fd5b61150883600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612fb190919063ffffffff16565b600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061156083600a54612fb190919063ffffffff16565b600a819055506000601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490506115fd6001601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612fb190919063ffffffff16565b601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060006116586201518085612fc790919063ffffffff16565b9050604051806080016040528086815260200185815260200142815260200161168a8342612fb190919063ffffffff16565b815250601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000848152602001908152602001600020600082015181600001556020820151816001015560408201518160020155606082015181600301559050507ff84127a9cc9f90d43e7f65ffe3eefbcde7e0f76d4c22c8e7697cfc8037b07117338387876117408642612fb190919063ffffffff16565b604051611751959493929190613f79565b60405180910390a150505060016006819055505050565b611770612cb8565b60011515600c60009054906101000a900460ff16151514156117ac576000600c60006101000a81548160ff0219169083151502179055506117c8565b6001600c60006101000a81548160ff0219169083151502179055505b565b60116020528060005260406000206000915054906101000a900460ff1681565b600a5481565b60026006541415611836576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182d90613d17565b60405180910390fd5b60026006819055503373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146118ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118a390613c19565b60405180910390fd5b60011515600c60009054906101000a900460ff16151514611902576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f990613def565b60405180910390fd5b601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054811115611984576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197b90614018565b60405180910390fd5b600061199033836127b8565b50505090506000601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002060000181905550611a4081600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612fdd90919063ffffffff16565b600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611a9881600a54612fdd90919063ffffffff16565b600a819055507fbb757047c2b5f3974fe26b7c10f732e7bce710b0952a71082702781e62ae0595338383604051611ad193929190614038565b60405180910390a150600160068190555050565b6000600b54905090565b60026006541415611b35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b2c90613d17565b60405180910390fd5b60026006819055503373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611bab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ba290613c19565b60405180910390fd5b60011515600c60009054906101000a900460ff16151514611c01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bf890613def565b60405180910390fd5b601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054811115611c83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c7a90614018565b60405180910390fd5b600080611c9033846127b8565b9350505091506000821415611cda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cd1906140e1565b60405180910390fd5b80421015611d1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d149061414d565b60405180910390fd5b6000611d2933856123bd565b90506000611d35612547565b905080821115611d7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d71906141b9565b60405180910390fd5b6000601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600087815260200190815260200160002060000181905550611e2584600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612fdd90919063ffffffff16565b600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611e7d84600a54612fdd90919063ffffffff16565b600a81905550611e9882600b54612fb190919063ffffffff16565b600b819055503073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33846040518363ffffffff1660e01b8152600401611ed99291906141d9565b6020604051808303816000875af1158015611ef8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611f1c919061422e565b507ff960dbf9e5d0682f7a298ed974e33a28b4464914b7a2bfac12ae419a9afeb280338686604051611f5093929190614038565b60405180910390a150505050600160068190555050565b611f6f612cb8565b82600d8190555081600e8190555080600f81905550505050565b60096020528060005260406000206000915090505481565b6000803073ffffffffffffffffffffffffffffffffffffffff166370a08231846040518263ffffffff1660e01b8152600401611fdd91906134c2565b602060405180830381865afa158015611ffa573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061201e9190614270565b9050612072600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205482612fdd90919063ffffffff16565b915050919050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6120ca612cb8565b6120d46000612ff3565b565b600c60009054906101000a900460ff1681565b6120f1612cb8565b60008151905060005b8181101561226457600083828151811061211757612116613aaa565b5b60200260200101519050600061212b612269565b90508073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415806121b8575060001515601160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515145b6121f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121ee906142e9565b60405180910390fd5b6001601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050808061225c90613b08565b9150506120fa565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61229b612cb8565b60008290508073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb6122c4612269565b846040518363ffffffff1660e01b81526004016122e29291906141d9565b6020604051808303816000875af1158015612301573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612325919061422e565b50505050565b60606004805461233a906139e6565b80601f0160208091040260200160405190810160405280929190818152602001828054612366906139e6565b80156123b35780601f10612388576101008083540402835291602001916123b3565b820191906000526020600020905b81548152906001019060200180831161239657829003601f168201915b5050505050905090565b60008060006123cc85856127b8565b5050915091506000601e82141561241f576124186123f5600c6064612fc790919063ffffffff16565b61240a600d5486612fc790919063ffffffff16565b6130b990919063ffffffff16565b90506124a1565b60b482141561246a5761246361244060026064612fc790919063ffffffff16565b612455600e5486612fc790919063ffffffff16565b6130b990919063ffffffff16565b90506124a0565b61016d82141561249f5761249c606461248e600f5486612fc790919063ffffffff16565b6130b990919063ffffffff16565b90505b5b5b80935050505092915050565b6000806124b8612ae5565b905060006124c6828661271f565b90508381101561250b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125029061437b565b60405180910390fd5b6125188286868403612aed565b60019250505092915050565b60008061252f612ae5565b905061253c818585612dc2565b600191505092915050565b6000612560600b54600754612fdd90919063ffffffff16565b905090565b61256d612cb8565b6000612577612269565b90508073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141580612604575060001515601160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515145b612643576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161263a906142e9565b60405180910390fd5b6001601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6000806000600d54600e54600f54925092509250909192565b6012602052816000526040600020602052806000526040600020600091509150508060000154908060010154908060020154908060030154905084565b7f000000000000000000000000ca143ce32fe78f1f7019d7d551a6402fc5350c7381565b600d5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6127ae612cb8565b8060078190555050565b6000806000806000601260008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008781526020019081526020016000209050806000015481600101548260020154836003015494509450945094505092959194509250565b60136020528060005260406000206000915090505481565b612858612cb8565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156128c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128bf9061440d565b60405180910390fd5b6128d181612ff3565b50565b60075481565b6000806000806128ea86866127b8565b935093509350506000806000806129018a8a6123bd565b9050600042905085811015612aa3576129238782612fdd90919063ffffffff16565b9450601e8814156129a257612968612959603c61294b6018601e612fc790919063ffffffff16565b612fc790919063ffffffff16565b836130b990919063ffffffff16565b925061299083612982603c886130b990919063ffffffff16565b612fc790919063ffffffff16565b93508398505050505050505050612abf565b60b4881415612a1f576129e56129d6603c6129c8601860b4612fc790919063ffffffff16565b612fc790919063ffffffff16565b836130b990919063ffffffff16565b9250612a0d836129ff603c886130b990919063ffffffff16565b612fc790919063ffffffff16565b93508398505050505050505050612abf565b61016d881415612a9e57612a64612a55603c612a47601861016d612fc790919063ffffffff16565b612fc790919063ffffffff16565b836130b990919063ffffffff16565b9250612a8c83612a7e603c886130b990919063ffffffff16565b612fc790919063ffffffff16565b93508398505050505050505050612abf565b612ab3565b8198505050505050505050612abf565b83985050505050505050505b92915050565b60106020528060005260406000206000915054906101000a900460ff1681565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612b5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b549061449f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612bcd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bc490614531565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051612cab9190613563565b60405180910390a3505050565b612cc0612ae5565b73ffffffffffffffffffffffffffffffffffffffff16612cde612269565b73ffffffffffffffffffffffffffffffffffffffff1614612d34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d2b9061459d565b60405180910390fd5b565b6000612d42848461271f565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114612dbc5781811015612dae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612da590614609565b60405180910390fd5b612dbb8484848403612aed565b5b50505050565b6000601060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1690506000601060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905060001515601160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515148015612f14575060001515601160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515145b15612f6b576000612f2486611fa1565b905080841115612f69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f609061469b565b60405180910390fd5b505b600115158215151480612f82575060011515811515145b15612f9e57612f9985612f93612269565b856130cf565b612faa565b612fa98585856130cf565b5b5050505050565b60008183612fbf9190613b51565b905092915050565b60008183612fd591906146bb565b905092915050565b60008183612feb9190614715565b905092915050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081836130c79190614778565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561313f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131369061481b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156131af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131a6906148ad565b60405180910390fd5b6131ba838383613350565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015613240576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132379061493f565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546132d39190613b51565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516133379190613563565b60405180910390a361334a848484613355565b50505050565b505050565b505050565b600082825260208201905092915050565b7f596f7520617265206e6f7420616c6c6f77656420746f20646f20746861742100600082015250565b60006133a1601f8361335a565b91506133ac8261336b565b602082019050919050565b600060208201905081810360008301526133d081613394565b9050919050565b600081519050919050565b60005b838110156134005780820151818401526020810190506133e5565b8381111561340f576000848401525b50505050565b6000601f19601f8301169050919050565b6000613431826133d7565b61343b818561335a565b935061344b8185602086016133e2565b61345481613415565b840191505092915050565b600060208201905081810360008301526134798184613426565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006134ac82613481565b9050919050565b6134bc816134a1565b82525050565b60006020820190506134d760008301846134b3565b92915050565b6000604051905090565b600080fd5b600080fd5b6134fa816134a1565b811461350557600080fd5b50565b600081359050613517816134f1565b92915050565b600060208284031215613533576135326134e7565b5b600061354184828501613508565b91505092915050565b6000819050919050565b61355d8161354a565b82525050565b60006020820190506135786000830184613554565b92915050565b6135878161354a565b811461359257600080fd5b50565b6000813590506135a48161357e565b92915050565b600080604083850312156135c1576135c06134e7565b5b60006135cf85828601613508565b92505060206135e085828601613595565b9150509250929050565b60008115159050919050565b6135ff816135ea565b82525050565b600060208201905061361a60008301846135f6565b92915050565b600080600060608486031215613639576136386134e7565b5b600061364786828701613508565b935050602061365886828701613508565b925050604061366986828701613595565b9150509250925092565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6136b082613415565b810181811067ffffffffffffffff821117156136cf576136ce613678565b5b80604052505050565b60006136e26134dd565b90506136ee82826136a7565b919050565b600067ffffffffffffffff82111561370e5761370d613678565b5b602082029050602081019050919050565b600080fd5b6000613737613732846136f3565b6136d8565b9050808382526020820190506020840283018581111561375a5761375961371f565b5b835b81811015613783578061376f8882613508565b84526020840193505060208101905061375c565b5050509392505050565b600082601f8301126137a2576137a1613673565b5b81356137b2848260208601613724565b91505092915050565b6000602082840312156137d1576137d06134e7565b5b600082013567ffffffffffffffff8111156137ef576137ee6134ec565b5b6137fb8482850161378d565b91505092915050565b600060ff82169050919050565b61381a81613804565b82525050565b60006020820190506138356000830184613811565b92915050565b60008060408385031215613852576138516134e7565b5b600061386085828601613595565b925050602061387185828601613595565b9150509250929050565b600060208284031215613891576138906134e7565b5b600061389f84828501613595565b91505092915050565b6000806000606084860312156138c1576138c06134e7565b5b60006138cf86828701613595565b93505060206138e086828701613595565b92505060406138f186828701613595565b9150509250925092565b60006060820190506139106000830186613554565b61391d6020830185613554565b61392a6040830184613554565b949350505050565b60006080820190506139476000830187613554565b6139546020830186613554565b6139616040830185613554565b61396e6060830184613554565b95945050505050565b6000806040838503121561398e5761398d6134e7565b5b600061399c85828601613508565b92505060206139ad85828601613508565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806139fe57607f821691505b60208210811415613a1257613a116139b7565b5b50919050565b7f54686973206164647265737320697320616c726561647920756e6c6f636b656460008201527f2100000000000000000000000000000000000000000000000000000000000000602082015250565b6000613a7460218361335a565b9150613a7f82613a18565b604082019050919050565b60006020820190508181036000830152613aa381613a67565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613b138261354a565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613b4657613b45613ad9565b5b600182019050919050565b6000613b5c8261354a565b9150613b678361354a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613b9c57613b9b613ad9565b5b828201905092915050565b7f5468652063616c6c65722063616e206e6f7420626520616e6f7468657220736d60008201527f61727420636f6e74726163742100000000000000000000000000000000000000602082015250565b6000613c03602d8361335a565b9150613c0e82613ba7565b604082019050919050565b60006020820190508181036000830152613c3281613bf6565b9050919050565b7f54686973206164647265737320697320616c7265616479207265706f7274656460008201527f2100000000000000000000000000000000000000000000000000000000000000602082015250565b6000613c9560218361335a565b9150613ca082613c39565b604082019050919050565b60006020820190508181036000830152613cc481613c88565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000613d01601f8361335a565b9150613d0c82613ccb565b602082019050919050565b60006020820190508181036000830152613d3081613cf4565b9050919050565b7f596f752063616e2774207374616b6520746f6b656e7321000000000000000000600082015250565b6000613d6d60178361335a565b9150613d7882613d37565b602082019050919050565b60006020820190508181036000830152613d9c81613d60565b9050919050565b7f5374616b696e672066756e6374696f6e73206172652064697361626c65642100600082015250565b6000613dd9601f8361335a565b9150613de482613da3565b602082019050919050565b60006020820190508181036000830152613e0881613dcc565b9050919050565b7f596f752063616e2774207374616b65206d6f726520746f6b656e73207468616e60008201527f20796f7520686176652100000000000000000000000000000000000000000000602082015250565b6000613e6b602a8361335a565b9150613e7682613e0f565b604082019050919050565b60006020820190508181036000830152613e9a81613e5e565b9050919050565b7f596f752063616e2774207374616b6520616e796d6f7265210000000000000000600082015250565b6000613ed760188361335a565b9150613ee282613ea1565b602082019050919050565b60006020820190508181036000830152613f0681613eca565b9050919050565b7f496e76616c696420706572696f64210000000000000000000000000000000000600082015250565b6000613f43600f8361335a565b9150613f4e82613f0d565b602082019050919050565b60006020820190508181036000830152613f7281613f36565b9050919050565b600060a082019050613f8e60008301886134b3565b613f9b6020830187613554565b613fa86040830186613554565b613fb56060830185613554565b613fc26080830184613554565b9695505050505050565b7f4e6f6e2d6578697374656e7420696e6465782100000000000000000000000000600082015250565b600061400260138361335a565b915061400d82613fcc565b602082019050919050565b6000602082019050818103600083015261403181613ff5565b9050919050565b600060608201905061404d60008301866134b3565b61405a6020830185613554565b6140676040830184613554565b949350505050565b7f596f7520616c726561647920756e7374616b65642066726f6d2074686973206460008201527f65706f7369742100000000000000000000000000000000000000000000000000602082015250565b60006140cb60278361335a565b91506140d68261406f565b604082019050919050565b600060208201905081810360008301526140fa816140be565b9050919050565b7f596f752063616e277420756e7374616b65207965742100000000000000000000600082015250565b600061413760168361335a565b915061414282614101565b602082019050919050565b600060208201905081810360008301526141668161412a565b9050919050565b7f4e6f20746f6b656e73206c65667420666f722072657761726473210000000000600082015250565b60006141a3601b8361335a565b91506141ae8261416d565b602082019050919050565b600060208201905081810360008301526141d281614196565b9050919050565b60006040820190506141ee60008301856134b3565b6141fb6020830184613554565b9392505050565b61420b816135ea565b811461421657600080fd5b50565b60008151905061422881614202565b92915050565b600060208284031215614244576142436134e7565b5b600061425284828501614219565b91505092915050565b60008151905061426a8161357e565b92915050565b600060208284031215614286576142856134e7565b5b60006142948482850161425b565b91505092915050565b7f596f752063616e277420626c6f636b2074686973206164647265737321000000600082015250565b60006142d3601d8361335a565b91506142de8261429d565b602082019050919050565b60006020820190508181036000830152614302816142c6565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061436560258361335a565b915061437082614309565b604082019050919050565b6000602082019050818103600083015261439481614358565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006143f760268361335a565b91506144028261439b565b604082019050919050565b60006020820190508181036000830152614426816143ea565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061448960248361335a565b91506144948261442d565b604082019050919050565b600060208201905081810360008301526144b88161447c565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061451b60228361335a565b9150614526826144bf565b604082019050919050565b6000602082019050818103600083015261454a8161450e565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061458760208361335a565b915061459282614551565b602082019050919050565b600060208201905081810360008301526145b68161457a565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b60006145f3601d8361335a565b91506145fe826145bd565b602082019050919050565b60006020820190508181036000830152614622816145e6565b9050919050565b7f596f752063616e2774207472616e73666572207468697320616d6f756e74206260008201527f65636175736520796f752068617665207374616b656420746f6b656e73210000602082015250565b6000614685603e8361335a565b915061469082614629565b604082019050919050565b600060208201905081810360008301526146b481614678565b9050919050565b60006146c68261354a565b91506146d18361354a565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561470a57614709613ad9565b5b828202905092915050565b60006147208261354a565b915061472b8361354a565b92508282101561473e5761473d613ad9565b5b828203905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006147838261354a565b915061478e8361354a565b92508261479e5761479d614749565b5b828204905092915050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061480560258361335a565b9150614810826147a9565b604082019050919050565b60006020820190508181036000830152614834816147f8565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061489760238361335a565b91506148a28261483b565b604082019050919050565b600060208201905081810360008301526148c68161488a565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061492960268361335a565b9150614934826148cd565b604082019050919050565b600060208201905081810360008301526149588161491c565b905091905056fea2646970667358221220f3413d2ab0d6e8eda44ee5178fc5cb6e99564539f7b0e77e3df48939ea8c507064736f6c634300080a0033
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.