Token DESIRE
Polygon Sponsored slots available. Book your slot here!
Overview ERC-20
Price
$0.00 @ 0.000000 MATIC
Fully Diluted Market Cap
Total Supply:
500,000 DESIRE
Holders:
208 addresses
Contract:
Decimals:
18
Balance
42,119.56819335643674273 DESIREValue
$0.00
[ Download CSV Export ]
[ Download CSV Export ]
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Similar Match Source Code
Note: This contract matches the deployed ByteCode of the Source Code for Contract 0x654e095F24b3b977698ae14C20e6DB9c4f74Ab35
Contract Name:
DesireTokenV3
Compiler Version
v0.8.6+commit.11564f7e
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
/* .-.-. .-.-. .-.-. .-.-. .-.-. .-.-. ( D .'( E .'( S .'( I .'( R .'( E .' `.( `.( `.( `.( `.( `.( by sandman.finance */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.6; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/math/SafeMath.sol"; import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; /* TABLE ERROR REFERENCE: ERR1: The sender is on the blacklist. Please contact to support. ERR2: The recipient is on the blacklist. Please contact to support. ERR3: User cannot send more than allowed. ERR4: User is not operator. ERR5: User is excluded from antibot system. ERR6: Bot address is already on the blacklist. ERR7: The expiration time has to be greater than 0. ERR8: Bot address is not found on the blacklist. ERR9: Address cant be 0. */ // DesireToken contract DesireTokenV3 is ERC20, Ownable { event OperatorTransferred(address indexed previousOperator, address indexed newOperator); event TransferTaxRateUpdated(address indexed operator, uint256 previousRate, uint256 newRate); event HoldingAmountRateUpdated(address indexed operator, uint256 previousRate, uint256 newRate); event AntiBotWorkingStatus(address indexed operator, bool previousStatus, bool newStatus); event AddBotAddress(address indexed botAddress); event RemoveBotAddress(address indexed botAddress); event ExcludedOperatorsUpdated(address indexed operatorAddress, bool previousStatus, bool newStatus); event ExcludedHoldersUpdated(address indexed holderAddress, bool previousStatus, bool newStatus); using SafeMath for uint256; ///@dev Max transfer amount rate. (default is 3% of total supply) uint16 public maxUserTransferAmountRate = 300; ///@dev Max holding rate. (default is 9% of total supply) uint16 public maxUserHoldAmountRate = 900; ///@dev Length of blacklist addressess uint256 public blacklistLength; ///@dev Enable|Disable antiBot bool public antiBotWorking; ///@dev Exclude operators from antiBot system mapping(address => bool) private _excludedOperatorsFromAntiBot; ///@dev Exclude holders from antiBot system mapping(address => bool) private _excludedHoldersFromAntiBot; ///@dev mapping store blacklist. address=>ExpirationTime mapping(address => uint256) private _blacklist; address public constant BURN_ADDRESS = 0x000000000000000000000000000000000000dEaD; // operator role address internal _operator; // MODIFIERS modifier antiBot(address _sender, address _recipient, uint256 _amount) { //check blacklist require(!_blacklistCheck(_sender), "ERR1"); require(!_blacklistCheck(_recipient), "ERR2"); // This code will be disabled after launch and before farming if (antiBotWorking){ // check if sender|recipient has a tx amount is within the allowed limits if (_isNotOperatorExcludedFromAntiBot(_sender)){ if(_isNotOperatorExcludedFromAntiBot(_recipient)) require(_amount <= _maxUserTransferAmount(), "ERR3"); } } _; } modifier onlyOperator() { require(_operator == _msgSender(), "ERR4"); _; } constructor() ERC20('DESIRE', 'DESIRE') { // Exclude operator addresses, lps, etc from antibot system _excludedOperatorsFromAntiBot[msg.sender] = true; _excludedOperatorsFromAntiBot[address(0)] = true; _excludedOperatorsFromAntiBot[address(this)] = true; _excludedOperatorsFromAntiBot[BURN_ADDRESS] = true; _operator = _msgSender(); } function mint(address _to, uint256 _amount) public onlyOwner { _mint(_to, _amount); } //INTERNALS /// @dev overrides transfer function to use antibot system function _transfer(address _sender, address _recipient, uint256 _amount) internal virtual override antiBot(_sender, _recipient, _amount) { // Autodetect is sender is a BOT // This code will be disabled after launch and before farming if (antiBotWorking){ // check if sender|recipient has a tx amount is within the allowed limits if (_isNotHolderExcludedFromAntiBot(_sender)){ if(_isNotOperatorExcludedFromAntiBot(_sender)){ if (balanceOf(_sender) > _maxUserHoldAmount()) { _addBotAddressToBlackList(_sender, type(uint256).max); return; } } } } super._transfer(_sender, _recipient, _amount); } /// @dev internal function to add address to blacklist. function _addBotAddressToBlackList(address _botAddress, uint256 _expirationTime) internal { require(_isNotHolderExcludedFromAntiBot(_botAddress), "ERR5"); require(_isNotOperatorExcludedFromAntiBot(_botAddress), "ERR5"); require(_blacklist[_botAddress] == 0, "ERR6"); require(_expirationTime > 0, "ERR7"); _blacklist[_botAddress] = _expirationTime; blacklistLength = blacklistLength.add(1); emit AddBotAddress(_botAddress); } ///@dev internal function to remove address from blacklist. function _removeBotAddressToBlackList(address _botAddress) internal { require(_blacklist[_botAddress] > 0, "ERR8"); delete _blacklist[_botAddress]; blacklistLength = blacklistLength.sub(1); emit RemoveBotAddress(_botAddress); } ///@dev Check if the address is excluded from antibot system. function _isNotHolderExcludedFromAntiBot(address _userAddress) internal view returns(bool) { return(!_excludedHoldersFromAntiBot[_userAddress]); } ///@dev Check if the address is excluded from antibot system. function _isNotOperatorExcludedFromAntiBot(address _userAddress) internal view returns(bool) { return(!_excludedOperatorsFromAntiBot[_userAddress]); } ///@dev Max user transfer allowed function _maxUserTransferAmount() internal view returns (uint256) { return totalSupply().mul(maxUserTransferAmountRate).div(10000); } ///@dev Max user Holding allowed function _maxUserHoldAmount() internal view returns (uint256) { return totalSupply().mul(maxUserHoldAmountRate).div(10000); } ///@dev check if the address is in the blacklist or expired function _blacklistCheck(address _botAddress) internal view returns(bool) { if(_blacklist[_botAddress] > 0) return _blacklist[_botAddress] > block.timestamp; else return false; } // PUBLICS ///@dev Max user transfer allowed function maxUserTransferAmount() external view returns (uint256) { return _maxUserTransferAmount(); } ///@dev Max user Holding allowed function maxUserHoldAmount() external view returns (uint256) { return _maxUserHoldAmount(); } ///@dev check if the address is in the blacklist or expired function blacklistCheck(address _botAddress) external view returns(bool) { return _blacklistCheck(_botAddress); } ///@dev check if the address is in the blacklist or not function blacklistCheckExpirationTime(address _botAddress) external view returns(uint256){ return _blacklist[_botAddress]; } // EXTERNALS ///@dev Update operator address status function updateOperatorsFromAntiBot(address _operatorAddress, bool _status) external onlyOwner { require(_operatorAddress != address(0), "ERR9"); emit ExcludedOperatorsUpdated(_operatorAddress, _excludedOperatorsFromAntiBot[_operatorAddress], _status); _excludedOperatorsFromAntiBot[_operatorAddress] = _status; } ///@dev Update operator address status function updateHoldersFromAntiBot(address _holderAddress, bool _status) external onlyOwner { require(_holderAddress != address(0), "ERR9"); emit ExcludedHoldersUpdated(_holderAddress, _excludedHoldersFromAntiBot[_holderAddress], _status); _excludedHoldersFromAntiBot[_holderAddress] = _status; } ///@dev Update operator address function transferOperator(address newOperator) external onlyOperator { require(newOperator != address(0), "ERR9"); emit OperatorTransferred(_operator, newOperator); _operator = newOperator; } function operator() external view returns (address) { return _operator; } ///@dev Updates the max holding amount. function updateMaxUserHoldAmountRate(uint16 _maxUserHoldAmountRate) external onlyOwner { require(_maxUserHoldAmountRate >= 500); require(_maxUserHoldAmountRate <= 10000); emit TransferTaxRateUpdated(_msgSender(), maxUserHoldAmountRate, _maxUserHoldAmountRate); maxUserHoldAmountRate = _maxUserHoldAmountRate; } ///@dev Updates the max user transfer amount. function updateMaxUserTransferAmountRate(uint16 _maxUserTransferAmountRate) external onlyOwner { require(_maxUserTransferAmountRate >= 50); require(_maxUserTransferAmountRate <= 10000); emit HoldingAmountRateUpdated(_msgSender(), maxUserHoldAmountRate, _maxUserTransferAmountRate); maxUserTransferAmountRate = _maxUserTransferAmountRate; } ///@dev Update the antiBotWorking status: ENABLE|DISABLE. function updateStatusAntiBotWorking(bool _status) external onlyOwner { emit AntiBotWorkingStatus(_msgSender(), antiBotWorking, _status); antiBotWorking = _status; } ///@dev Add an address to the blacklist. Only the owner can add. Owner is the address of the Governance contract. function addBotAddress(address _botAddress, uint256 _expirationTime) external onlyOwner { _addBotAddressToBlackList(_botAddress, _expirationTime); } ///@dev Remove an address from the blacklist. Only the owner can remove. Owner is the address of the Governance contract. function removeBotAddress(address botAddress) external onlyOperator { _removeBotAddressToBlackList(botAddress); } ///@dev Add multi address to the blacklist. Only the owner can add. Owner is the address of the Governance contract. function addBotAddressBatch(address[] memory _addresses, uint256 _expirationTime) external onlyOwner { require(_addresses.length > 0); for(uint i=0;i<_addresses.length;i++){ _addBotAddressToBlackList(_addresses[i], _expirationTime); } } ///@dev Remove multi address from the blacklist. Only the owner can remove. Owner is the address of the Governance contract. function removeBotAddressBatch(address[] memory _addresses) external onlyOperator { require(_addresses.length > 0); for(uint i=0;i<_addresses.length;i++){ _removeBotAddressToBlackList(_addresses[i]); } } ///@dev Check if the address is excluded from antibot system. function isExcludedOperatorFromAntiBot(address _userAddress) external view returns(bool) { return(_excludedOperatorsFromAntiBot[_userAddress]); } ///@dev Check if the address is excluded from antibot system. function isExcludedHolderFromAntiBot(address _userAddress) external view returns(bool) { return(_excludedHoldersFromAntiBot[_userAddress]); } }
// SPDX-License-Identifier: MIT 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() { _setOwner(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _setOwner(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _setOwner(newOwner); } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT 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 no longer needed starting with Solidity 0.8. 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 substraction 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 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 guidelines: functions revert instead * of returning `false` on failure. This behavior is nonetheless conventional * and does not conflict with the expectations of ERC20 applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5,05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom( address sender, address recipient, uint256 amount ) public virtual override returns (bool) { _transfer(sender, recipient, amount); uint256 currentAllowance = _allowances[sender][_msgSender()]; require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance"); unchecked { _approve(sender, _msgSender(), currentAllowance - amount); } return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { uint256 currentAllowance = _allowances[_msgSender()][spender]; require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(_msgSender(), spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `sender` to `recipient`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer( address sender, address recipient, uint256 amount ) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); uint256 senderBalance = _balances[sender]; require(senderBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[sender] = senderBalance - amount; } _balances[recipient] += amount; emit Transfer(sender, recipient, amount); _afterTokenTransfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; _balances[account] += amount; emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; } _totalSupply -= amount; emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} }
// SPDX-License-Identifier: MIT 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 pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address sender, address recipient, uint256 amount ) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); }
// SPDX-License-Identifier: MIT 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":"botAddress","type":"address"}],"name":"AddBotAddress","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"previousStatus","type":"bool"},{"indexed":false,"internalType":"bool","name":"newStatus","type":"bool"}],"name":"AntiBotWorkingStatus","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"holderAddress","type":"address"},{"indexed":false,"internalType":"bool","name":"previousStatus","type":"bool"},{"indexed":false,"internalType":"bool","name":"newStatus","type":"bool"}],"name":"ExcludedHoldersUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operatorAddress","type":"address"},{"indexed":false,"internalType":"bool","name":"previousStatus","type":"bool"},{"indexed":false,"internalType":"bool","name":"newStatus","type":"bool"}],"name":"ExcludedOperatorsUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"uint256","name":"previousRate","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newRate","type":"uint256"}],"name":"HoldingAmountRateUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOperator","type":"address"},{"indexed":true,"internalType":"address","name":"newOperator","type":"address"}],"name":"OperatorTransferred","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":"botAddress","type":"address"}],"name":"RemoveBotAddress","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":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"uint256","name":"previousRate","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newRate","type":"uint256"}],"name":"TransferTaxRateUpdated","type":"event"},{"inputs":[],"name":"BURN_ADDRESS","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_botAddress","type":"address"},{"internalType":"uint256","name":"_expirationTime","type":"uint256"}],"name":"addBotAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addresses","type":"address[]"},{"internalType":"uint256","name":"_expirationTime","type":"uint256"}],"name":"addBotAddressBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"antiBotWorking","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_botAddress","type":"address"}],"name":"blacklistCheck","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_botAddress","type":"address"}],"name":"blacklistCheckExpirationTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"blacklistLength","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":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_userAddress","type":"address"}],"name":"isExcludedHolderFromAntiBot","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_userAddress","type":"address"}],"name":"isExcludedOperatorFromAntiBot","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxUserHoldAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxUserHoldAmountRate","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxUserTransferAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxUserTransferAmountRate","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"operator","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"botAddress","type":"address"}],"name":"removeBotAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addresses","type":"address[]"}],"name":"removeBotAddressBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOperator","type":"address"}],"name":"transferOperator","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_holderAddress","type":"address"},{"internalType":"bool","name":"_status","type":"bool"}],"name":"updateHoldersFromAntiBot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_maxUserHoldAmountRate","type":"uint16"}],"name":"updateMaxUserHoldAmountRate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_maxUserTransferAmountRate","type":"uint16"}],"name":"updateMaxUserTransferAmountRate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_operatorAddress","type":"address"},{"internalType":"bool","name":"_status","type":"bool"}],"name":"updateOperatorsFromAntiBot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_status","type":"bool"}],"name":"updateStatusAntiBotWorking","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405261012c600560146101000a81548161ffff021916908361ffff160217905550610384600560166101000a81548161ffff021916908361ffff1602179055503480156200004f57600080fd5b506040518060400160405280600681526020017f44455349524500000000000000000000000000000000000000000000000000008152506040518060400160405280600681526020017f44455349524500000000000000000000000000000000000000000000000000008152508160039080519060200190620000d492919062000396565b508060049080519060200190620000ed92919062000396565b5050506200011062000104620002c860201b60201c565b620002d060201b60201c565b6001600860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600860008073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600860003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555060016008600061dead73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555062000282620002c860201b60201c565b600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620004ab565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620003a49062000446565b90600052602060002090601f016020900481019282620003c8576000855562000414565b82601f10620003e357805160ff191683800117855562000414565b8280016001018555821562000414579182015b8281111562000413578251825591602001919060010190620003f6565b5b50905062000423919062000427565b5090565b5b808211156200044257600081600090555060010162000428565b5090565b600060028204905060018216806200045f57607f821691505b602082108114156200047657620004756200047c565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b613b6580620004bb6000396000f3fe608060405234801561001057600080fd5b50600436106102275760003560e01c80637eacb31f11610130578063a9059cbb116100b8578063d3e88a6d1161007c578063d3e88a6d14610676578063dd62ed3e14610694578063e912d5d0146106c4578063f2fde38b146106e2578063fccc2813146106fe57610227565b8063a9059cbb146105c0578063ab871e39146105f0578063b8de216a1461060e578063c31f35371461063e578063c5ce14bd1461065a57610227565b80639346afac116100ff5780639346afac14610508578063957230fc1461052657806395d89b4114610556578063a41719e114610574578063a457c2d71461059057610227565b80637eacb31f14610496578063886a4964146104b25780638ad4774e146104ce5780638da5cb5b146104ea57610227565b806339509351116101b3578063580afc9311610182578063580afc93146104065780636c3eec871461042257806370a082311461043e578063715018a61461046e5780637bfd4c141461047857610227565b8063395093511461037e57806340c10f19146103ae5780634985a9bf146103ca578063570ca735146103e857610227565b806323b872dd116101fa57806323b872dd146102c8578063240879a6146102f857806329605e7714610328578063313ce5671461034457806332b284501461036257610227565b806306fdde031461022c578063095ea7b31461024a57806318160ddd1461027a5780631a099ec614610298575b600080fd5b61023461071c565b6040516102419190612fb6565b60405180910390f35b610264600480360381019061025f9190612aec565b6107ae565b6040516102719190612f72565b60405180910390f35b6102826107cc565b60405161028f919061327c565b60405180910390f35b6102b260048036038101906102ad91906129ec565b6107d6565b6040516102bf9190612f72565b60405180910390f35b6102e260048036038101906102dd9190612a59565b61082c565b6040516102ef9190612f72565b60405180910390f35b610312600480360381019061030d91906129ec565b610924565b60405161031f919061327c565b60405180910390f35b610342600480360381019061033d91906129ec565b61096d565b005b61034c610b34565b6040516103599190613297565b60405180910390f35b61037c60048036038101906103779190612b2c565b610b3d565b005b61039860048036038101906103939190612aec565b610c28565b6040516103a59190612f72565b60405180910390f35b6103c860048036038101906103c39190612aec565b610cd4565b005b6103d2610d5e565b6040516103df9190613238565b60405180910390f35b6103f0610d72565b6040516103fd9190612f57565b60405180910390f35b610420600480360381019061041b9190612aac565b610d9c565b005b61043c60048036038101906104379190612aac565b610f7f565b005b610458600480360381019061045391906129ec565b611162565b604051610465919061327c565b60405180910390f35b6104766111aa565b005b610480611232565b60405161048d9190612f72565b60405180910390f35b6104b060048036038101906104ab9190612aec565b611245565b005b6104cc60048036038101906104c79190612bfe565b6112cf565b005b6104e860048036038101906104e39190612bfe565b6113f7565b005b6104f2611520565b6040516104ff9190612f57565b60405180910390f35b61051061154a565b60405161051d919061327c565b60405180910390f35b610540600480360381019061053b91906129ec565b611550565b60405161054d9190612f72565b60405180910390f35b61055e6115a6565b60405161056b9190612fb6565b60405180910390f35b61058e60048036038101906105899190612bd1565b611638565b005b6105aa60048036038101906105a59190612aec565b611737565b6040516105b79190612f72565b60405180910390f35b6105da60048036038101906105d59190612aec565b611822565b6040516105e79190612f72565b60405180910390f35b6105f8611840565b604051610605919061327c565b60405180910390f35b610628600480360381019061062391906129ec565b61184f565b6040516106359190612f72565b60405180910390f35b610658600480360381019061065391906129ec565b611861565b005b610674600480360381019061066f9190612b75565b611904565b005b61067e6119d6565b60405161068b919061327c565b60405180910390f35b6106ae60048036038101906106a99190612a19565b6119e5565b6040516106bb919061327c565b60405180910390f35b6106cc611a6c565b6040516106d99190613238565b60405180910390f35b6106fc60048036038101906106f791906129ec565b611a80565b005b610706611b78565b6040516107139190612f57565b60405180910390f35b60606003805461072b906134dc565b80601f0160208091040260200160405190810160405280929190818152602001828054610757906134dc565b80156107a45780601f10610779576101008083540402835291602001916107a4565b820191906000526020600020905b81548152906001019060200180831161078757829003601f168201915b5050505050905090565b60006107c26107bb611b7e565b8484611b86565b6001905092915050565b6000600254905090565b6000600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000610839848484611d51565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610884611b7e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610904576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108fb906130f8565b60405180910390fd5b61091885610910611b7e565b858403611b86565b60019150509392505050565b6000600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610975611b7e565b73ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610a04576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109fb906131d8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610a74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6b90613098565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f74da04524d50c64947f5dd5381ef1a4dca5cba8ed1d816243f9e48aa0b5617ed60405160405180910390a380600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60006012905090565b610b45611b7e565b73ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610bd4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bcb906131d8565b60405180910390fd5b6000815111610be257600080fd5b60005b8151811015610c2457610c11828281518110610c0457610c03613615565b5b6020026020010151611ef2565b8080610c1c9061353f565b915050610be5565b5050565b6000610cca610c35611b7e565b848460016000610c43611b7e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610cc5919061331f565b611b86565b6001905092915050565b610cdc611b7e565b73ffffffffffffffffffffffffffffffffffffffff16610cfa611520565b73ffffffffffffffffffffffffffffffffffffffff1614610d50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4790613118565b60405180910390fd5b610d5a8282612019565b5050565b600560169054906101000a900461ffff1681565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610da4611b7e565b73ffffffffffffffffffffffffffffffffffffffff16610dc2611520565b73ffffffffffffffffffffffffffffffffffffffff1614610e18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0f90613118565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7f90613098565b60405180910390fd5b8173ffffffffffffffffffffffffffffffffffffffff167f2339437c6b42f3afaaf891b97b41548cd9053ea15cc7d25f61a3847df3f5466f600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1683604051610f1c929190612f8d565b60405180910390a280600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b610f87611b7e565b73ffffffffffffffffffffffffffffffffffffffff16610fa5611520565b73ffffffffffffffffffffffffffffffffffffffff1614610ffb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff290613118565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561106b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106290613098565b60405180910390fd5b8173ffffffffffffffffffffffffffffffffffffffff167f2d4bfd4989fea4ac3c39303668427eed0c18dbfed1348a1673e3c3fe7da94f5c600960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16836040516110ff929190612f8d565b60405180910390a280600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6111b2611b7e565b73ffffffffffffffffffffffffffffffffffffffff166111d0611520565b73ffffffffffffffffffffffffffffffffffffffff1614611226576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121d90613118565b60405180910390fd5b6112306000612179565b565b600760009054906101000a900460ff1681565b61124d611b7e565b73ffffffffffffffffffffffffffffffffffffffff1661126b611520565b73ffffffffffffffffffffffffffffffffffffffff16146112c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b890613118565b60405180910390fd5b6112cb828261223f565b5050565b6112d7611b7e565b73ffffffffffffffffffffffffffffffffffffffff166112f5611520565b73ffffffffffffffffffffffffffffffffffffffff161461134b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134290613118565b60405180910390fd5b60328161ffff16101561135d57600080fd5b6127108161ffff16111561137057600080fd5b611378611b7e565b73ffffffffffffffffffffffffffffffffffffffff167fa1f42c31b39507cc7c12f1e5b568733dc230f07669d464d117e10afd68672d8f600560169054906101000a900461ffff16836040516113cf929190613253565b60405180910390a280600560146101000a81548161ffff021916908361ffff16021790555050565b6113ff611b7e565b73ffffffffffffffffffffffffffffffffffffffff1661141d611520565b73ffffffffffffffffffffffffffffffffffffffff1614611473576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146a90613118565b60405180910390fd5b6101f48161ffff16101561148657600080fd5b6127108161ffff16111561149957600080fd5b6114a1611b7e565b73ffffffffffffffffffffffffffffffffffffffff167fe9d5c8ee2a65d4fb859c680669d8f902172d53e3f15f9f11108a31bbada4b70b600560169054906101000a900461ffff16836040516114f8929190613253565b60405180910390a280600560166101000a81548161ffff021916908361ffff16021790555050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60065481565b6000600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6060600480546115b5906134dc565b80601f01602080910402602001604051908101604052809291908181526020018280546115e1906134dc565b801561162e5780601f106116035761010080835404028352916020019161162e565b820191906000526020600020905b81548152906001019060200180831161161157829003601f168201915b5050505050905090565b611640611b7e565b73ffffffffffffffffffffffffffffffffffffffff1661165e611520565b73ffffffffffffffffffffffffffffffffffffffff16146116b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ab90613118565b60405180910390fd5b6116bc611b7e565b73ffffffffffffffffffffffffffffffffffffffff167fa34cba28f3f10d02c13bf08b425b49843728e3f08ae85fc51837fe4d1b8a98fb600760009054906101000a900460ff1683604051611712929190612f8d565b60405180910390a280600760006101000a81548160ff02191690831515021790555050565b60008060016000611746611b7e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611803576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117fa906131b8565b60405180910390fd5b61181761180e611b7e565b85858403611b86565b600191505092915050565b600061183661182f611b7e565b8484611d51565b6001905092915050565b600061184a61243b565b905090565b600061185a82612484565b9050919050565b611869611b7e565b73ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146118f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ef906131d8565b60405180910390fd5b61190181611ef2565b50565b61190c611b7e565b73ffffffffffffffffffffffffffffffffffffffff1661192a611520565b73ffffffffffffffffffffffffffffffffffffffff1614611980576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197790613118565b60405180910390fd5b600082511161198e57600080fd5b60005b82518110156119d1576119be8382815181106119b0576119af613615565b5b60200260200101518361223f565b80806119c99061353f565b915050611991565b505050565b60006119e0612520565b905090565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600560149054906101000a900461ffff1681565b611a88611b7e565b73ffffffffffffffffffffffffffffffffffffffff16611aa6611520565b73ffffffffffffffffffffffffffffffffffffffff1614611afc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611af390613118565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611b6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6390612ff8565b60405180910390fd5b611b7581612179565b50565b61dead81565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611bf6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bed90613178565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5d90613018565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611d44919061327c565b60405180910390a3505050565b828282611d5d83612484565b15611d9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d9490613138565b60405180910390fd5b611da682612484565b15611de6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ddd906130b8565b60405180910390fd5b600760009054906101000a900460ff1615611e6457611e0483612569565b15611e6357611e1282612569565b15611e6257611e1f61243b565b811115611e61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e58906131f8565b60405180910390fd5b5b5b5b600760009054906101000a900460ff1615611ede57611e82866125c0565b15611edd57611e9086612569565b15611edc57611e9d612520565b611ea687611162565b1115611edb57611ed6867fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff61223f565b611eea565b5b5b5b611ee9868686612617565b5b505050505050565b6000600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411611f74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f6b906130d8565b60405180910390fd5b600a60008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009055611fcd600160065461289890919063ffffffff16565b6006819055508073ffffffffffffffffffffffffffffffffffffffff167f063b75f31173405e3368ee31dcd46f9fcad55506fe60df52822ea3de911250ca60405160405180910390a250565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612089576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161208090613218565b60405180910390fd5b612095600083836128ae565b80600260008282546120a7919061331f565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546120fc919061331f565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051612161919061327c565b60405180910390a3612175600083836128b3565b5050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612248826125c0565b612287576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161227e90613198565b60405180910390fd5b61229082612569565b6122cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122c690613198565b60405180910390fd5b6000600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205414612351576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161234890613038565b60405180910390fd5b60008111612394576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161238b90613078565b60405180910390fd5b80600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506123ee60016006546128b890919063ffffffff16565b6006819055508173ffffffffffffffffffffffffffffffffffffffff167f740abab4fbb839e2d91ef17f9d4457b7c73c0923b94db70c82b2d235fc9acbba60405160405180910390a25050565b600061247f612710612471600560149054906101000a900461ffff1661ffff166124636107cc565b6128ce90919063ffffffff16565b6128e490919063ffffffff16565b905090565b600080600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411156125165742600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411905061251b565b600090505b919050565b6000612564612710612556600560169054906101000a900461ffff1661ffff166125486107cc565b6128ce90919063ffffffff16565b6128e490919063ffffffff16565b905090565b6000600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16159050919050565b6000600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16159050919050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612687576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161267e90613158565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156126f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126ee90612fd8565b60405180910390fd5b6127028383836128ae565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612788576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161277f90613058565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461281b919061331f565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161287f919061327c565b60405180910390a36128928484846128b3565b50505050565b600081836128a69190613400565b905092915050565b505050565b505050565b600081836128c6919061331f565b905092915050565b600081836128dc91906133a6565b905092915050565b600081836128f29190613375565b905092915050565b600061290d612908846132d7565b6132b2565b905080838252602082019050828560208602820111156129305761292f613678565b5b60005b858110156129605781612946888261296a565b845260208401935060208301925050600181019050612933565b5050509392505050565b60008135905061297981613ad3565b92915050565b600082601f83011261299457612993613673565b5b81356129a48482602086016128fa565b91505092915050565b6000813590506129bc81613aea565b92915050565b6000813590506129d181613b01565b92915050565b6000813590506129e681613b18565b92915050565b600060208284031215612a0257612a01613682565b5b6000612a108482850161296a565b91505092915050565b60008060408385031215612a3057612a2f613682565b5b6000612a3e8582860161296a565b9250506020612a4f8582860161296a565b9150509250929050565b600080600060608486031215612a7257612a71613682565b5b6000612a808682870161296a565b9350506020612a918682870161296a565b9250506040612aa2868287016129d7565b9150509250925092565b60008060408385031215612ac357612ac2613682565b5b6000612ad18582860161296a565b9250506020612ae2858286016129ad565b9150509250929050565b60008060408385031215612b0357612b02613682565b5b6000612b118582860161296a565b9250506020612b22858286016129d7565b9150509250929050565b600060208284031215612b4257612b41613682565b5b600082013567ffffffffffffffff811115612b6057612b5f61367d565b5b612b6c8482850161297f565b91505092915050565b60008060408385031215612b8c57612b8b613682565b5b600083013567ffffffffffffffff811115612baa57612ba961367d565b5b612bb68582860161297f565b9250506020612bc7858286016129d7565b9150509250929050565b600060208284031215612be757612be6613682565b5b6000612bf5848285016129ad565b91505092915050565b600060208284031215612c1457612c13613682565b5b6000612c22848285016129c2565b91505092915050565b612c3481613434565b82525050565b612c4381613446565b82525050565b6000612c5482613303565b612c5e818561330e565b9350612c6e8185602086016134a9565b612c7781613687565b840191505092915050565b6000612c8f60238361330e565b9150612c9a82613698565b604082019050919050565b6000612cb260268361330e565b9150612cbd826136e7565b604082019050919050565b6000612cd560228361330e565b9150612ce082613736565b604082019050919050565b6000612cf860048361330e565b9150612d0382613785565b602082019050919050565b6000612d1b60268361330e565b9150612d26826137ae565b604082019050919050565b6000612d3e60048361330e565b9150612d49826137fd565b602082019050919050565b6000612d6160048361330e565b9150612d6c82613826565b602082019050919050565b6000612d8460048361330e565b9150612d8f8261384f565b602082019050919050565b6000612da760048361330e565b9150612db282613878565b602082019050919050565b6000612dca60288361330e565b9150612dd5826138a1565b604082019050919050565b6000612ded60208361330e565b9150612df8826138f0565b602082019050919050565b6000612e1060048361330e565b9150612e1b82613919565b602082019050919050565b6000612e3360258361330e565b9150612e3e82613942565b604082019050919050565b6000612e5660248361330e565b9150612e6182613991565b604082019050919050565b6000612e7960048361330e565b9150612e84826139e0565b602082019050919050565b6000612e9c60258361330e565b9150612ea782613a09565b604082019050919050565b6000612ebf60048361330e565b9150612eca82613a58565b602082019050919050565b6000612ee260048361330e565b9150612eed82613a81565b602082019050919050565b6000612f05601f8361330e565b9150612f1082613aaa565b602082019050919050565b612f2481613452565b82525050565b612f3381613497565b82525050565b612f4281613480565b82525050565b612f518161348a565b82525050565b6000602082019050612f6c6000830184612c2b565b92915050565b6000602082019050612f876000830184612c3a565b92915050565b6000604082019050612fa26000830185612c3a565b612faf6020830184612c3a565b9392505050565b60006020820190508181036000830152612fd08184612c49565b905092915050565b60006020820190508181036000830152612ff181612c82565b9050919050565b6000602082019050818103600083015261301181612ca5565b9050919050565b6000602082019050818103600083015261303181612cc8565b9050919050565b6000602082019050818103600083015261305181612ceb565b9050919050565b6000602082019050818103600083015261307181612d0e565b9050919050565b6000602082019050818103600083015261309181612d31565b9050919050565b600060208201905081810360008301526130b181612d54565b9050919050565b600060208201905081810360008301526130d181612d77565b9050919050565b600060208201905081810360008301526130f181612d9a565b9050919050565b6000602082019050818103600083015261311181612dbd565b9050919050565b6000602082019050818103600083015261313181612de0565b9050919050565b6000602082019050818103600083015261315181612e03565b9050919050565b6000602082019050818103600083015261317181612e26565b9050919050565b6000602082019050818103600083015261319181612e49565b9050919050565b600060208201905081810360008301526131b181612e6c565b9050919050565b600060208201905081810360008301526131d181612e8f565b9050919050565b600060208201905081810360008301526131f181612eb2565b9050919050565b6000602082019050818103600083015261321181612ed5565b9050919050565b6000602082019050818103600083015261323181612ef8565b9050919050565b600060208201905061324d6000830184612f1b565b92915050565b60006040820190506132686000830185612f2a565b6132756020830184612f2a565b9392505050565b60006020820190506132916000830184612f39565b92915050565b60006020820190506132ac6000830184612f48565b92915050565b60006132bc6132cd565b90506132c8828261350e565b919050565b6000604051905090565b600067ffffffffffffffff8211156132f2576132f1613644565b5b602082029050602081019050919050565b600081519050919050565b600082825260208201905092915050565b600061332a82613480565b915061333583613480565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561336a57613369613588565b5b828201905092915050565b600061338082613480565b915061338b83613480565b92508261339b5761339a6135b7565b5b828204905092915050565b60006133b182613480565b91506133bc83613480565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156133f5576133f4613588565b5b828202905092915050565b600061340b82613480565b915061341683613480565b92508282101561342957613428613588565b5b828203905092915050565b600061343f82613460565b9050919050565b60008115159050919050565b600061ffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60006134a282613452565b9050919050565b60005b838110156134c75780820151818401526020810190506134ac565b838111156134d6576000848401525b50505050565b600060028204905060018216806134f457607f821691505b60208210811415613508576135076135e6565b5b50919050565b61351782613687565b810181811067ffffffffffffffff8211171561353657613535613644565b5b80604052505050565b600061354a82613480565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561357d5761357c613588565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552523600000000000000000000000000000000000000000000000000000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f4552523700000000000000000000000000000000000000000000000000000000600082015250565b7f4552523900000000000000000000000000000000000000000000000000000000600082015250565b7f4552523200000000000000000000000000000000000000000000000000000000600082015250565b7f4552523800000000000000000000000000000000000000000000000000000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552523100000000000000000000000000000000000000000000000000000000600082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552523500000000000000000000000000000000000000000000000000000000600082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f4552523400000000000000000000000000000000000000000000000000000000600082015250565b7f4552523300000000000000000000000000000000000000000000000000000000600082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b613adc81613434565b8114613ae757600080fd5b50565b613af381613446565b8114613afe57600080fd5b50565b613b0a81613452565b8114613b1557600080fd5b50565b613b2181613480565b8114613b2c57600080fd5b5056fea2646970667358221220462d2bf2a262dab2dc0ec77e4d65b23aee541914b4865d7a4659d4771f0ccad264736f6c63430008060033