ERC-20
Overview
Max Total Supply
1,000,000,000 HBO
Holders
8
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
2,233,904.279157364566325789 HBOValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
HangryBurritoCoin
Compiler Version
v0.8.21+commit.d9974bed
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
/** *Submitted for verification at Etherscan.io on 2023-10-04 */ // SPDX-License-Identifier: MIT /* Introducing: The Hangry Burrito Token! Dive into the flavorful fusion of culinary delight and blockchain brilliance with the Hangry Burrito token. Spicing up the crypto realm, this zesty digital asset offers both a nod to burrito enthusiasts and a fresh, innovative perspective for the financial future. Join our sizzling journey, bite into the future, and let's revolutionise the blockchain, one burrito at a time! Telegram: https://t.me/HangryBurrito Twitter: https://twitter.com/HangryBurrito Website: https://hangryburrito.fun Features: - Launch protection - Base Buy/Sell tax: 5% - MaxTx: 3% - MaxWallet: 5% - Enable/Disable Base tax (For marketing and promotions) - RenounceOwnership _ _ ______ _ _ | | | | | ___ \ (_) | | |_| | __ _ _ __ __ _ _ __ _ _ | |_/ /_ _ _ __ _ __ _| |_ ___ | _ |/ _` | '_ \ / _` | '__| | | | | ___ \ | | | '__| '__| | __/ _ \ | | | | (_| | | | | (_| | | | |_| | | |_/ / |_| | | | | | | || (_) | \_| |_/\__,_|_| |_|\__, |_| \__, | \____/ \__,_|_| |_| |_|\__\___/ __/ | __/ | |___/ |___/ */ pragma solidity 0.8.21; //https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/math/SafeMath.sol //Imports all the mathematical functions required to midicate overflow and underflow errors. import "@openzeppelin/contracts/utils/math/SafeMath.sol"; //https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/IERC20.sol //Imports the totalSupply(), balanceOf(), transfer(), allowance(), approve() and transferFrom() functions. import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; //https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/Address.sol //Imports all the validating functions reguired for addresses import "@openzeppelin/contracts/utils/Address.sol"; //https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/access/Ownable.sol //Imports the owner(), _checkOwner(), renounceOwnership() and transferOwnership() functions. import "@openzeppelin/contracts/access/Ownable.sol"; //https://github.com/Uniswap/v2-core/blob/master/contracts/interfaces/IUniswapV2Factory.sol //Imports the Uniswap Factory interface for Pair creation. import "@uniswap/v2-core/contracts/interfaces/IUniswapV2Factory.sol"; //https://github.com/Uniswap/v2-periphery/blob/master/contracts/interfaces/IUniswapV2Router02.sol //Imports the Uniswap Router interface for Liquidity and Swapping. import "@uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router02.sol"; contract HangryBurritoCoin is IERC20, Ownable { using SafeMath for uint256; using Address for address; string private constant _name = "Hangry Burrito"; string private constant _symbol = "HBO"; uint8 private constant _decimals = 18; mapping(address => uint256) internal _balances; mapping(address => mapping(address => uint256)) internal _allowances; mapping(address => bool) private isExcludedFromTax; mapping(address => uint256) private _holderLastTransferTimestamp; uint256 private constant _totalSupply = 1000000000*10**_decimals; uint256 private _maxTxAmount = 30000000*10**_decimals; // 3% uint256 private _maxWalletSize = 50000000*10**_decimals; // 5% uint256 private _taxSwapThreshold = 10000000*10**_decimals; uint256 private _maxTaxSwap = 10000000*10**_decimals; uint256 private _swapThreshold = 40; uint256 public _buyTax = 5; // Base Tax 5% uint256 public _sellTax = 5; // Base Tax 5% uint256 public _launchBuyTax = 25; // launch Tax 25% uint256 public _launchSellTax = 25; // launch Tax 25% uint256 public _buyCount = 0; address payable public _taxWallet; address public uniswapV2Pair; bool public tradingOpen = false; bool public taxEnabled = true; bool public swapEnabled = false; bool public transferDelayEnabled = true; bool private inSwap = false; event MaxTxAmountUpdated(uint _maxTxAmount); modifier lockTheSwap { inSwap = true; _; inSwap = false; } IUniswapV2Router02 private uniswapV2Router; constructor() payable { require(msg.value >= 1 ether, "Minimum 1 ether is required"); _taxWallet = payable(_msgSender()); //Tax wallet isExcludedFromTax[address(uniswapV2Router)] = true; isExcludedFromTax[address(uniswapV2Pair)] = true; isExcludedFromTax[_msgSender()] = true; isExcludedFromTax[address(this)] = true; isExcludedFromTax[_taxWallet] = true; _balances[address(this)] = _totalSupply; emit Transfer(address(0), address(this), _totalSupply); } function name() public pure returns (string memory) { return _name; } function symbol() public pure returns (string memory) { return _symbol; } function decimals() public pure returns (uint8) { return _decimals; } function totalSupply() public pure override returns (uint256) { return _totalSupply; } function balanceOf(address account) public view override returns (uint256) { return _balances[account]; } function transfer(address recipient, uint256 amount) public override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } function allowance(address owner, address spender) public view override returns (uint256) { return _allowances[owner][spender]; } function approve(address spender, uint256 amount) public override returns (bool) { _approve(_msgSender(), spender, amount); return true; } function transferFrom(address sender, address recipient, uint256 amount) public override returns (bool) { _transfer(sender, recipient, amount); _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance")); return true; } function _approve(address owner, address spender, uint256 amount) private { 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); } function _transfer(address sender, address recipient, uint256 amount) private { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); require(amount > 0, "Transfer amount must be greater than zero"); uint256 tax = 0; if(taxEnabled){ //Only one purchase per block allowed. if (transferDelayEnabled) { if (recipient != address(uniswapV2Router) && recipient != address(uniswapV2Pair)) { require(_holderLastTransferTimestamp[tx.origin] < block.number, "_transfer: Transfer Delay enabled. Only one purchase per block allowed."); _holderLastTransferTimestamp[tx.origin] = block.number; } } //Buy. if (sender == uniswapV2Pair && recipient != address(uniswapV2Router) && !isExcludedFromTax[recipient]) { require(amount <= _maxTxAmount, "Exceeds the maxTxAmount."); require(balanceOf(recipient) + amount <= _maxWalletSize, "Exceeds the maxWalletSize."); tax = amount.mul((_buyCount > _swapThreshold) ? _buyTax : _launchBuyTax).div(100); _buyCount++; } //Sell. if(recipient == uniswapV2Pair && sender != address(this) && !isExcludedFromTax[sender]) { require(amount <= _maxTxAmount, "Exceeds the maxTxAmount."); tax = amount.mul((_buyCount > _swapThreshold) ? _sellTax : _launchSellTax).div(100); } uint256 contractTokenBalance = balanceOf(address(this)); if (!inSwap && recipient == uniswapV2Pair && swapEnabled && contractTokenBalance > _taxSwapThreshold && _buyCount > _swapThreshold) { swapTokensForEth(min(amount,min(contractTokenBalance,_maxTaxSwap))); uint256 contractETHBalance = address(this).balance; if(contractETHBalance > 0) { sendETHToTax(address(this).balance); } } } //Tax handover. if (tax > 0) { _balances[address(this)] = _balances[address(this)].add(tax); emit Transfer(sender, address(this), tax); } //Commit transaction. _balances[sender] = _balances[sender].sub(amount); _balances[recipient] = _balances[recipient].add(amount.sub(tax)); emit Transfer(sender, recipient, amount.sub(tax)); } //Returns the smaller of the two values. function min(uint256 a, uint256 b) private pure returns (uint256){ return (a > b) ? b : a; } //Will open the trading and fill LP. function openTrading() external onlyOwner() { require(!tradingOpen,"trading is already open"); uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(address(this), uniswapV2Router.WETH()); _approve(address(this), address(uniswapV2Router), _totalSupply); uniswapV2Router.addLiquidityETH{value: address(this).balance}(address(this),balanceOf(address(this)),0,0,owner(),block.timestamp); IERC20(uniswapV2Pair).approve(address(uniswapV2Router), type(uint).max); swapEnabled = true; tradingOpen = true; } //Makes sure contract can receive funds. receive() external payable {} //Enables base tax on transactions. function taxEnable() public onlyOwner { require(!taxEnabled,"tax is already enabled"); taxEnabled = true; } //Disables base tax on transactions, used for marketing and promotions. function taxDisable() public onlyOwner { require(taxEnabled,"tax is already disabled"); taxEnabled = false; } //Enables taxes for specified address. function IncludeInTax(address wallet, bool) public onlyOwner { isExcludedFromTax[wallet] = false; } //Disbles taxes for specified address. function ExcludedFromTax(address wallet, bool) public onlyOwner { isExcludedFromTax[wallet] = true; } //Send ETH to Tax. function sendETHToTax(uint256 amount) private { _taxWallet.transfer(amount); } //Swaps tokens for ETH. function swapTokensForEth(uint256 tokenAmount) private lockTheSwap { require(tradingOpen, "trading is not yet open"); address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapV2Router.WETH(); _approve(address(this), address(uniswapV2Router), tokenAmount); uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, path, address(this), block.timestamp ); } //Removes limits of maxTx and maxWallet function removeLimits() external onlyOwner{ _maxTxAmount = _totalSupply; _maxWalletSize = _totalSupply; transferDelayEnabled = false; emit MaxTxAmountUpdated(_totalSupply); } //Manually swap tokens for ETH. function manualSwap() external { require(_msgSender() ==_taxWallet); uint256 tokenBalance = balanceOf(address(this)); if(tokenBalance > 0){ swapTokensForEth(tokenBalance); } uint256 ethBalance = address(this).balance; if(ethBalance > 0){ sendETHToTax(ethBalance); } } }
// SPDX-License-Identifier: MIT pragma solidity >=0.6.2; import './IUniswapV2Router01.sol'; interface IUniswapV2Router02 is IUniswapV2Router01 { function removeLiquidityETHSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountETH); function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountETH); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint amountOutMin, address[] calldata path, address to, uint deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; }
// SPDX-License-Identifier: MIT pragma solidity >=0.5.0; interface IUniswapV2Factory { event PairCreated(address indexed token0, address indexed token1, address pair, uint); function feeTo() external view returns (address); function feeToSetter() external view returns (address); function getPair(address tokenA, address tokenB) external view returns (address pair); function allPairs(uint) external view returns (address pair); function allPairsLength() external view returns (uint); function createPair(address tokenA, address tokenB) external returns (address pair); function setFeeTo(address) external; function setFeeToSetter(address) external; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.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. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling 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.9.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * * Furthermore, `isContract` will also return true if the target contract within * the same transaction is already scheduled for destruction by `SELFDESTRUCT`, * which only has an effect at the end of a transaction. * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://consensys.net/diligence/blog/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.8.0/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract. * * _Available since v4.8._ */ function verifyCallResultFromTarget( address target, bool success, bytes memory returndata, string memory errorMessage ) internal view returns (bytes memory) { if (success) { if (returndata.length == 0) { // only check isContract if the call was successful and the return data is empty // otherwise we already know that it was a contract require(isContract(target), "Address: call to non-contract"); } return returndata; } else { _revert(returndata, errorMessage); } } /** * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason or using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { _revert(returndata, errorMessage); } } function _revert(bytes memory returndata, string memory errorMessage) private pure { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.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.9.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 pragma solidity >=0.6.2; interface IUniswapV2Router01 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint amountADesired, uint amountBDesired, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB, uint liquidity); function addLiquidityETH( address token, uint amountTokenDesired, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external payable returns (uint amountToken, uint amountETH, uint liquidity); function removeLiquidity( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB); function removeLiquidityETH( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountToken, uint amountETH); function removeLiquidityWithPermit( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountA, uint amountB); function removeLiquidityETHWithPermit( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountToken, uint amountETH); function swapExactTokensForTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapTokensForExactTokens( uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB); function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut); function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn); function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts); function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts); }
// 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; } }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"payable","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":"uint256","name":"_maxTxAmount","type":"uint256"}],"name":"MaxTxAmountUpdated","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"},{"inputs":[{"internalType":"address","name":"wallet","type":"address"},{"internalType":"bool","name":"","type":"bool"}],"name":"ExcludedFromTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"wallet","type":"address"},{"internalType":"bool","name":"","type":"bool"}],"name":"IncludeInTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"_buyCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_buyTax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_launchBuyTax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_launchSellTax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_sellTax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_taxWallet","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"manualSwap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"openTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"taxDisable","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"taxEnable","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"taxEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"tradingOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[],"name":"transferDelayEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60806040526012600a62000014919062000754565b6301c9c380620000259190620007a4565b6005556012600a62000038919062000754565b6302faf080620000499190620007a4565b6006556012600a6200005c919062000754565b629896806200006c9190620007a4565b6007556012600a6200007f919062000754565b629896806200008f9190620007a4565b60085560286009556005600a556005600b556019600c556019600d555f600e555f601060146101000a81548160ff0219169083151502179055506001601060156101000a81548160ff0219169083151502179055505f601060166101000a81548160ff0219169083151502179055506001601060176101000a81548160ff0219169083151502179055505f601060186101000a81548160ff0219169083151502179055506200015362000147620004fa60201b60201c565b6200050160201b60201c565b670de0b6b3a7640000341015620001a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000198906200084c565b60405180910390fd5b620001b1620004fa60201b60201c565b600f5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600160035f60115f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160035f60105f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160035f620002f1620004fa60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160035f3073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160035f600f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055506012600a6200041b919062000754565b633b9aca006200042c9190620007a4565b60015f3073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055503073ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6012600a620004cc919062000754565b633b9aca00620004dd9190620007a4565b604051620004ec91906200087d565b60405180910390a362000898565b5f33905090565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f8160011c9050919050565b5f808291508390505b60018511156200064c57808604811115620006245762000623620005c2565b5b6001851615620006345780820291505b80810290506200064485620005ef565b945062000604565b94509492505050565b5f8262000666576001905062000738565b8162000675575f905062000738565b81600181146200068e57600281146200069957620006cf565b600191505062000738565b60ff841115620006ae57620006ad620005c2565b5b8360020a915084821115620006c857620006c7620005c2565b5b5062000738565b5060208310610133831016604e8410600b8410161715620007095782820a905083811115620007035762000702620005c2565b5b62000738565b620007188484846001620005fb565b92509050818404811115620007325762000731620005c2565b5b81810290505b9392505050565b5f819050919050565b5f60ff82169050919050565b5f62000760826200073f565b91506200076d8362000748565b92506200079c7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000655565b905092915050565b5f620007b0826200073f565b9150620007bd836200073f565b9250828202620007cd816200073f565b91508282048414831517620007e757620007e6620005c2565b5b5092915050565b5f82825260208201905092915050565b7f4d696e696d756d203120657468657220697320726571756972656400000000005f82015250565b5f62000834601b83620007ee565b91506200084182620007fe565b602082019050919050565b5f6020820190508181035f830152620008658162000826565b9050919050565b62000877816200073f565b82525050565b5f602082019050620008925f8301846200086c565b92915050565b6133a780620008a65f395ff3fe6080604052600436106101d0575f3560e01c8063715018a6116100f6578063a9059cbb11610094578063dd62ed3e11610063578063dd62ed3e146105ed578063ea5814d114610629578063f2fde38b14610651578063ffb54a9914610679576101d7565b8063a9059cbb14610547578063c876d0b914610583578063c9567bf9146105ad578063ca9ec199146105c3576101d7565b806382194416116100d057806382194416146104b3578063870bd30b146104c95780638da5cb5b146104f357806395d89b411461051d576101d7565b8063715018a614610471578063751039fc14610487578063810aa0e61461049d576101d7565b806342a110951161016e578063572b0a721161013d578063572b0a72146103b75780636ddd1713146103e15780636f268a991461040b57806370a0823114610435576101d7565b806342a110951461032357806349bd5a5e1461034d578063509211a51461037757806351bc3c85146103a1576101d7565b806323b872dd116101aa57806323b872dd1461026b57806327b1a8e9146102a7578063294b3333146102d1578063313ce567146102f9576101d7565b806306fdde03146101db578063095ea7b31461020557806318160ddd14610241576101d7565b366101d757005b5f80fd5b3480156101e6575f80fd5b506101ef6106a3565b6040516101fc919061233e565b60405180910390f35b348015610210575f80fd5b5061022b600480360381019061022691906123ef565b6106e0565b6040516102389190612447565b60405180910390f35b34801561024c575f80fd5b506102556106fd565b604051610262919061246f565b60405180910390f35b348015610276575f80fd5b50610291600480360381019061028c9190612488565b610720565b60405161029e9190612447565b60405180910390f35b3480156102b2575f80fd5b506102bb6107f4565b6040516102c8919061246f565b60405180910390f35b3480156102dc575f80fd5b506102f760048036038101906102f29190612502565b6107fa565b005b348015610304575f80fd5b5061030d61085a565b60405161031a919061255b565b60405180910390f35b34801561032e575f80fd5b50610337610862565b604051610344919061246f565b60405180910390f35b348015610358575f80fd5b50610361610868565b60405161036e9190612583565b60405180910390f35b348015610382575f80fd5b5061038b61088d565b604051610398919061246f565b60405180910390f35b3480156103ac575f80fd5b506103b5610893565b005b3480156103c2575f80fd5b506103cb61092a565b6040516103d8919061246f565b60405180910390f35b3480156103ec575f80fd5b506103f5610930565b6040516104029190612447565b60405180910390f35b348015610416575f80fd5b5061041f610943565b60405161042c91906125bc565b60405180910390f35b348015610440575f80fd5b5061045b600480360381019061045691906125d5565b610968565b604051610468919061246f565b60405180910390f35b34801561047c575f80fd5b506104856109ae565b005b348015610492575f80fd5b5061049b6109c1565b005b3480156104a8575f80fd5b506104b1610a7e565b005b3480156104be575f80fd5b506104c7610af1565b005b3480156104d4575f80fd5b506104dd610b66565b6040516104ea9190612447565b60405180910390f35b3480156104fe575f80fd5b50610507610b79565b6040516105149190612583565b60405180910390f35b348015610528575f80fd5b50610531610ba0565b60405161053e919061233e565b60405180910390f35b348015610552575f80fd5b5061056d600480360381019061056891906123ef565b610bdd565b60405161057a9190612447565b60405180910390f35b34801561058e575f80fd5b50610597610bfa565b6040516105a49190612447565b60405180910390f35b3480156105b8575f80fd5b506105c1610c0d565b005b3480156105ce575f80fd5b506105d76110a3565b6040516105e4919061246f565b60405180910390f35b3480156105f8575f80fd5b50610613600480360381019061060e9190612600565b6110a9565b604051610620919061246f565b60405180910390f35b348015610634575f80fd5b5061064f600480360381019061064a9190612502565b61112b565b005b34801561065c575f80fd5b50610677600480360381019061067291906125d5565b61118c565b005b348015610684575f80fd5b5061068d61120e565b60405161069a9190612447565b60405180910390f35b60606040518060400160405280600e81526020017f48616e677279204275727269746f000000000000000000000000000000000000815250905090565b5f6106f36106ec611221565b8484611228565b6001905092915050565b5f6012600a61070c919061279a565b633b9aca0061071b91906127e4565b905090565b5f61072c8484846113eb565b6107e984610738611221565b6107e48560405180606001604052806028815260200161334a6028913960025f8b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f61079b611221565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054611d939092919063ffffffff16565b611228565b600190509392505050565b600e5481565b610802611de7565b5f60035f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b5f6012905090565b600a5481565b60105f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600d5481565b600f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108d3611221565b73ffffffffffffffffffffffffffffffffffffffff16146108f2575f80fd5b5f6108fc30610968565b90505f8111156109105761090f81611e65565b5b5f4790505f811115610926576109258161211f565b5b5050565b600c5481565b601060169054906101000a900460ff1681565b600f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f60015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6109b6611de7565b6109bf5f612187565b565b6109c9611de7565b6012600a6109d7919061279a565b633b9aca006109e691906127e4565b6005819055506012600a6109fa919061279a565b633b9aca00610a0991906127e4565b6006819055505f601060176101000a81548160ff0219169083151502179055507f947f344d56e1e8c70dc492fb94c4ddddd490c016aab685f5e7e47b2e85cb44cf6012600a610a58919061279a565b633b9aca00610a6791906127e4565b604051610a74919061246f565b60405180910390a1565b610a86611de7565b601060159054906101000a900460ff16610ad5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610acc9061286f565b60405180910390fd5b5f601060156101000a81548160ff021916908315150217905550565b610af9611de7565b601060159054906101000a900460ff1615610b49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b40906128d7565b60405180910390fd5b6001601060156101000a81548160ff021916908315150217905550565b601060159054906101000a900460ff1681565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606040518060400160405280600381526020017f48424f0000000000000000000000000000000000000000000000000000000000815250905090565b5f610bf0610be9611221565b84846113eb565b6001905092915050565b601060179054906101000a900460ff1681565b610c15611de7565b601060149054906101000a900460ff1615610c65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5c9061293f565b60405180910390fd5b737a250d5630b4cf539739df2c5dacb4c659f2488d60115f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060115f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610d23573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610d479190612971565b73ffffffffffffffffffffffffffffffffffffffff1663c9c653963060115f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610dcd573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610df19190612971565b6040518363ffffffff1660e01b8152600401610e0e92919061299c565b6020604051808303815f875af1158015610e2a573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610e4e9190612971565b60105f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550610ed53060115f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff166012600a610ec1919061279a565b633b9aca00610ed091906127e4565b611228565b60115f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d7194730610f1d30610968565b5f80610f27610b79565b426040518863ffffffff1660e01b8152600401610f4996959493929190612a05565b60606040518083038185885af1158015610f65573d5f803e3d5ffd5b50505050506040513d601f19601f82011682018060405250810190610f8a9190612a78565b50505060105f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663095ea7b360115f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff167fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6040518363ffffffff1660e01b815260040161102a929190612ac8565b6020604051808303815f875af1158015611046573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061106a9190612b03565b506001601060166101000a81548160ff0219169083151502179055506001601060146101000a81548160ff021916908315150217905550565b600b5481565b5f60025f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b611133611de7565b600160035f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b611194611de7565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611202576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f990612b9e565b60405180910390fd5b61120b81612187565b50565b601060149054906101000a900460ff1681565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611296576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128d90612c2c565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611304576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112fb90612cba565b60405180910390fd5b8060025f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516113de919061246f565b60405180910390a3505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611459576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145090612d48565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036114c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114be90612dd6565b60405180910390fd5b5f8111611509576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150090612e64565b60405180910390fd5b5f601060159054906101000a900460ff1615611ae357601060179054906101000a900460ff16156116a65760115f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156115de575060105f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b156116a5574360045f3273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205410611662576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165990612f18565b60405180910390fd5b4360045f3273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055505b5b60105f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614801561174f575060115f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b80156117a2575060035f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b1561189a576005548211156117ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117e390612f80565b60405180910390fd5b600654826117f985610968565b6118039190612f9e565b1115611844576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183b9061301b565b60405180910390fd5b6118806064611872600954600e541161185f57600c54611863565b600a545b8561224890919063ffffffff16565b61225d90919063ffffffff16565b9050600e5f81548092919061189490613039565b91905055505b60105f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614801561192257503073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b8015611975575060035f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b156119fe576005548211156119bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119b690612f80565b60405180910390fd5b6119fb60646119ed600954600e54116119da57600d546119de565b600b545b8561224890919063ffffffff16565b61225d90919063ffffffff16565b90505b5f611a0830610968565b9050601060189054906101000a900460ff16158015611a73575060105f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16145b8015611a8b5750601060169054906101000a900460ff165b8015611a98575060075481115b8015611aa75750600954600e54115b15611ae157611ac9611ac484611abf84600854612272565b612272565b611e65565b5f4790505f811115611adf57611ade4761211f565b5b505b505b5f811115611be257611b3b8160015f3073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205461228a90919063ffffffff16565b60015f3073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055503073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611bd9919061246f565b60405180910390a35b611c328260015f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205461229f90919063ffffffff16565b60015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550611cd5611c89828461229f90919063ffffffff16565b60015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205461228a90919063ffffffff16565b60015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef611d78848661229f90919063ffffffff16565b604051611d85919061246f565b60405180910390a350505050565b5f838311158290611dda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dd1919061233e565b60405180910390fd5b5082840390509392505050565b611def611221565b73ffffffffffffffffffffffffffffffffffffffff16611e0d610b79565b73ffffffffffffffffffffffffffffffffffffffff1614611e63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5a906130ca565b60405180910390fd5b565b6001601060186101000a81548160ff021916908315150217905550601060149054906101000a900460ff16611ecf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ec690613132565b60405180910390fd5b5f600267ffffffffffffffff811115611eeb57611eea613150565b5b604051908082528060200260200182016040528015611f195781602001602082028036833780820191505090505b50905030815f81518110611f3057611f2f61317d565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060115f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611fd4573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611ff89190612971565b8160018151811061200c5761200b61317d565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506120723060115f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684611228565b60115f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac947835f8430426040518663ffffffff1660e01b81526004016120d4959493929190613261565b5f604051808303815f87803b1580156120eb575f80fd5b505af11580156120fd573d5f803e3d5ffd5b50505050505f601060186101000a81548160ff02191690831515021790555050565b600f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc8290811502906040515f60405180830381858888f19350505050158015612183573d5f803e3d5ffd5b5050565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f818361225591906127e4565b905092915050565b5f818361226a91906132e6565b905092915050565b5f8183116122805782612282565b815b905092915050565b5f81836122979190612f9e565b905092915050565b5f81836122ac9190613316565b905092915050565b5f81519050919050565b5f82825260208201905092915050565b5f5b838110156122eb5780820151818401526020810190506122d0565b5f8484015250505050565b5f601f19601f8301169050919050565b5f612310826122b4565b61231a81856122be565b935061232a8185602086016122ce565b612333816122f6565b840191505092915050565b5f6020820190508181035f8301526123568184612306565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f61238b82612362565b9050919050565b61239b81612381565b81146123a5575f80fd5b50565b5f813590506123b681612392565b92915050565b5f819050919050565b6123ce816123bc565b81146123d8575f80fd5b50565b5f813590506123e9816123c5565b92915050565b5f80604083850312156124055761240461235e565b5b5f612412858286016123a8565b9250506020612423858286016123db565b9150509250929050565b5f8115159050919050565b6124418161242d565b82525050565b5f60208201905061245a5f830184612438565b92915050565b612469816123bc565b82525050565b5f6020820190506124825f830184612460565b92915050565b5f805f6060848603121561249f5761249e61235e565b5b5f6124ac868287016123a8565b93505060206124bd868287016123a8565b92505060406124ce868287016123db565b9150509250925092565b6124e18161242d565b81146124eb575f80fd5b50565b5f813590506124fc816124d8565b92915050565b5f80604083850312156125185761251761235e565b5b5f612525858286016123a8565b9250506020612536858286016124ee565b9150509250929050565b5f60ff82169050919050565b61255581612540565b82525050565b5f60208201905061256e5f83018461254c565b92915050565b61257d81612381565b82525050565b5f6020820190506125965f830184612574565b92915050565b5f6125a682612362565b9050919050565b6125b68161259c565b82525050565b5f6020820190506125cf5f8301846125ad565b92915050565b5f602082840312156125ea576125e961235e565b5b5f6125f7848285016123a8565b91505092915050565b5f80604083850312156126165761261561235e565b5b5f612623858286016123a8565b9250506020612634858286016123a8565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f8160011c9050919050565b5f808291508390505b60018511156126c05780860481111561269c5761269b61263e565b5b60018516156126ab5780820291505b80810290506126b98561266b565b9450612680565b94509492505050565b5f826126d85760019050612793565b816126e5575f9050612793565b81600181146126fb576002811461270557612734565b6001915050612793565b60ff8411156127175761271661263e565b5b8360020a91508482111561272e5761272d61263e565b5b50612793565b5060208310610133831016604e8410600b84101617156127695782820a9050838111156127645761276361263e565b5b612793565b6127768484846001612677565b9250905081840481111561278d5761278c61263e565b5b81810290505b9392505050565b5f6127a4826123bc565b91506127af83612540565b92506127dc7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff84846126c9565b905092915050565b5f6127ee826123bc565b91506127f9836123bc565b9250828202612807816123bc565b9150828204841483151761281e5761281d61263e565b5b5092915050565b7f74617820697320616c72656164792064697361626c65640000000000000000005f82015250565b5f6128596017836122be565b915061286482612825565b602082019050919050565b5f6020820190508181035f8301526128868161284d565b9050919050565b7f74617820697320616c726561647920656e61626c6564000000000000000000005f82015250565b5f6128c16016836122be565b91506128cc8261288d565b602082019050919050565b5f6020820190508181035f8301526128ee816128b5565b9050919050565b7f74726164696e6720697320616c7265616479206f70656e0000000000000000005f82015250565b5f6129296017836122be565b9150612934826128f5565b602082019050919050565b5f6020820190508181035f8301526129568161291d565b9050919050565b5f8151905061296b81612392565b92915050565b5f602082840312156129865761298561235e565b5b5f6129938482850161295d565b91505092915050565b5f6040820190506129af5f830185612574565b6129bc6020830184612574565b9392505050565b5f819050919050565b5f819050919050565b5f6129ef6129ea6129e5846129c3565b6129cc565b6123bc565b9050919050565b6129ff816129d5565b82525050565b5f60c082019050612a185f830189612574565b612a256020830188612460565b612a3260408301876129f6565b612a3f60608301866129f6565b612a4c6080830185612574565b612a5960a0830184612460565b979650505050505050565b5f81519050612a72816123c5565b92915050565b5f805f60608486031215612a8f57612a8e61235e565b5b5f612a9c86828701612a64565b9350506020612aad86828701612a64565b9250506040612abe86828701612a64565b9150509250925092565b5f604082019050612adb5f830185612574565b612ae86020830184612460565b9392505050565b5f81519050612afd816124d8565b92915050565b5f60208284031215612b1857612b1761235e565b5b5f612b2584828501612aef565b91505092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f612b886026836122be565b9150612b9382612b2e565b604082019050919050565b5f6020820190508181035f830152612bb581612b7c565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f612c166024836122be565b9150612c2182612bbc565b604082019050919050565b5f6020820190508181035f830152612c4381612c0a565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f612ca46022836122be565b9150612caf82612c4a565b604082019050919050565b5f6020820190508181035f830152612cd181612c98565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f612d326025836122be565b9150612d3d82612cd8565b604082019050919050565b5f6020820190508181035f830152612d5f81612d26565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f612dc06023836122be565b9150612dcb82612d66565b604082019050919050565b5f6020820190508181035f830152612ded81612db4565b9050919050565b7f5472616e7366657220616d6f756e74206d7573742062652067726561746572205f8201527f7468616e207a65726f0000000000000000000000000000000000000000000000602082015250565b5f612e4e6029836122be565b9150612e5982612df4565b604082019050919050565b5f6020820190508181035f830152612e7b81612e42565b9050919050565b7f5f7472616e736665723a205472616e736665722044656c617920656e61626c655f8201527f642e204f6e6c79206f6e652070757263686173652070657220626c6f636b206160208201527f6c6c6f7765642e00000000000000000000000000000000000000000000000000604082015250565b5f612f026047836122be565b9150612f0d82612e82565b606082019050919050565b5f6020820190508181035f830152612f2f81612ef6565b9050919050565b7f4578636565647320746865206d61785478416d6f756e742e00000000000000005f82015250565b5f612f6a6018836122be565b9150612f7582612f36565b602082019050919050565b5f6020820190508181035f830152612f9781612f5e565b9050919050565b5f612fa8826123bc565b9150612fb3836123bc565b9250828201905080821115612fcb57612fca61263e565b5b92915050565b7f4578636565647320746865206d617857616c6c657453697a652e0000000000005f82015250565b5f613005601a836122be565b915061301082612fd1565b602082019050919050565b5f6020820190508181035f83015261303281612ff9565b9050919050565b5f613043826123bc565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036130755761307461263e565b5b600182019050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f6130b46020836122be565b91506130bf82613080565b602082019050919050565b5f6020820190508181035f8301526130e1816130a8565b9050919050565b7f74726164696e67206973206e6f7420796574206f70656e0000000000000000005f82015250565b5f61311c6017836122be565b9150613127826130e8565b602082019050919050565b5f6020820190508181035f83015261314981613110565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b6131dc81612381565b82525050565b5f6131ed83836131d3565b60208301905092915050565b5f602082019050919050565b5f61320f826131aa565b61321981856131b4565b9350613224836131c4565b805f5b8381101561325457815161323b88826131e2565b9750613246836131f9565b925050600181019050613227565b5085935050505092915050565b5f60a0820190506132745f830188612460565b61328160208301876129f6565b81810360408301526132938186613205565b90506132a26060830185612574565b6132af6080830184612460565b9695505050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f6132f0826123bc565b91506132fb836123bc565b92508261330b5761330a6132b9565b5b828204905092915050565b5f613320826123bc565b915061332b836123bc565b92508282039050818111156133435761334261263e565b5b9291505056fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a2646970667358221220d31cff827c97453f66387e542cc050bc0bacb34673ad382bc501ff1a08e51c6a64736f6c63430008150033
Deployed Bytecode
0x6080604052600436106101d0575f3560e01c8063715018a6116100f6578063a9059cbb11610094578063dd62ed3e11610063578063dd62ed3e146105ed578063ea5814d114610629578063f2fde38b14610651578063ffb54a9914610679576101d7565b8063a9059cbb14610547578063c876d0b914610583578063c9567bf9146105ad578063ca9ec199146105c3576101d7565b806382194416116100d057806382194416146104b3578063870bd30b146104c95780638da5cb5b146104f357806395d89b411461051d576101d7565b8063715018a614610471578063751039fc14610487578063810aa0e61461049d576101d7565b806342a110951161016e578063572b0a721161013d578063572b0a72146103b75780636ddd1713146103e15780636f268a991461040b57806370a0823114610435576101d7565b806342a110951461032357806349bd5a5e1461034d578063509211a51461037757806351bc3c85146103a1576101d7565b806323b872dd116101aa57806323b872dd1461026b57806327b1a8e9146102a7578063294b3333146102d1578063313ce567146102f9576101d7565b806306fdde03146101db578063095ea7b31461020557806318160ddd14610241576101d7565b366101d757005b5f80fd5b3480156101e6575f80fd5b506101ef6106a3565b6040516101fc919061233e565b60405180910390f35b348015610210575f80fd5b5061022b600480360381019061022691906123ef565b6106e0565b6040516102389190612447565b60405180910390f35b34801561024c575f80fd5b506102556106fd565b604051610262919061246f565b60405180910390f35b348015610276575f80fd5b50610291600480360381019061028c9190612488565b610720565b60405161029e9190612447565b60405180910390f35b3480156102b2575f80fd5b506102bb6107f4565b6040516102c8919061246f565b60405180910390f35b3480156102dc575f80fd5b506102f760048036038101906102f29190612502565b6107fa565b005b348015610304575f80fd5b5061030d61085a565b60405161031a919061255b565b60405180910390f35b34801561032e575f80fd5b50610337610862565b604051610344919061246f565b60405180910390f35b348015610358575f80fd5b50610361610868565b60405161036e9190612583565b60405180910390f35b348015610382575f80fd5b5061038b61088d565b604051610398919061246f565b60405180910390f35b3480156103ac575f80fd5b506103b5610893565b005b3480156103c2575f80fd5b506103cb61092a565b6040516103d8919061246f565b60405180910390f35b3480156103ec575f80fd5b506103f5610930565b6040516104029190612447565b60405180910390f35b348015610416575f80fd5b5061041f610943565b60405161042c91906125bc565b60405180910390f35b348015610440575f80fd5b5061045b600480360381019061045691906125d5565b610968565b604051610468919061246f565b60405180910390f35b34801561047c575f80fd5b506104856109ae565b005b348015610492575f80fd5b5061049b6109c1565b005b3480156104a8575f80fd5b506104b1610a7e565b005b3480156104be575f80fd5b506104c7610af1565b005b3480156104d4575f80fd5b506104dd610b66565b6040516104ea9190612447565b60405180910390f35b3480156104fe575f80fd5b50610507610b79565b6040516105149190612583565b60405180910390f35b348015610528575f80fd5b50610531610ba0565b60405161053e919061233e565b60405180910390f35b348015610552575f80fd5b5061056d600480360381019061056891906123ef565b610bdd565b60405161057a9190612447565b60405180910390f35b34801561058e575f80fd5b50610597610bfa565b6040516105a49190612447565b60405180910390f35b3480156105b8575f80fd5b506105c1610c0d565b005b3480156105ce575f80fd5b506105d76110a3565b6040516105e4919061246f565b60405180910390f35b3480156105f8575f80fd5b50610613600480360381019061060e9190612600565b6110a9565b604051610620919061246f565b60405180910390f35b348015610634575f80fd5b5061064f600480360381019061064a9190612502565b61112b565b005b34801561065c575f80fd5b50610677600480360381019061067291906125d5565b61118c565b005b348015610684575f80fd5b5061068d61120e565b60405161069a9190612447565b60405180910390f35b60606040518060400160405280600e81526020017f48616e677279204275727269746f000000000000000000000000000000000000815250905090565b5f6106f36106ec611221565b8484611228565b6001905092915050565b5f6012600a61070c919061279a565b633b9aca0061071b91906127e4565b905090565b5f61072c8484846113eb565b6107e984610738611221565b6107e48560405180606001604052806028815260200161334a6028913960025f8b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f61079b611221565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054611d939092919063ffffffff16565b611228565b600190509392505050565b600e5481565b610802611de7565b5f60035f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b5f6012905090565b600a5481565b60105f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600d5481565b600f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108d3611221565b73ffffffffffffffffffffffffffffffffffffffff16146108f2575f80fd5b5f6108fc30610968565b90505f8111156109105761090f81611e65565b5b5f4790505f811115610926576109258161211f565b5b5050565b600c5481565b601060169054906101000a900460ff1681565b600f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f60015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6109b6611de7565b6109bf5f612187565b565b6109c9611de7565b6012600a6109d7919061279a565b633b9aca006109e691906127e4565b6005819055506012600a6109fa919061279a565b633b9aca00610a0991906127e4565b6006819055505f601060176101000a81548160ff0219169083151502179055507f947f344d56e1e8c70dc492fb94c4ddddd490c016aab685f5e7e47b2e85cb44cf6012600a610a58919061279a565b633b9aca00610a6791906127e4565b604051610a74919061246f565b60405180910390a1565b610a86611de7565b601060159054906101000a900460ff16610ad5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610acc9061286f565b60405180910390fd5b5f601060156101000a81548160ff021916908315150217905550565b610af9611de7565b601060159054906101000a900460ff1615610b49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b40906128d7565b60405180910390fd5b6001601060156101000a81548160ff021916908315150217905550565b601060159054906101000a900460ff1681565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606040518060400160405280600381526020017f48424f0000000000000000000000000000000000000000000000000000000000815250905090565b5f610bf0610be9611221565b84846113eb565b6001905092915050565b601060179054906101000a900460ff1681565b610c15611de7565b601060149054906101000a900460ff1615610c65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5c9061293f565b60405180910390fd5b737a250d5630b4cf539739df2c5dacb4c659f2488d60115f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060115f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610d23573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610d479190612971565b73ffffffffffffffffffffffffffffffffffffffff1663c9c653963060115f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610dcd573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610df19190612971565b6040518363ffffffff1660e01b8152600401610e0e92919061299c565b6020604051808303815f875af1158015610e2a573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610e4e9190612971565b60105f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550610ed53060115f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff166012600a610ec1919061279a565b633b9aca00610ed091906127e4565b611228565b60115f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d7194730610f1d30610968565b5f80610f27610b79565b426040518863ffffffff1660e01b8152600401610f4996959493929190612a05565b60606040518083038185885af1158015610f65573d5f803e3d5ffd5b50505050506040513d601f19601f82011682018060405250810190610f8a9190612a78565b50505060105f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663095ea7b360115f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff167fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6040518363ffffffff1660e01b815260040161102a929190612ac8565b6020604051808303815f875af1158015611046573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061106a9190612b03565b506001601060166101000a81548160ff0219169083151502179055506001601060146101000a81548160ff021916908315150217905550565b600b5481565b5f60025f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b611133611de7565b600160035f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b611194611de7565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611202576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f990612b9e565b60405180910390fd5b61120b81612187565b50565b601060149054906101000a900460ff1681565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611296576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128d90612c2c565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611304576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112fb90612cba565b60405180910390fd5b8060025f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516113de919061246f565b60405180910390a3505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611459576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145090612d48565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036114c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114be90612dd6565b60405180910390fd5b5f8111611509576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150090612e64565b60405180910390fd5b5f601060159054906101000a900460ff1615611ae357601060179054906101000a900460ff16156116a65760115f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156115de575060105f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b156116a5574360045f3273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205410611662576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165990612f18565b60405180910390fd5b4360045f3273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055505b5b60105f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614801561174f575060115f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b80156117a2575060035f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b1561189a576005548211156117ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117e390612f80565b60405180910390fd5b600654826117f985610968565b6118039190612f9e565b1115611844576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183b9061301b565b60405180910390fd5b6118806064611872600954600e541161185f57600c54611863565b600a545b8561224890919063ffffffff16565b61225d90919063ffffffff16565b9050600e5f81548092919061189490613039565b91905055505b60105f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614801561192257503073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b8015611975575060035f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b156119fe576005548211156119bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119b690612f80565b60405180910390fd5b6119fb60646119ed600954600e54116119da57600d546119de565b600b545b8561224890919063ffffffff16565b61225d90919063ffffffff16565b90505b5f611a0830610968565b9050601060189054906101000a900460ff16158015611a73575060105f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16145b8015611a8b5750601060169054906101000a900460ff165b8015611a98575060075481115b8015611aa75750600954600e54115b15611ae157611ac9611ac484611abf84600854612272565b612272565b611e65565b5f4790505f811115611adf57611ade4761211f565b5b505b505b5f811115611be257611b3b8160015f3073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205461228a90919063ffffffff16565b60015f3073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055503073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611bd9919061246f565b60405180910390a35b611c328260015f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205461229f90919063ffffffff16565b60015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550611cd5611c89828461229f90919063ffffffff16565b60015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205461228a90919063ffffffff16565b60015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef611d78848661229f90919063ffffffff16565b604051611d85919061246f565b60405180910390a350505050565b5f838311158290611dda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dd1919061233e565b60405180910390fd5b5082840390509392505050565b611def611221565b73ffffffffffffffffffffffffffffffffffffffff16611e0d610b79565b73ffffffffffffffffffffffffffffffffffffffff1614611e63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5a906130ca565b60405180910390fd5b565b6001601060186101000a81548160ff021916908315150217905550601060149054906101000a900460ff16611ecf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ec690613132565b60405180910390fd5b5f600267ffffffffffffffff811115611eeb57611eea613150565b5b604051908082528060200260200182016040528015611f195781602001602082028036833780820191505090505b50905030815f81518110611f3057611f2f61317d565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060115f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611fd4573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611ff89190612971565b8160018151811061200c5761200b61317d565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506120723060115f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684611228565b60115f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac947835f8430426040518663ffffffff1660e01b81526004016120d4959493929190613261565b5f604051808303815f87803b1580156120eb575f80fd5b505af11580156120fd573d5f803e3d5ffd5b50505050505f601060186101000a81548160ff02191690831515021790555050565b600f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc8290811502906040515f60405180830381858888f19350505050158015612183573d5f803e3d5ffd5b5050565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f818361225591906127e4565b905092915050565b5f818361226a91906132e6565b905092915050565b5f8183116122805782612282565b815b905092915050565b5f81836122979190612f9e565b905092915050565b5f81836122ac9190613316565b905092915050565b5f81519050919050565b5f82825260208201905092915050565b5f5b838110156122eb5780820151818401526020810190506122d0565b5f8484015250505050565b5f601f19601f8301169050919050565b5f612310826122b4565b61231a81856122be565b935061232a8185602086016122ce565b612333816122f6565b840191505092915050565b5f6020820190508181035f8301526123568184612306565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f61238b82612362565b9050919050565b61239b81612381565b81146123a5575f80fd5b50565b5f813590506123b681612392565b92915050565b5f819050919050565b6123ce816123bc565b81146123d8575f80fd5b50565b5f813590506123e9816123c5565b92915050565b5f80604083850312156124055761240461235e565b5b5f612412858286016123a8565b9250506020612423858286016123db565b9150509250929050565b5f8115159050919050565b6124418161242d565b82525050565b5f60208201905061245a5f830184612438565b92915050565b612469816123bc565b82525050565b5f6020820190506124825f830184612460565b92915050565b5f805f6060848603121561249f5761249e61235e565b5b5f6124ac868287016123a8565b93505060206124bd868287016123a8565b92505060406124ce868287016123db565b9150509250925092565b6124e18161242d565b81146124eb575f80fd5b50565b5f813590506124fc816124d8565b92915050565b5f80604083850312156125185761251761235e565b5b5f612525858286016123a8565b9250506020612536858286016124ee565b9150509250929050565b5f60ff82169050919050565b61255581612540565b82525050565b5f60208201905061256e5f83018461254c565b92915050565b61257d81612381565b82525050565b5f6020820190506125965f830184612574565b92915050565b5f6125a682612362565b9050919050565b6125b68161259c565b82525050565b5f6020820190506125cf5f8301846125ad565b92915050565b5f602082840312156125ea576125e961235e565b5b5f6125f7848285016123a8565b91505092915050565b5f80604083850312156126165761261561235e565b5b5f612623858286016123a8565b9250506020612634858286016123a8565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f8160011c9050919050565b5f808291508390505b60018511156126c05780860481111561269c5761269b61263e565b5b60018516156126ab5780820291505b80810290506126b98561266b565b9450612680565b94509492505050565b5f826126d85760019050612793565b816126e5575f9050612793565b81600181146126fb576002811461270557612734565b6001915050612793565b60ff8411156127175761271661263e565b5b8360020a91508482111561272e5761272d61263e565b5b50612793565b5060208310610133831016604e8410600b84101617156127695782820a9050838111156127645761276361263e565b5b612793565b6127768484846001612677565b9250905081840481111561278d5761278c61263e565b5b81810290505b9392505050565b5f6127a4826123bc565b91506127af83612540565b92506127dc7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff84846126c9565b905092915050565b5f6127ee826123bc565b91506127f9836123bc565b9250828202612807816123bc565b9150828204841483151761281e5761281d61263e565b5b5092915050565b7f74617820697320616c72656164792064697361626c65640000000000000000005f82015250565b5f6128596017836122be565b915061286482612825565b602082019050919050565b5f6020820190508181035f8301526128868161284d565b9050919050565b7f74617820697320616c726561647920656e61626c6564000000000000000000005f82015250565b5f6128c16016836122be565b91506128cc8261288d565b602082019050919050565b5f6020820190508181035f8301526128ee816128b5565b9050919050565b7f74726164696e6720697320616c7265616479206f70656e0000000000000000005f82015250565b5f6129296017836122be565b9150612934826128f5565b602082019050919050565b5f6020820190508181035f8301526129568161291d565b9050919050565b5f8151905061296b81612392565b92915050565b5f602082840312156129865761298561235e565b5b5f6129938482850161295d565b91505092915050565b5f6040820190506129af5f830185612574565b6129bc6020830184612574565b9392505050565b5f819050919050565b5f819050919050565b5f6129ef6129ea6129e5846129c3565b6129cc565b6123bc565b9050919050565b6129ff816129d5565b82525050565b5f60c082019050612a185f830189612574565b612a256020830188612460565b612a3260408301876129f6565b612a3f60608301866129f6565b612a4c6080830185612574565b612a5960a0830184612460565b979650505050505050565b5f81519050612a72816123c5565b92915050565b5f805f60608486031215612a8f57612a8e61235e565b5b5f612a9c86828701612a64565b9350506020612aad86828701612a64565b9250506040612abe86828701612a64565b9150509250925092565b5f604082019050612adb5f830185612574565b612ae86020830184612460565b9392505050565b5f81519050612afd816124d8565b92915050565b5f60208284031215612b1857612b1761235e565b5b5f612b2584828501612aef565b91505092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f612b886026836122be565b9150612b9382612b2e565b604082019050919050565b5f6020820190508181035f830152612bb581612b7c565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f612c166024836122be565b9150612c2182612bbc565b604082019050919050565b5f6020820190508181035f830152612c4381612c0a565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f612ca46022836122be565b9150612caf82612c4a565b604082019050919050565b5f6020820190508181035f830152612cd181612c98565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f612d326025836122be565b9150612d3d82612cd8565b604082019050919050565b5f6020820190508181035f830152612d5f81612d26565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f612dc06023836122be565b9150612dcb82612d66565b604082019050919050565b5f6020820190508181035f830152612ded81612db4565b9050919050565b7f5472616e7366657220616d6f756e74206d7573742062652067726561746572205f8201527f7468616e207a65726f0000000000000000000000000000000000000000000000602082015250565b5f612e4e6029836122be565b9150612e5982612df4565b604082019050919050565b5f6020820190508181035f830152612e7b81612e42565b9050919050565b7f5f7472616e736665723a205472616e736665722044656c617920656e61626c655f8201527f642e204f6e6c79206f6e652070757263686173652070657220626c6f636b206160208201527f6c6c6f7765642e00000000000000000000000000000000000000000000000000604082015250565b5f612f026047836122be565b9150612f0d82612e82565b606082019050919050565b5f6020820190508181035f830152612f2f81612ef6565b9050919050565b7f4578636565647320746865206d61785478416d6f756e742e00000000000000005f82015250565b5f612f6a6018836122be565b9150612f7582612f36565b602082019050919050565b5f6020820190508181035f830152612f9781612f5e565b9050919050565b5f612fa8826123bc565b9150612fb3836123bc565b9250828201905080821115612fcb57612fca61263e565b5b92915050565b7f4578636565647320746865206d617857616c6c657453697a652e0000000000005f82015250565b5f613005601a836122be565b915061301082612fd1565b602082019050919050565b5f6020820190508181035f83015261303281612ff9565b9050919050565b5f613043826123bc565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036130755761307461263e565b5b600182019050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f6130b46020836122be565b91506130bf82613080565b602082019050919050565b5f6020820190508181035f8301526130e1816130a8565b9050919050565b7f74726164696e67206973206e6f7420796574206f70656e0000000000000000005f82015250565b5f61311c6017836122be565b9150613127826130e8565b602082019050919050565b5f6020820190508181035f83015261314981613110565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b6131dc81612381565b82525050565b5f6131ed83836131d3565b60208301905092915050565b5f602082019050919050565b5f61320f826131aa565b61321981856131b4565b9350613224836131c4565b805f5b8381101561325457815161323b88826131e2565b9750613246836131f9565b925050600181019050613227565b5085935050505092915050565b5f60a0820190506132745f830188612460565b61328160208301876129f6565b81810360408301526132938186613205565b90506132a26060830185612574565b6132af6080830184612460565b9695505050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f6132f0826123bc565b91506132fb836123bc565b92508261330b5761330a6132b9565b5b828204905092915050565b5f613320826123bc565b915061332b836123bc565b92508282039050818111156133435761334261263e565b5b9291505056fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a2646970667358221220d31cff827c97453f66387e542cc050bc0bacb34673ad382bc501ff1a08e51c6a64736f6c63430008150033
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.