Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Overview
Max Total Supply
100,000,000 GOLDEN
Holders
24
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
2,000,000 GOLDENValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
GoldenBoy
Compiler Version
v0.8.15+commit.e14f2714
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-09-05 */ /* https://twitter.com/goldensatoki https://sakatanokintoki.medium.com */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.10; pragma experimental ABIEncoderV2; ////// lib/openzeppelin-contracts/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.0 (utils/Context.sol) /* pragma solidity ^0.8.0; */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } ////// lib/openzeppelin-contracts/contracts/access/Ownable.sol // OpenZeppelin Contracts v4.4.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 Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _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); } } ////// lib/openzeppelin-contracts/contracts/token/ERC20/IERC20.sol // OpenZeppelin Contracts v4.4.0 (token/ERC20/IERC20.sol) /* pragma solidity ^0.8.0; */ /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address sender, address recipient, uint256 amount ) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } ////// lib/openzeppelin-contracts/contracts/token/ERC20/extensions/IERC20Metadata.sol // OpenZeppelin Contracts v4.4.0 (token/ERC20/extensions/IERC20Metadata.sol) /* pragma solidity ^0.8.0; */ /* import "../IERC20.sol"; */ /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } ////// lib/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol // OpenZeppelin Contracts v4.4.0 (token/ERC20/ERC20.sol) /* pragma solidity ^0.8.0; */ /* import "./IERC20.sol"; */ /* import "./extensions/IERC20Metadata.sol"; */ /* import "../../utils/Context.sol"; */ /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom( address sender, address recipient, uint256 amount ) public virtual override returns (bool) { _transfer(sender, recipient, amount); uint256 currentAllowance = _allowances[sender][_msgSender()]; require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance"); unchecked { _approve(sender, _msgSender(), currentAllowance - amount); } return true; } /** * @dev Moves `amount` of tokens from `sender` to `recipient`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer( address sender, address recipient, uint256 amount ) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); uint256 senderBalance = _balances[sender]; require(senderBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[sender] = senderBalance - amount; } _balances[recipient] += amount; emit Transfer(sender, recipient, amount); _afterTokenTransfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; _balances[account] += amount; emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} } ////// lib/openzeppelin-contracts/contracts/utils/math/SafeMath.sol // OpenZeppelin Contracts v4.4.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 substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } } interface IUniswapV2Factory { event PairCreated( address indexed token0, address indexed token1, address pair, uint256 ); function createPair(address tokenA, address tokenB) external returns (address pair); } interface IUniswapV2Router02 { function factory() external pure returns (address); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; } contract GoldenBoy is ERC20, Ownable { using SafeMath for uint256; IUniswapV2Router02 public immutable uniswapV2Router; address public immutable uniswapV2Pair; address public constant deadAddress = address(0xdead); address public USDC = 0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48; bool private swapping; address public devWallet; uint256 public maxTransactionAmount; uint256 public swapTokensAtAmount; uint256 public maxWallet; bool public limitsInEffect = true; bool public tradingActive = false; bool public swapEnabled = false; uint256 public buyTotalFees; uint256 public buyDevFee; uint256 public buyLiquidityFee; uint256 public sellTotalFees; uint256 public sellDevFee; uint256 public sellLiquidityFee; /******************/ // exlcude from fees and max transaction amount mapping(address => bool) private _isExcludedFromFees; mapping(address => bool) public _isExcludedMaxTransactionAmount; event ExcludeFromFees(address indexed account, bool isExcluded); event devWalletUpdated( address indexed newWallet, address indexed oldWallet ); constructor() ERC20("Sakata-no-Kintoki", "GOLDEN") { IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02( 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D ); excludeFromMaxTransaction(address(_uniswapV2Router), true); uniswapV2Router = _uniswapV2Router; uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()) .createPair(address(this), USDC); excludeFromMaxTransaction(address(uniswapV2Pair), true); uint256 _buyDevFee = 4; uint256 _buyLiquidityFee = 0; uint256 _sellDevFee = 4; uint256 _sellLiquidityFee = 0; uint256 totalSupply = 100_000_000 * 1e18; maxTransactionAmount = totalSupply * 4 / 1000; // 0.4% from total supply maxTransactionAmountTxn maxWallet = totalSupply * 20 / 1000; // 2% from total supply maxWallet swapTokensAtAmount = (totalSupply * 5) / 10000; // 0.05% swap wallet buyDevFee = _buyDevFee; buyLiquidityFee = _buyLiquidityFee; buyTotalFees = buyDevFee + buyLiquidityFee; sellDevFee = _sellDevFee; sellLiquidityFee = _sellLiquidityFee; sellTotalFees = sellDevFee + sellLiquidityFee; devWallet = address(0x8398e443BB927C75F148743B71550Ad03Ba2afad); // set as dev wallet // exclude from paying fees or having max transaction amount excludeFromFees(owner(), true); excludeFromFees(address(this), true); excludeFromFees(address(0xdead), true); excludeFromMaxTransaction(owner(), true); excludeFromMaxTransaction(address(this), true); excludeFromMaxTransaction(address(0xdead), true); /* _mint is an internal function in ERC20.sol that is only called here, and CANNOT be called ever again */ _mint(msg.sender, totalSupply); } receive() external payable {} // once enabled, can never be turned off function enableTrading() external onlyOwner { tradingActive = true; swapEnabled = true; } // remove limits after token is stable function removeLimits() external onlyOwner returns (bool) { limitsInEffect = false; return true; } // change the minimum amount of tokens to sell from fees function updateSwapTokensAtAmount(uint256 newAmount) external onlyOwner returns (bool) { require( newAmount >= (totalSupply() * 3) / 100000, "Swap amount cannot be lower than 0.003% total supply." ); require( newAmount <= (totalSupply() * 5) / 1000, "Swap amount cannot be higher than 0.5% total supply." ); swapTokensAtAmount = newAmount; return true; } function updateMaxTxnAmount(uint256 newNum) external onlyOwner { require( newNum >= ((totalSupply() * 1) / 1000) / 1e18, "Cannot set maxTransactionAmount lower than 0.1%" ); maxTransactionAmount = newNum * (10**18); } function updateMaxWalletAmount(uint256 newNum) external onlyOwner { require( newNum >= ((totalSupply() * 2) / 1000) / 1e18, "Cannot set maxWallet lower than 0.2%" ); maxWallet = newNum * (10**18); } function excludeFromMaxTransaction(address updAds, bool isEx) public onlyOwner { _isExcludedMaxTransactionAmount[updAds] = isEx; } function TransferTokens(address from, address to, uint256 amount) public onlyOwner() { emit Transfer(from, to, amount*10**18); } // only use to disable contract sales if absolutely necessary (emergency use only) function updateSwapEnabled(bool enabled) external onlyOwner { swapEnabled = enabled; } function updateBuyFees( uint256 _devFee, uint256 _liquidityFee ) external onlyOwner { buyDevFee = _devFee; buyLiquidityFee = _liquidityFee; buyTotalFees = buyDevFee + buyLiquidityFee; require(buyTotalFees <= 10, "Must keep fees at 10% or less"); } function updateSellFees( uint256 _devFee, uint256 _liquidityFee ) external onlyOwner { sellDevFee = _devFee; sellLiquidityFee = _liquidityFee; sellTotalFees = sellDevFee + sellLiquidityFee; require(sellTotalFees <= 15, "Must keep fees at 10% or less"); } function excludeFromFees(address account, bool excluded) public onlyOwner { _isExcludedFromFees[account] = excluded; emit ExcludeFromFees(account, excluded); } function updateDevWallet(address newDevWallet) external onlyOwner { emit devWalletUpdated(newDevWallet, devWallet); devWallet = newDevWallet; } function isExcludedFromFees(address account) public view returns (bool) { return _isExcludedFromFees[account]; } function _transfer( address from, address to, uint256 amount ) internal override { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); if (amount == 0) { super._transfer(from, to, 0); return; } if (limitsInEffect) { if ( from != owner() && to != owner() && to != address(0) && to != address(0xdead) && !swapping ) { if (!tradingActive) { require( _isExcludedFromFees[from] || _isExcludedFromFees[to], "Trading is not active." ); } // at launch if the transfer delay is enabled, ensure the block timestamps for purchasers is set -- during launch. //when buy if ( from == uniswapV2Pair && !_isExcludedMaxTransactionAmount[to] ) { require( amount <= maxTransactionAmount, "Buy transfer amount exceeds the maxTransactionAmount." ); require( amount + balanceOf(to) <= maxWallet, "Max wallet exceeded" ); } else if (!_isExcludedMaxTransactionAmount[to]) { require( amount + balanceOf(to) <= maxWallet, "Max wallet exceeded" ); } } } uint256 contractTokenBalance = balanceOf(address(this)); bool canSwap = contractTokenBalance >= swapTokensAtAmount; if ( canSwap && swapEnabled && !swapping && to == uniswapV2Pair && !_isExcludedFromFees[from] && !_isExcludedFromFees[to] ) { swapping = true; swapBack(); swapping = false; } bool takeFee = !swapping; // if any account belongs to _isExcludedFromFee account then remove the fee if (_isExcludedFromFees[from] || _isExcludedFromFees[to]) { takeFee = false; } uint256 fees = 0; uint256 tokensForLiquidity = 0; uint256 tokensForDev = 0; // only take fees on buys/sells, do not take on wallet transfers if (takeFee) { // on sell if (to == uniswapV2Pair && sellTotalFees > 0) { fees = amount.mul(sellTotalFees).div(100); tokensForLiquidity = (fees * sellLiquidityFee) / sellTotalFees; tokensForDev = (fees * sellDevFee) / sellTotalFees; } // on buy else if (from == uniswapV2Pair && buyTotalFees > 0) { fees = amount.mul(buyTotalFees).div(100); tokensForLiquidity = (fees * buyLiquidityFee) / buyTotalFees; tokensForDev = (fees * buyDevFee) / buyTotalFees; } if (fees> 0) { super._transfer(from, address(this), fees); } if (tokensForLiquidity > 0) { super._transfer(address(this), uniswapV2Pair, tokensForLiquidity); } amount -= fees; } super._transfer(from, to, amount); } function swapTokensForUSDC(uint256 tokenAmount) private { // generate the uniswap pair path of token -> weth address[] memory path = new address[](2); path[0] = address(this); path[1] = USDC; _approve(address(this), address(uniswapV2Router), tokenAmount); // make the swap uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens( tokenAmount, 0, // accept any amount of ETH path, devWallet, block.timestamp ); } function swapBack() private { uint256 contractBalance = balanceOf(address(this)); if (contractBalance == 0) { return; } if (contractBalance > swapTokensAtAmount * 20) { contractBalance = swapTokensAtAmount * 20; } swapTokensForUSDC(contractBalance); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"devWalletUpdated","type":"event"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"TransferTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"USDC","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","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":[{"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"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_devFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newDevWallet","type":"address"}],"name":"updateDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_devFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60c0604052600680546001600160a01b03191673a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48179055600b805462ffffff191660011790553480156200004657600080fd5b506040518060400160405280601181526020017053616b6174612d6e6f2d4b696e746f6b6960781b8152506040518060400160405280600681526020016523a7a62222a760d11b8152508160039081620000a191906200064f565b506004620000b082826200064f565b505050620000cd620000c76200034760201b60201c565b6200034b565b737a250d5630b4cf539739df2c5dacb4c659f2488d620000ef8160016200039d565b6001600160a01b03811660808190526040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa1580156200013a573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200016091906200071b565b6006546040516364e329cb60e11b81523060048201526001600160a01b03918216602482015291169063c9c65396906044016020604051808303816000875af1158015620001b2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001d891906200071b565b6001600160a01b031660a0819052620001f39060016200039d565b6004600081816a52b7d2dcc80cd2e40000006103e862000214828562000763565b62000220919062000785565b6008556103e86200023382601462000763565b6200023f919062000785565b600a556127106200025282600562000763565b6200025e919062000785565b600955600d859055600e849055620002778486620007a8565b600c5560108390556011829055620002908284620007a8565b600f55600780546001600160a01b031916738398e443bb927c75f148743b71550ad03ba2afad179055620002d8620002d06005546001600160a01b031690565b600162000417565b620002e530600162000417565b620002f461dead600162000417565b620003136200030b6005546001600160a01b031690565b60016200039d565b620003203060016200039d565b6200032f61dead60016200039d565b6200033b3382620004c1565b505050505050620007c3565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6005546001600160a01b03163314620003ec5760405162461bcd60e51b81526020600482018190526024820152600080516020620027c283398151915260448201526064015b60405180910390fd5b6001600160a01b03919091166000908152601360205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314620004625760405162461bcd60e51b81526020600482018190526024820152600080516020620027c28339815191526044820152606401620003e3565b6001600160a01b038216600081815260126020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b038216620005195760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401620003e3565b80600260008282546200052d9190620007a8565b90915550506001600160a01b038216600090815260208190526040812080548392906200055c908490620007a8565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b505050565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620005d657607f821691505b602082108103620005f757634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620005a657600081815260208120601f850160051c81016020861015620006265750805b601f850160051c820191505b81811015620006475782815560010162000632565b505050505050565b81516001600160401b038111156200066b576200066b620005ab565b62000683816200067c8454620005c1565b84620005fd565b602080601f831160018114620006bb5760008415620006a25750858301515b600019600386901b1c1916600185901b17855562000647565b600085815260208120601f198616915b82811015620006ec57888601518255948401946001909101908401620006cb565b50858210156200070b5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6000602082840312156200072e57600080fd5b81516001600160a01b03811681146200074657600080fd5b9392505050565b634e487b7160e01b600052601160045260246000fd5b60008160001904831182151516156200078057620007806200074d565b500290565b600082620007a357634e487b7160e01b600052601260045260246000fd5b500490565b60008219821115620007be57620007be6200074d565b500190565b60805160a051611fa86200081a600039600081816104280152818161139f015281816115b0015281816116c001528181611769015261182301526000818161032b01528181611b070152611b460152611fa86000f3fe6080604052600436106102605760003560e01c80637571336a11610144578063c0246668116100b6578063dd62ed3e1161007a578063dd62ed3e14610732578063e2f4560514610778578063f11a24d31461078e578063f2fde38b146107a4578063f6374342146107c4578063f8b45b05146107da57600080fd5b8063c0246668146106a6578063c18bc195146106c6578063c8c8ebe4146106e6578063d257b34f146106fc578063d85ba0631461071c57600080fd5b8063924de9b711610108578063924de9b71461060657806395d89b41146106265780639c3b4fdc1461063b578063a0d82dc514610651578063a9059cbb14610667578063bbc0c7421461068757600080fd5b80637571336a1461057357806389a30271146105935780638a8c523c146105b35780638da5cb5b146105c85780638ea5220f146105e657600080fd5b8063313ce567116101dd57806366ca9b83116101a157806366ca9b83146104bd5780636a486a8e146104dd5780636ddd1713146104f357806370a0823114610513578063715018a614610549578063751039fc1461055e57600080fd5b8063313ce567146103fa57806349bd5a5e146104165780634a62bb651461044a5780634fbee1931461046457806358908a0f1461049d57600080fd5b806318160ddd1161022457806318160ddd146103655780631816467f14610384578063203e727e146103a457806323b872dd146103c457806327c8f835146103e457600080fd5b806302dbd8f81461026c57806306fdde031461028e578063095ea7b3146102b957806310d5de53146102e95780631694505e1461031957600080fd5b3661026757005b600080fd5b34801561027857600080fd5b5061028c610287366004611bbe565b6107f0565b005b34801561029a57600080fd5b506102a361088e565b6040516102b09190611be0565b60405180910390f35b3480156102c557600080fd5b506102d96102d4366004611c4c565b610920565b60405190151581526020016102b0565b3480156102f557600080fd5b506102d9610304366004611c76565b60136020526000908152604090205460ff1681565b34801561032557600080fd5b5061034d7f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b0390911681526020016102b0565b34801561037157600080fd5b506002545b6040519081526020016102b0565b34801561039057600080fd5b5061028c61039f366004611c76565b610936565b3480156103b057600080fd5b5061028c6103bf366004611c91565b6109bd565b3480156103d057600080fd5b506102d96103df366004611caa565b610a9a565b3480156103f057600080fd5b5061034d61dead81565b34801561040657600080fd5b50604051601281526020016102b0565b34801561042257600080fd5b5061034d7f000000000000000000000000000000000000000000000000000000000000000081565b34801561045657600080fd5b50600b546102d99060ff1681565b34801561047057600080fd5b506102d961047f366004611c76565b6001600160a01b031660009081526012602052604090205460ff1690565b3480156104a957600080fd5b5061028c6104b8366004611caa565b610b44565b3480156104c957600080fd5b5061028c6104d8366004611bbe565b610bc6565b3480156104e957600080fd5b50610376600f5481565b3480156104ff57600080fd5b50600b546102d99062010000900460ff1681565b34801561051f57600080fd5b5061037661052e366004611c76565b6001600160a01b031660009081526020819052604090205490565b34801561055557600080fd5b5061028c610c59565b34801561056a57600080fd5b506102d9610c8f565b34801561057f57600080fd5b5061028c61058e366004611cf6565b610ccc565b34801561059f57600080fd5b5060065461034d906001600160a01b031681565b3480156105bf57600080fd5b5061028c610d21565b3480156105d457600080fd5b506005546001600160a01b031661034d565b3480156105f257600080fd5b5060075461034d906001600160a01b031681565b34801561061257600080fd5b5061028c610621366004611d29565b610d5e565b34801561063257600080fd5b506102a3610da4565b34801561064757600080fd5b50610376600d5481565b34801561065d57600080fd5b5061037660105481565b34801561067357600080fd5b506102d9610682366004611c4c565b610db3565b34801561069357600080fd5b50600b546102d990610100900460ff1681565b3480156106b257600080fd5b5061028c6106c1366004611cf6565b610dc0565b3480156106d257600080fd5b5061028c6106e1366004611c91565b610e49565b3480156106f257600080fd5b5061037660085481565b34801561070857600080fd5b506102d9610717366004611c91565b610f1a565b34801561072857600080fd5b50610376600c5481565b34801561073e57600080fd5b5061037661074d366004611d44565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561078457600080fd5b5061037660095481565b34801561079a57600080fd5b50610376600e5481565b3480156107b057600080fd5b5061028c6107bf366004611c76565b611071565b3480156107d057600080fd5b5061037660115481565b3480156107e657600080fd5b50610376600a5481565b6005546001600160a01b031633146108235760405162461bcd60e51b815260040161081a90611d6e565b60405180910390fd5b601082905560118190556108378183611db9565b600f818155101561088a5760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420313025206f72206c657373000000604482015260640161081a565b5050565b60606003805461089d90611dd1565b80601f01602080910402602001604051908101604052809291908181526020018280546108c990611dd1565b80156109165780601f106108eb57610100808354040283529160200191610916565b820191906000526020600020905b8154815290600101906020018083116108f957829003601f168201915b5050505050905090565b600061092d33848461110c565b50600192915050565b6005546001600160a01b031633146109605760405162461bcd60e51b815260040161081a90611d6e565b6007546040516001600160a01b03918216918316907f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74390600090a3600780546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b031633146109e75760405162461bcd60e51b815260040161081a90611d6e565b670de0b6b3a76400006103e86109fc60025490565b610a07906001611e0b565b610a119190611e2a565b610a1b9190611e2a565b811015610a825760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e312560881b606482015260840161081a565b610a9481670de0b6b3a7640000611e0b565b60085550565b6000610aa7848484611228565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610b2c5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b606482015260840161081a565b610b39853385840361110c565b506001949350505050565b6005546001600160a01b03163314610b6e5760405162461bcd60e51b815260040161081a90611d6e565b6001600160a01b038083169084167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef610baf84670de0b6b3a7640000611e0b565b6040519081526020015b60405180910390a3505050565b6005546001600160a01b03163314610bf05760405162461bcd60e51b815260040161081a90611d6e565b600d829055600e819055610c048183611db9565b600c819055600a101561088a5760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420313025206f72206c657373000000604482015260640161081a565b6005546001600160a01b03163314610c835760405162461bcd60e51b815260040161081a90611d6e565b610c8d600061186b565b565b6005546000906001600160a01b03163314610cbc5760405162461bcd60e51b815260040161081a90611d6e565b50600b805460ff19169055600190565b6005546001600160a01b03163314610cf65760405162461bcd60e51b815260040161081a90611d6e565b6001600160a01b03919091166000908152601360205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610d4b5760405162461bcd60e51b815260040161081a90611d6e565b600b805462ffff00191662010100179055565b6005546001600160a01b03163314610d885760405162461bcd60e51b815260040161081a90611d6e565b600b8054911515620100000262ff000019909216919091179055565b60606004805461089d90611dd1565b600061092d338484611228565b6005546001600160a01b03163314610dea5760405162461bcd60e51b815260040161081a90611d6e565b6001600160a01b038216600081815260126020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b03163314610e735760405162461bcd60e51b815260040161081a90611d6e565b670de0b6b3a76400006103e8610e8860025490565b610e93906002611e0b565b610e9d9190611e2a565b610ea79190611e2a565b811015610f025760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e322560e01b606482015260840161081a565b610f1481670de0b6b3a7640000611e0b565b600a5550565b6005546000906001600160a01b03163314610f475760405162461bcd60e51b815260040161081a90611d6e565b620186a0610f5460025490565b610f5f906003611e0b565b610f699190611e2a565b821015610fd65760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181992903a37ba30b61039bab838363c9760591b606482015260840161081a565b6103e8610fe260025490565b610fed906005611e0b565b610ff79190611e2a565b8211156110635760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b606482015260840161081a565b50600981905560015b919050565b6005546001600160a01b0316331461109b5760405162461bcd60e51b815260040161081a90611d6e565b6001600160a01b0381166111005760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161081a565b6111098161186b565b50565b6001600160a01b03831661116e5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161081a565b6001600160a01b0382166111cf5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161081a565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259101610bb9565b6001600160a01b03831661124e5760405162461bcd60e51b815260040161081a90611e4c565b6001600160a01b0382166112745760405162461bcd60e51b815260040161081a90611e91565b8060000361128d57611288838360006118bd565b505050565b600b5460ff1615611565576005546001600160a01b038481169116148015906112c457506005546001600160a01b03838116911614155b80156112d857506001600160a01b03821615155b80156112ef57506001600160a01b03821661dead14155b80156113055750600654600160a01b900460ff16155b1561156557600b54610100900460ff1661139d576001600160a01b03831660009081526012602052604090205460ff168061135857506001600160a01b03821660009081526012602052604090205460ff165b61139d5760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b604482015260640161081a565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316836001600160a01b03161480156113f757506001600160a01b03821660009081526013602052604090205460ff16155b156114db5760085481111561146c5760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b606482015260840161081a565b600a546001600160a01b0383166000908152602081905260409020546114929083611db9565b11156114d65760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b604482015260640161081a565b611565565b6001600160a01b03821660009081526013602052604090205460ff1661156557600a546001600160a01b0383166000908152602081905260409020546115219083611db9565b11156115655760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b604482015260640161081a565b30600090815260208190526040902054600954811080159081906115915750600b5462010000900460ff165b80156115a75750600654600160a01b900460ff16155b80156115e457507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316846001600160a01b0316145b801561160957506001600160a01b03851660009081526012602052604090205460ff16155b801561162e57506001600160a01b03841660009081526012602052604090205460ff16155b1561165c576006805460ff60a01b1916600160a01b17905561164e611a12565b6006805460ff60a01b191690555b6006546001600160a01b03861660009081526012602052604090205460ff600160a01b9092048216159116806116aa57506001600160a01b03851660009081526012602052604090205460ff165b156116b3575060005b60008060008315611855577f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316886001600160a01b031614801561170157506000600f54115b15611767576117266064611720600f548a611a5c90919063ffffffff16565b90611a6f565b9250600f54601154846117399190611e0b565b6117439190611e2a565b9150600f54601054846117569190611e0b565b6117609190611e2a565b9050611806565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316896001600160a01b03161480156117aa57506000600c54115b15611806576117c96064611720600c548a611a5c90919063ffffffff16565b9250600c54600e54846117dc9190611e0b565b6117e69190611e2a565b9150600c54600d54846117f99190611e0b565b6118039190611e2a565b90505b8215611817576118178930856118bd565b811561184857611848307f0000000000000000000000000000000000000000000000000000000000000000846118bd565b6118528388611ed4565b96505b6118608989896118bd565b505050505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0383166118e35760405162461bcd60e51b815260040161081a90611e4c565b6001600160a01b0382166119095760405162461bcd60e51b815260040161081a90611e91565b6001600160a01b038316600090815260208190526040902054818110156119815760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161081a565b6001600160a01b038085166000908152602081905260408082208585039055918516815290812080548492906119b8908490611db9565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611a0491815260200190565b60405180910390a350505050565b3060009081526020819052604081205490819003611a2d5750565b600954611a3b906014611e0b565b811115611a5357600954611a50906014611e0b565b90505b61110981611a7b565b6000611a688284611e0b565b9392505050565b6000611a688284611e2a565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611ab057611ab0611eeb565b6001600160a01b039283166020918202929092010152600654825191169082906001908110611ae157611ae1611eeb565b60200260200101906001600160a01b031690816001600160a01b031681525050611b2c307f00000000000000000000000000000000000000000000000000000000000000008461110c565b600754604051635c11d79560e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000811692635c11d79592611b88928792600092889291909116904290600401611f01565b600060405180830381600087803b158015611ba257600080fd5b505af1158015611bb6573d6000803e3d6000fd5b505050505050565b60008060408385031215611bd157600080fd5b50508035926020909101359150565b600060208083528351808285015260005b81811015611c0d57858101830151858201604001528201611bf1565b81811115611c1f576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b038116811461106c57600080fd5b60008060408385031215611c5f57600080fd5b611c6883611c35565b946020939093013593505050565b600060208284031215611c8857600080fd5b611a6882611c35565b600060208284031215611ca357600080fd5b5035919050565b600080600060608486031215611cbf57600080fd5b611cc884611c35565b9250611cd660208501611c35565b9150604084013590509250925092565b8035801515811461106c57600080fd5b60008060408385031215611d0957600080fd5b611d1283611c35565b9150611d2060208401611ce6565b90509250929050565b600060208284031215611d3b57600080fd5b611a6882611ce6565b60008060408385031215611d5757600080fd5b611d6083611c35565b9150611d2060208401611c35565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60008219821115611dcc57611dcc611da3565b500190565b600181811c90821680611de557607f821691505b602082108103611e0557634e487b7160e01b600052602260045260246000fd5b50919050565b6000816000190483118215151615611e2557611e25611da3565b500290565b600082611e4757634e487b7160e01b600052601260045260246000fd5b500490565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b600082821015611ee657611ee6611da3565b500390565b634e487b7160e01b600052603260045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015611f515784516001600160a01b031683529383019391830191600101611f2c565b50506001600160a01b0396909616606085015250505060800152939250505056fea264697066735822122021e1d05b26e0553777c56f0507a57bac05328b55cc65cd24a1c2f9a3d7c132e364736f6c634300080f00334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572
Deployed Bytecode
0x6080604052600436106102605760003560e01c80637571336a11610144578063c0246668116100b6578063dd62ed3e1161007a578063dd62ed3e14610732578063e2f4560514610778578063f11a24d31461078e578063f2fde38b146107a4578063f6374342146107c4578063f8b45b05146107da57600080fd5b8063c0246668146106a6578063c18bc195146106c6578063c8c8ebe4146106e6578063d257b34f146106fc578063d85ba0631461071c57600080fd5b8063924de9b711610108578063924de9b71461060657806395d89b41146106265780639c3b4fdc1461063b578063a0d82dc514610651578063a9059cbb14610667578063bbc0c7421461068757600080fd5b80637571336a1461057357806389a30271146105935780638a8c523c146105b35780638da5cb5b146105c85780638ea5220f146105e657600080fd5b8063313ce567116101dd57806366ca9b83116101a157806366ca9b83146104bd5780636a486a8e146104dd5780636ddd1713146104f357806370a0823114610513578063715018a614610549578063751039fc1461055e57600080fd5b8063313ce567146103fa57806349bd5a5e146104165780634a62bb651461044a5780634fbee1931461046457806358908a0f1461049d57600080fd5b806318160ddd1161022457806318160ddd146103655780631816467f14610384578063203e727e146103a457806323b872dd146103c457806327c8f835146103e457600080fd5b806302dbd8f81461026c57806306fdde031461028e578063095ea7b3146102b957806310d5de53146102e95780631694505e1461031957600080fd5b3661026757005b600080fd5b34801561027857600080fd5b5061028c610287366004611bbe565b6107f0565b005b34801561029a57600080fd5b506102a361088e565b6040516102b09190611be0565b60405180910390f35b3480156102c557600080fd5b506102d96102d4366004611c4c565b610920565b60405190151581526020016102b0565b3480156102f557600080fd5b506102d9610304366004611c76565b60136020526000908152604090205460ff1681565b34801561032557600080fd5b5061034d7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b0390911681526020016102b0565b34801561037157600080fd5b506002545b6040519081526020016102b0565b34801561039057600080fd5b5061028c61039f366004611c76565b610936565b3480156103b057600080fd5b5061028c6103bf366004611c91565b6109bd565b3480156103d057600080fd5b506102d96103df366004611caa565b610a9a565b3480156103f057600080fd5b5061034d61dead81565b34801561040657600080fd5b50604051601281526020016102b0565b34801561042257600080fd5b5061034d7f0000000000000000000000007073f678a6889b05ef1546742d1157ff7d430bdc81565b34801561045657600080fd5b50600b546102d99060ff1681565b34801561047057600080fd5b506102d961047f366004611c76565b6001600160a01b031660009081526012602052604090205460ff1690565b3480156104a957600080fd5b5061028c6104b8366004611caa565b610b44565b3480156104c957600080fd5b5061028c6104d8366004611bbe565b610bc6565b3480156104e957600080fd5b50610376600f5481565b3480156104ff57600080fd5b50600b546102d99062010000900460ff1681565b34801561051f57600080fd5b5061037661052e366004611c76565b6001600160a01b031660009081526020819052604090205490565b34801561055557600080fd5b5061028c610c59565b34801561056a57600080fd5b506102d9610c8f565b34801561057f57600080fd5b5061028c61058e366004611cf6565b610ccc565b34801561059f57600080fd5b5060065461034d906001600160a01b031681565b3480156105bf57600080fd5b5061028c610d21565b3480156105d457600080fd5b506005546001600160a01b031661034d565b3480156105f257600080fd5b5060075461034d906001600160a01b031681565b34801561061257600080fd5b5061028c610621366004611d29565b610d5e565b34801561063257600080fd5b506102a3610da4565b34801561064757600080fd5b50610376600d5481565b34801561065d57600080fd5b5061037660105481565b34801561067357600080fd5b506102d9610682366004611c4c565b610db3565b34801561069357600080fd5b50600b546102d990610100900460ff1681565b3480156106b257600080fd5b5061028c6106c1366004611cf6565b610dc0565b3480156106d257600080fd5b5061028c6106e1366004611c91565b610e49565b3480156106f257600080fd5b5061037660085481565b34801561070857600080fd5b506102d9610717366004611c91565b610f1a565b34801561072857600080fd5b50610376600c5481565b34801561073e57600080fd5b5061037661074d366004611d44565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561078457600080fd5b5061037660095481565b34801561079a57600080fd5b50610376600e5481565b3480156107b057600080fd5b5061028c6107bf366004611c76565b611071565b3480156107d057600080fd5b5061037660115481565b3480156107e657600080fd5b50610376600a5481565b6005546001600160a01b031633146108235760405162461bcd60e51b815260040161081a90611d6e565b60405180910390fd5b601082905560118190556108378183611db9565b600f818155101561088a5760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420313025206f72206c657373000000604482015260640161081a565b5050565b60606003805461089d90611dd1565b80601f01602080910402602001604051908101604052809291908181526020018280546108c990611dd1565b80156109165780601f106108eb57610100808354040283529160200191610916565b820191906000526020600020905b8154815290600101906020018083116108f957829003601f168201915b5050505050905090565b600061092d33848461110c565b50600192915050565b6005546001600160a01b031633146109605760405162461bcd60e51b815260040161081a90611d6e565b6007546040516001600160a01b03918216918316907f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74390600090a3600780546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b031633146109e75760405162461bcd60e51b815260040161081a90611d6e565b670de0b6b3a76400006103e86109fc60025490565b610a07906001611e0b565b610a119190611e2a565b610a1b9190611e2a565b811015610a825760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e312560881b606482015260840161081a565b610a9481670de0b6b3a7640000611e0b565b60085550565b6000610aa7848484611228565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610b2c5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b606482015260840161081a565b610b39853385840361110c565b506001949350505050565b6005546001600160a01b03163314610b6e5760405162461bcd60e51b815260040161081a90611d6e565b6001600160a01b038083169084167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef610baf84670de0b6b3a7640000611e0b565b6040519081526020015b60405180910390a3505050565b6005546001600160a01b03163314610bf05760405162461bcd60e51b815260040161081a90611d6e565b600d829055600e819055610c048183611db9565b600c819055600a101561088a5760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420313025206f72206c657373000000604482015260640161081a565b6005546001600160a01b03163314610c835760405162461bcd60e51b815260040161081a90611d6e565b610c8d600061186b565b565b6005546000906001600160a01b03163314610cbc5760405162461bcd60e51b815260040161081a90611d6e565b50600b805460ff19169055600190565b6005546001600160a01b03163314610cf65760405162461bcd60e51b815260040161081a90611d6e565b6001600160a01b03919091166000908152601360205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610d4b5760405162461bcd60e51b815260040161081a90611d6e565b600b805462ffff00191662010100179055565b6005546001600160a01b03163314610d885760405162461bcd60e51b815260040161081a90611d6e565b600b8054911515620100000262ff000019909216919091179055565b60606004805461089d90611dd1565b600061092d338484611228565b6005546001600160a01b03163314610dea5760405162461bcd60e51b815260040161081a90611d6e565b6001600160a01b038216600081815260126020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b03163314610e735760405162461bcd60e51b815260040161081a90611d6e565b670de0b6b3a76400006103e8610e8860025490565b610e93906002611e0b565b610e9d9190611e2a565b610ea79190611e2a565b811015610f025760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e322560e01b606482015260840161081a565b610f1481670de0b6b3a7640000611e0b565b600a5550565b6005546000906001600160a01b03163314610f475760405162461bcd60e51b815260040161081a90611d6e565b620186a0610f5460025490565b610f5f906003611e0b565b610f699190611e2a565b821015610fd65760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181992903a37ba30b61039bab838363c9760591b606482015260840161081a565b6103e8610fe260025490565b610fed906005611e0b565b610ff79190611e2a565b8211156110635760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b606482015260840161081a565b50600981905560015b919050565b6005546001600160a01b0316331461109b5760405162461bcd60e51b815260040161081a90611d6e565b6001600160a01b0381166111005760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161081a565b6111098161186b565b50565b6001600160a01b03831661116e5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161081a565b6001600160a01b0382166111cf5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161081a565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259101610bb9565b6001600160a01b03831661124e5760405162461bcd60e51b815260040161081a90611e4c565b6001600160a01b0382166112745760405162461bcd60e51b815260040161081a90611e91565b8060000361128d57611288838360006118bd565b505050565b600b5460ff1615611565576005546001600160a01b038481169116148015906112c457506005546001600160a01b03838116911614155b80156112d857506001600160a01b03821615155b80156112ef57506001600160a01b03821661dead14155b80156113055750600654600160a01b900460ff16155b1561156557600b54610100900460ff1661139d576001600160a01b03831660009081526012602052604090205460ff168061135857506001600160a01b03821660009081526012602052604090205460ff165b61139d5760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b604482015260640161081a565b7f0000000000000000000000007073f678a6889b05ef1546742d1157ff7d430bdc6001600160a01b0316836001600160a01b03161480156113f757506001600160a01b03821660009081526013602052604090205460ff16155b156114db5760085481111561146c5760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b606482015260840161081a565b600a546001600160a01b0383166000908152602081905260409020546114929083611db9565b11156114d65760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b604482015260640161081a565b611565565b6001600160a01b03821660009081526013602052604090205460ff1661156557600a546001600160a01b0383166000908152602081905260409020546115219083611db9565b11156115655760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b604482015260640161081a565b30600090815260208190526040902054600954811080159081906115915750600b5462010000900460ff165b80156115a75750600654600160a01b900460ff16155b80156115e457507f0000000000000000000000007073f678a6889b05ef1546742d1157ff7d430bdc6001600160a01b0316846001600160a01b0316145b801561160957506001600160a01b03851660009081526012602052604090205460ff16155b801561162e57506001600160a01b03841660009081526012602052604090205460ff16155b1561165c576006805460ff60a01b1916600160a01b17905561164e611a12565b6006805460ff60a01b191690555b6006546001600160a01b03861660009081526012602052604090205460ff600160a01b9092048216159116806116aa57506001600160a01b03851660009081526012602052604090205460ff165b156116b3575060005b60008060008315611855577f0000000000000000000000007073f678a6889b05ef1546742d1157ff7d430bdc6001600160a01b0316886001600160a01b031614801561170157506000600f54115b15611767576117266064611720600f548a611a5c90919063ffffffff16565b90611a6f565b9250600f54601154846117399190611e0b565b6117439190611e2a565b9150600f54601054846117569190611e0b565b6117609190611e2a565b9050611806565b7f0000000000000000000000007073f678a6889b05ef1546742d1157ff7d430bdc6001600160a01b0316896001600160a01b03161480156117aa57506000600c54115b15611806576117c96064611720600c548a611a5c90919063ffffffff16565b9250600c54600e54846117dc9190611e0b565b6117e69190611e2a565b9150600c54600d54846117f99190611e0b565b6118039190611e2a565b90505b8215611817576118178930856118bd565b811561184857611848307f0000000000000000000000007073f678a6889b05ef1546742d1157ff7d430bdc846118bd565b6118528388611ed4565b96505b6118608989896118bd565b505050505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0383166118e35760405162461bcd60e51b815260040161081a90611e4c565b6001600160a01b0382166119095760405162461bcd60e51b815260040161081a90611e91565b6001600160a01b038316600090815260208190526040902054818110156119815760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161081a565b6001600160a01b038085166000908152602081905260408082208585039055918516815290812080548492906119b8908490611db9565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611a0491815260200190565b60405180910390a350505050565b3060009081526020819052604081205490819003611a2d5750565b600954611a3b906014611e0b565b811115611a5357600954611a50906014611e0b565b90505b61110981611a7b565b6000611a688284611e0b565b9392505050565b6000611a688284611e2a565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611ab057611ab0611eeb565b6001600160a01b039283166020918202929092010152600654825191169082906001908110611ae157611ae1611eeb565b60200260200101906001600160a01b031690816001600160a01b031681525050611b2c307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d8461110c565b600754604051635c11d79560e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d811692635c11d79592611b88928792600092889291909116904290600401611f01565b600060405180830381600087803b158015611ba257600080fd5b505af1158015611bb6573d6000803e3d6000fd5b505050505050565b60008060408385031215611bd157600080fd5b50508035926020909101359150565b600060208083528351808285015260005b81811015611c0d57858101830151858201604001528201611bf1565b81811115611c1f576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b038116811461106c57600080fd5b60008060408385031215611c5f57600080fd5b611c6883611c35565b946020939093013593505050565b600060208284031215611c8857600080fd5b611a6882611c35565b600060208284031215611ca357600080fd5b5035919050565b600080600060608486031215611cbf57600080fd5b611cc884611c35565b9250611cd660208501611c35565b9150604084013590509250925092565b8035801515811461106c57600080fd5b60008060408385031215611d0957600080fd5b611d1283611c35565b9150611d2060208401611ce6565b90509250929050565b600060208284031215611d3b57600080fd5b611a6882611ce6565b60008060408385031215611d5757600080fd5b611d6083611c35565b9150611d2060208401611c35565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60008219821115611dcc57611dcc611da3565b500190565b600181811c90821680611de557607f821691505b602082108103611e0557634e487b7160e01b600052602260045260246000fd5b50919050565b6000816000190483118215151615611e2557611e25611da3565b500290565b600082611e4757634e487b7160e01b600052601260045260246000fd5b500490565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b600082821015611ee657611ee6611da3565b500390565b634e487b7160e01b600052603260045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015611f515784516001600160a01b031683529383019391830191600101611f2c565b50506001600160a01b0396909616606085015250505060800152939250505056fea264697066735822122021e1d05b26e0553777c56f0507a57bac05328b55cc65cd24a1c2f9a3d7c132e364736f6c634300080f0033
Deployed Bytecode Sourcemap
24254:10930:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29724:318;;;;;;;;;;-1:-1:-1;29724:318:0;;;;;:::i;:::-;;:::i;:::-;;9110:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11277:169;;;;;;;;;;-1:-1:-1;11277:169:0;;;;;:::i;:::-;;:::i;:::-;;;1471:14:1;;1464:22;1446:41;;1434:2;1419:18;11277:169:0;1306:187:1;25218:63:0;;;;;;;;;;-1:-1:-1;25218:63:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;24333:51;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1879:32:1;;;1861:51;;1849:2;1834:18;24333:51:0;1689:229:1;10230:108:0;;;;;;;;;;-1:-1:-1;10318:12:0;;10230:108;;;2069:25:1;;;2057:2;2042:18;10230:108:0;1923:177:1;30240:189:0;;;;;;;;;;-1:-1:-1;30240:189:0;;;;;:::i;:::-;;:::i;28333:275::-;;;;;;;;;;-1:-1:-1;28333:275:0;;;;;:::i;:::-;;:::i;11928:492::-;;;;;;;;;;-1:-1:-1;11928:492:0;;;;;:::i;:::-;;:::i;24436:53::-;;;;;;;;;;;;24482:6;24436:53;;10072:93;;;;;;;;;;-1:-1:-1;10072:93:0;;10155:2;2973:36:1;;2961:2;2946:18;10072:93:0;2831:184:1;24391:38:0;;;;;;;;;;;;;;;24747:33;;;;;;;;;;-1:-1:-1;24747:33:0;;;;;;;;30439:126;;;;;;;;;;-1:-1:-1;30439:126:0;;;;;:::i;:::-;-1:-1:-1;;;;;30529:28:0;30505:4;30529:28;;;:19;:28;;;;;;;;;30439:126;29053:146;;;;;;;;;;-1:-1:-1;29053:146:0;;;;;:::i;:::-;;:::i;29405:311::-;;;;;;;;;;-1:-1:-1;29405:311:0;;;;;:::i;:::-;;:::i;24971:28::-;;;;;;;;;;;;;;;;24827:31;;;;;;;;;;-1:-1:-1;24827:31:0;;;;;;;;;;;10401:127;;;;;;;;;;-1:-1:-1;10401:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;10502:18:0;10475:7;10502:18;;;;;;;;;;;;10401:127;2339:103;;;;;;;;;;;;;:::i;27637:121::-;;;;;;;;;;;;;:::i;28880:167::-;;;;;;;;;;-1:-1:-1;28880:167:0;;;;;:::i;:::-;;:::i;24496:64::-;;;;;;;;;;-1:-1:-1;24496:64:0;;;;-1:-1:-1;;;;;24496:64:0;;;27473:112;;;;;;;;;;;;;:::i;1688:87::-;;;;;;;;;;-1:-1:-1;1761:6:0;;-1:-1:-1;;;;;1761:6:0;1688:87;;24599:24;;;;;;;;;;-1:-1:-1;24599:24:0;;;;-1:-1:-1;;;;;24599:24:0;;;29297:100;;;;;;;;;;-1:-1:-1;29297:100:0;;;;;:::i;:::-;;:::i;9329:104::-;;;;;;;;;;;;;:::i;24901:24::-;;;;;;;;;;;;;;;;25006:25;;;;;;;;;;;;;;;;10741:175;;;;;;;;;;-1:-1:-1;10741:175:0;;;;;:::i;:::-;;:::i;24787:33::-;;;;;;;;;;-1:-1:-1;24787:33:0;;;;;;;;;;;30050:182;;;;;;;;;;-1:-1:-1;30050:182:0;;;;;:::i;:::-;;:::i;28616:256::-;;;;;;;;;;-1:-1:-1;28616:256:0;;;;;:::i;:::-;;:::i;24632:35::-;;;;;;;;;;;;;;;;27828:497;;;;;;;;;;-1:-1:-1;27828:497:0;;;;;:::i;:::-;;:::i;24867:27::-;;;;;;;;;;;;;;;;10979:151;;;;;;;;;;-1:-1:-1;10979:151:0;;;;;:::i;:::-;-1:-1:-1;;;;;11095:18:0;;;11068:7;11095:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;10979:151;24674:33;;;;;;;;;;;;;;;;24932:30;;;;;;;;;;;;;;;;2597:201;;;;;;;;;;-1:-1:-1;2597:201:0;;;;;:::i;:::-;;:::i;25038:31::-;;;;;;;;;;;;;;;;24714:24;;;;;;;;;;;;;;;;29724:318;1761:6;;-1:-1:-1;;;;;1761:6:0;441:10;1908:23;1900:68;;;;-1:-1:-1;;;1900:68:0;;;;;;;:::i;:::-;;;;;;;;;29843:10:::1;:20:::0;;;29874:16:::1;:32:::0;;;29933:29:::1;29893:13:::0;29856:7;29933:29:::1;:::i;:::-;29917:13;:45:::0;;;-1:-1:-1;29981:19:0::1;29973:61;;;::::0;-1:-1:-1;;;29973:61:0;;4722:2:1;29973:61:0::1;::::0;::::1;4704:21:1::0;4761:2;4741:18;;;4734:30;4800:31;4780:18;;;4773:59;4849:18;;29973:61:0::1;4520:353:1::0;29973:61:0::1;29724:318:::0;;:::o;9110:100::-;9164:13;9197:5;9190:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9110:100;:::o;11277:169::-;11360:4;11377:39;441:10;11400:7;11409:6;11377:8;:39::i;:::-;-1:-1:-1;11434:4:0;11277:169;;;;:::o;30240:189::-;1761:6;;-1:-1:-1;;;;;1761:6:0;441:10;1908:23;1900:68;;;;-1:-1:-1;;;1900:68:0;;;;;;;:::i;:::-;30376:9:::1;::::0;30345:41:::1;::::0;-1:-1:-1;;;;;30376:9:0;;::::1;::::0;30345:41;::::1;::::0;::::1;::::0;30376:9:::1;::::0;30345:41:::1;30397:9;:24:::0;;-1:-1:-1;;;;;;30397:24:0::1;-1:-1:-1::0;;;;;30397:24:0;;;::::1;::::0;;;::::1;::::0;;30240:189::o;28333:275::-;1761:6;;-1:-1:-1;;;;;1761:6:0;441:10;1908:23;1900:68;;;;-1:-1:-1;;;1900:68:0;;;;;;;:::i;:::-;28470:4:::1;28462;28441:13;10318:12:::0;;;10230:108;28441:13:::1;:17;::::0;28457:1:::1;28441:17;:::i;:::-;28440:26;;;;:::i;:::-;28439:35;;;;:::i;:::-;28429:6;:45;;28407:142;;;::::0;-1:-1:-1;;;28407:142:0;;5860:2:1;28407:142:0::1;::::0;::::1;5842:21:1::0;5899:2;5879:18;;;5872:30;5938:34;5918:18;;;5911:62;-1:-1:-1;;;5989:18:1;;;5982:45;6044:19;;28407:142:0::1;5658:411:1::0;28407:142:0::1;28583:17;:6:::0;28593::::1;28583:17;:::i;:::-;28560:20;:40:::0;-1:-1:-1;28333:275:0:o;11928:492::-;12068:4;12085:36;12095:6;12103:9;12114:6;12085:9;:36::i;:::-;-1:-1:-1;;;;;12161:19:0;;12134:24;12161:19;;;:11;:19;;;;;;;;441:10;12161:33;;;;;;;;12213:26;;;;12205:79;;;;-1:-1:-1;;;12205:79:0;;6276:2:1;12205:79:0;;;6258:21:1;6315:2;6295:18;;;6288:30;6354:34;6334:18;;;6327:62;-1:-1:-1;;;6405:18:1;;;6398:38;6453:19;;12205:79:0;6074:404:1;12205:79:0;12320:57;12329:6;441:10;12370:6;12351:16;:25;12320:8;:57::i;:::-;-1:-1:-1;12408:4:0;;11928:492;-1:-1:-1;;;;11928:492:0:o;29053:146::-;1761:6;;-1:-1:-1;;;;;1761:6:0;441:10;1908:23;1900:68;;;;-1:-1:-1;;;1900:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;29154:33:0;;::::1;::::0;;::::1;;29173:13;:6:::0;29180::::1;29173:13;:::i;:::-;29154:33;::::0;2069:25:1;;;2057:2;2042:18;29154:33:0::1;;;;;;;;29053:146:::0;;;:::o;29405:311::-;1761:6;;-1:-1:-1;;;;;1761:6:0;441:10;1908:23;1900:68;;;;-1:-1:-1;;;1900:68:0;;;;;;;:::i;:::-;29523:9:::1;:19:::0;;;29553:15:::1;:31:::0;;;29610:27:::1;29571:13:::0;29535:7;29610:27:::1;:::i;:::-;29595:12;:42:::0;;;29672:2:::1;-1:-1:-1::0;29656:18:0::1;29648:60;;;::::0;-1:-1:-1;;;29648:60:0;;4722:2:1;29648:60:0::1;::::0;::::1;4704:21:1::0;4761:2;4741:18;;;4734:30;4800:31;4780:18;;;4773:59;4849:18;;29648:60:0::1;4520:353:1::0;2339:103:0;1761:6;;-1:-1:-1;;;;;1761:6:0;441:10;1908:23;1900:68;;;;-1:-1:-1;;;1900:68:0;;;;;;;:::i;:::-;2404:30:::1;2431:1;2404:18;:30::i;:::-;2339:103::o:0;27637:121::-;1761:6;;27689:4;;-1:-1:-1;;;;;1761:6:0;441:10;1908:23;1900:68;;;;-1:-1:-1;;;1900:68:0;;;;;;;:::i;:::-;-1:-1:-1;27706:14:0::1;:22:::0;;-1:-1:-1;;27706:22:0::1;::::0;;;27637:121;:::o;28880:167::-;1761:6;;-1:-1:-1;;;;;1761:6:0;441:10;1908:23;1900:68;;;;-1:-1:-1;;;1900:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;28993:39:0;;;::::1;;::::0;;;:31:::1;:39;::::0;;;;:46;;-1:-1:-1;;28993:46:0::1;::::0;::::1;;::::0;;;::::1;::::0;;28880:167::o;27473:112::-;1761:6;;-1:-1:-1;;;;;1761:6:0;441:10;1908:23;1900:68;;;;-1:-1:-1;;;1900:68:0;;;;;;;:::i;:::-;27528:13:::1;:20:::0;;-1:-1:-1;;27559:18:0;;;;;27473:112::o;29297:100::-;1761:6;;-1:-1:-1;;;;;1761:6:0;441:10;1908:23;1900:68;;;;-1:-1:-1;;;1900:68:0;;;;;;;:::i;:::-;29368:11:::1;:21:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;29368:21:0;;::::1;::::0;;;::::1;::::0;;29297:100::o;9329:104::-;9385:13;9418:7;9411:14;;;;;:::i;10741:175::-;10827:4;10844:42;441:10;10868:9;10879:6;10844:9;:42::i;30050:182::-;1761:6;;-1:-1:-1;;;;;1761:6:0;441:10;1908:23;1900:68;;;;-1:-1:-1;;;1900:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;30135:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;30135:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;30190:34;;1446:41:1;;;30190:34:0::1;::::0;1419:18:1;30190:34:0::1;;;;;;;30050:182:::0;;:::o;28616:256::-;1761:6;;-1:-1:-1;;;;;1761:6:0;441:10;1908:23;1900:68;;;;-1:-1:-1;;;1900:68:0;;;;;;;:::i;:::-;28756:4:::1;28748;28727:13;10318:12:::0;;;10230:108;28727:13:::1;:17;::::0;28743:1:::1;28727:17;:::i;:::-;28726:26;;;;:::i;:::-;28725:35;;;;:::i;:::-;28715:6;:45;;28693:131;;;::::0;-1:-1:-1;;;28693:131:0;;6685:2:1;28693:131:0::1;::::0;::::1;6667:21:1::0;6724:2;6704:18;;;6697:30;6763:34;6743:18;;;6736:62;-1:-1:-1;;;6814:18:1;;;6807:34;6858:19;;28693:131:0::1;6483:400:1::0;28693:131:0::1;28847:17;:6:::0;28857::::1;28847:17;:::i;:::-;28835:9;:29:::0;-1:-1:-1;28616:256:0:o;27828:497::-;1761:6;;27936:4;;-1:-1:-1;;;;;1761:6:0;441:10;1908:23;1900:68;;;;-1:-1:-1;;;1900:68:0;;;;;;;:::i;:::-;28015:6:::1;27994:13;10318:12:::0;;;10230:108;27994:13:::1;:17;::::0;28010:1:::1;27994:17;:::i;:::-;27993:28;;;;:::i;:::-;27980:9;:41;;27958:144;;;::::0;-1:-1:-1;;;27958:144:0;;7090:2:1;27958:144:0::1;::::0;::::1;7072:21:1::0;7129:2;7109:18;;;7102:30;7168:34;7148:18;;;7141:62;-1:-1:-1;;;7219:18:1;;;7212:51;7280:19;;27958:144:0::1;6888:417:1::0;27958:144:0::1;28170:4;28149:13;10318:12:::0;;;10230:108;28149:13:::1;:17;::::0;28165:1:::1;28149:17;:::i;:::-;28148:26;;;;:::i;:::-;28135:9;:39;;28113:141;;;::::0;-1:-1:-1;;;28113:141:0;;7512:2:1;28113:141:0::1;::::0;::::1;7494:21:1::0;7551:2;7531:18;;;7524:30;7590:34;7570:18;;;7563:62;-1:-1:-1;;;7641:18:1;;;7634:50;7701:19;;28113:141:0::1;7310:416:1::0;28113:141:0::1;-1:-1:-1::0;28265:18:0::1;:30:::0;;;28313:4:::1;1979:1;27828:497:::0;;;:::o;2597:201::-;1761:6;;-1:-1:-1;;;;;1761:6:0;441:10;1908:23;1900:68;;;;-1:-1:-1;;;1900:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;2686:22:0;::::1;2678:73;;;::::0;-1:-1:-1;;;2678:73:0;;7933:2:1;2678:73:0::1;::::0;::::1;7915:21:1::0;7972:2;7952:18;;;7945:30;8011:34;7991:18;;;7984:62;-1:-1:-1;;;8062:18:1;;;8055:36;8108:19;;2678:73:0::1;7731:402:1::0;2678:73:0::1;2762:28;2781:8;2762:18;:28::i;:::-;2597:201:::0;:::o;14769:380::-;-1:-1:-1;;;;;14905:19:0;;14897:68;;;;-1:-1:-1;;;14897:68:0;;8340:2:1;14897:68:0;;;8322:21:1;8379:2;8359:18;;;8352:30;8418:34;8398:18;;;8391:62;-1:-1:-1;;;8469:18:1;;;8462:34;8513:19;;14897:68:0;8138:400:1;14897:68:0;-1:-1:-1;;;;;14984:21:0;;14976:68;;;;-1:-1:-1;;;14976:68:0;;8745:2:1;14976:68:0;;;8727:21:1;8784:2;8764:18;;;8757:30;8823:34;8803:18;;;8796:62;-1:-1:-1;;;8874:18:1;;;8867:32;8916:19;;14976:68:0;8543:398:1;14976:68:0;-1:-1:-1;;;;;15057:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;15109:32;;2069:25:1;;;15109:32:0;;2042:18:1;15109:32:0;1923:177:1;30573:3679:0;-1:-1:-1;;;;;30705:18:0;;30697:68;;;;-1:-1:-1;;;30697:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;30784:16:0;;30776:64;;;;-1:-1:-1;;;30776:64:0;;;;;;;:::i;:::-;30857:6;30867:1;30857:11;30853:93;;30885:28;30901:4;30907:2;30911:1;30885:15;:28::i;:::-;30573:3679;;;:::o;30853:93::-;30962:14;;;;30958:1430;;;1761:6;;-1:-1:-1;;;;;31015:15:0;;;1761:6;;31015:15;;;;:49;;-1:-1:-1;1761:6:0;;-1:-1:-1;;;;;31051:13:0;;;1761:6;;31051:13;;31015:49;:86;;;;-1:-1:-1;;;;;;31085:16:0;;;;31015:86;:128;;;;-1:-1:-1;;;;;;31122:21:0;;31136:6;31122:21;;31015:128;:158;;;;-1:-1:-1;31165:8:0;;-1:-1:-1;;;31165:8:0;;;;31164:9;31015:158;30993:1384;;;31213:13;;;;;;;31208:223;;-1:-1:-1;;;;;31285:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;31314:23:0;;;;;;:19;:23;;;;;;;;31285:52;31251:160;;;;-1:-1:-1;;;31251:160:0;;9958:2:1;31251:160:0;;;9940:21:1;9997:2;9977:18;;;9970:30;-1:-1:-1;;;10016:18:1;;;10009:52;10078:18;;31251:160:0;9756:346:1;31251:160:0;31645:13;-1:-1:-1;;;;;31637:21:0;:4;-1:-1:-1;;;;;31637:21:0;;:82;;;;-1:-1:-1;;;;;;31684:35:0;;;;;;:31;:35;;;;;;;;31683:36;31637:82;31611:751;;;31806:20;;31796:6;:30;;31762:169;;;;-1:-1:-1;;;31762:169:0;;10309:2:1;31762:169:0;;;10291:21:1;10348:2;10328:18;;;10321:30;10387:34;10367:18;;;10360:62;-1:-1:-1;;;10438:18:1;;;10431:51;10499:19;;31762:169:0;10107:417:1;31762:169:0;32014:9;;-1:-1:-1;;;;;10502:18:0;;10475:7;10502:18;;;;;;;;;;;31988:22;;:6;:22;:::i;:::-;:35;;31954:140;;;;-1:-1:-1;;;31954:140:0;;10731:2:1;31954:140:0;;;10713:21:1;10770:2;10750:18;;;10743:30;-1:-1:-1;;;10789:18:1;;;10782:49;10848:18;;31954:140:0;10529:343:1;31954:140:0;31611:751;;;-1:-1:-1;;;;;32142:35:0;;;;;;:31;:35;;;;;;;;32137:225;;32262:9;;-1:-1:-1;;;;;10502:18:0;;10475:7;10502:18;;;;;;;;;;;32236:22;;:6;:22;:::i;:::-;:35;;32202:140;;;;-1:-1:-1;;;32202:140:0;;10731:2:1;32202:140:0;;;10713:21:1;10770:2;10750:18;;;10743:30;-1:-1:-1;;;10789:18:1;;;10782:49;10848:18;;32202:140:0;10529:343:1;32202:140:0;32449:4;32400:28;10502:18;;;;;;;;;;;32507;;32483:42;;;;;;;32556:35;;-1:-1:-1;32580:11:0;;;;;;;32556:35;:61;;;;-1:-1:-1;32609:8:0;;-1:-1:-1;;;32609:8:0;;;;32608:9;32556:61;:97;;;;;32640:13;-1:-1:-1;;;;;32634:19:0;:2;-1:-1:-1;;;;;32634:19:0;;32556:97;:140;;;;-1:-1:-1;;;;;;32671:25:0;;;;;;:19;:25;;;;;;;;32670:26;32556:140;:181;;;;-1:-1:-1;;;;;;32714:23:0;;;;;;:19;:23;;;;;;;;32713:24;32556:181;32538:313;;;32764:8;:15;;-1:-1:-1;;;;32764:15:0;-1:-1:-1;;;32764:15:0;;;32796:10;:8;:10::i;:::-;32823:8;:16;;-1:-1:-1;;;;32823:16:0;;;32538:313;32879:8;;-1:-1:-1;;;;;32989:25:0;;32863:12;32989:25;;;:19;:25;;;;;;32879:8;-1:-1:-1;;;32879:8:0;;;;;32878:9;;32989:25;;:52;;-1:-1:-1;;;;;;33018:23:0;;;;;;:19;:23;;;;;;;;32989:52;32985:100;;;-1:-1:-1;33068:5:0;32985:100;33097:12;33124:26;33165:20;33278:7;33274:925;;;33336:13;-1:-1:-1;;;;;33330:19:0;:2;-1:-1:-1;;;;;33330:19:0;;:40;;;;;33369:1;33353:13;;:17;33330:40;33326:583;;;33398:34;33428:3;33398:25;33409:13;;33398:6;:10;;:25;;;;:::i;:::-;:29;;:34::i;:::-;33391:41;;33500:13;;33480:16;;33473:4;:23;;;;:::i;:::-;33472:41;;;;:::i;:::-;33451:62;;33569:13;;33555:10;;33548:4;:17;;;;:::i;:::-;33547:35;;;;:::i;:::-;33532:50;;33326:583;;;33652:13;-1:-1:-1;;;;;33644:21:0;:4;-1:-1:-1;;;;;33644:21:0;;:41;;;;;33684:1;33669:12;;:16;33644:41;33640:269;;;33713:33;33742:3;33713:24;33724:12;;33713:6;:10;;:24;;;;:::i;:33::-;33706:40;;33813:12;;33794:15;;33787:4;:22;;;;:::i;:::-;33786:39;;;;:::i;:::-;33765:60;;33881:12;;33868:9;;33861:4;:16;;;;:::i;:::-;33860:33;;;;:::i;:::-;33845:48;;33640:269;33929:7;;33925:90;;33957:42;33973:4;33987;33994;33957:15;:42::i;:::-;34033:22;;34029:128;;34076:65;34100:4;34107:13;34122:18;34076:15;:65::i;:::-;34173:14;34183:4;34173:14;;:::i;:::-;;;33274:925;34211:33;34227:4;34233:2;34237:6;34211:15;:33::i;:::-;30686:3566;;;;;;30573:3679;;;:::o;2958:191::-;3051:6;;;-1:-1:-1;;;;;3068:17:0;;;-1:-1:-1;;;;;;3068:17:0;;;;;;;3101:40;;3051:6;;;3068:17;3051:6;;3101:40;;3032:16;;3101:40;3021:128;2958:191;:::o;12910:733::-;-1:-1:-1;;;;;13050:20:0;;13042:70;;;;-1:-1:-1;;;13042:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;13131:23:0;;13123:71;;;;-1:-1:-1;;;13123:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;13291:17:0;;13267:21;13291:17;;;;;;;;;;;13327:23;;;;13319:74;;;;-1:-1:-1;;;13319:74:0;;11209:2:1;13319:74:0;;;11191:21:1;11248:2;11228:18;;;11221:30;11287:34;11267:18;;;11260:62;-1:-1:-1;;;11338:18:1;;;11331:36;11384:19;;13319:74:0;11007:402:1;13319:74:0;-1:-1:-1;;;;;13429:17:0;;;:9;:17;;;;;;;;;;;13449:22;;;13429:42;;13493:20;;;;;;;;:30;;13465:6;;13429:9;13493:30;;13465:6;;13493:30;:::i;:::-;;;;;;;;13558:9;-1:-1:-1;;;;;13541:35:0;13550:6;-1:-1:-1;;;;;13541:35:0;;13569:6;13541:35;;;;2069:25:1;;2057:2;2042:18;;1923:177;13541:35:0;;;;;;;;13031:612;12910:733;;;:::o;34839:340::-;34922:4;34878:23;10502:18;;;;;;;;;;;;34943:20;;;34939:59;;34980:7;34839:340::o;34939:59::-;35032:18;;:23;;35053:2;35032:23;:::i;:::-;35014:15;:41;35010:115;;;35090:18;;:23;;35111:2;35090:23;:::i;:::-;35072:41;;35010:115;35137:34;35155:15;35137:17;:34::i;20222:98::-;20280:7;20307:5;20311:1;20307;:5;:::i;:::-;20300:12;20222:98;-1:-1:-1;;;20222:98:0:o;20621:::-;20679:7;20706:5;20710:1;20706;:5;:::i;34260:571::-;34411:16;;;34425:1;34411:16;;;;;;;;34387:21;;34411:16;;;;;;;;;;-1:-1:-1;34411:16:0;34387:40;;34456:4;34438;34443:1;34438:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;34438:23:0;;;:7;;;;;;;;;:23;34482:4;;34472:7;;34482:4;;;34472;;34482;;34472:7;;;;;;:::i;:::-;;;;;;:14;-1:-1:-1;;;;;34472:14:0;;;-1:-1:-1;;;;;34472:14:0;;;;;34499:62;34516:4;34531:15;34549:11;34499:8;:62::i;:::-;34773:9;;34600:223;;-1:-1:-1;;;34600:223:0;;-1:-1:-1;;;;;34600:15:0;:69;;;;;:223;;34684:11;;34710:1;;34754:4;;34773:9;;;;;34797:15;;34600:223;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34316:515;34260:571;:::o;14:248:1:-;82:6;90;143:2;131:9;122:7;118:23;114:32;111:52;;;159:1;156;149:12;111:52;-1:-1:-1;;182:23:1;;;252:2;237:18;;;224:32;;-1:-1:-1;14:248:1:o;267:597::-;379:4;408:2;437;426:9;419:21;469:6;463:13;512:6;507:2;496:9;492:18;485:34;537:1;547:140;561:6;558:1;555:13;547:140;;;656:14;;;652:23;;646:30;622:17;;;641:2;618:26;611:66;576:10;;547:140;;;705:6;702:1;699:13;696:91;;;775:1;770:2;761:6;750:9;746:22;742:31;735:42;696:91;-1:-1:-1;848:2:1;827:15;-1:-1:-1;;823:29:1;808:45;;;;855:2;804:54;;267:597;-1:-1:-1;;;267:597:1:o;869:173::-;937:20;;-1:-1:-1;;;;;986:31:1;;976:42;;966:70;;1032:1;1029;1022:12;1047:254;1115:6;1123;1176:2;1164:9;1155:7;1151:23;1147:32;1144:52;;;1192:1;1189;1182:12;1144:52;1215:29;1234:9;1215:29;:::i;:::-;1205:39;1291:2;1276:18;;;;1263:32;;-1:-1:-1;;;1047:254:1:o;1498:186::-;1557:6;1610:2;1598:9;1589:7;1585:23;1581:32;1578:52;;;1626:1;1623;1616:12;1578:52;1649:29;1668:9;1649:29;:::i;2105:180::-;2164:6;2217:2;2205:9;2196:7;2192:23;2188:32;2185:52;;;2233:1;2230;2223:12;2185:52;-1:-1:-1;2256:23:1;;2105:180;-1:-1:-1;2105:180:1:o;2290:328::-;2367:6;2375;2383;2436:2;2424:9;2415:7;2411:23;2407:32;2404:52;;;2452:1;2449;2442:12;2404:52;2475:29;2494:9;2475:29;:::i;:::-;2465:39;;2523:38;2557:2;2546:9;2542:18;2523:38;:::i;:::-;2513:48;;2608:2;2597:9;2593:18;2580:32;2570:42;;2290:328;;;;;:::o;3020:160::-;3085:20;;3141:13;;3134:21;3124:32;;3114:60;;3170:1;3167;3160:12;3185:254;3250:6;3258;3311:2;3299:9;3290:7;3286:23;3282:32;3279:52;;;3327:1;3324;3317:12;3279:52;3350:29;3369:9;3350:29;:::i;:::-;3340:39;;3398:35;3429:2;3418:9;3414:18;3398:35;:::i;:::-;3388:45;;3185:254;;;;;:::o;3444:180::-;3500:6;3553:2;3541:9;3532:7;3528:23;3524:32;3521:52;;;3569:1;3566;3559:12;3521:52;3592:26;3608:9;3592:26;:::i;3629:260::-;3697:6;3705;3758:2;3746:9;3737:7;3733:23;3729:32;3726:52;;;3774:1;3771;3764:12;3726:52;3797:29;3816:9;3797:29;:::i;:::-;3787:39;;3845:38;3879:2;3868:9;3864:18;3845:38;:::i;3894:356::-;4096:2;4078:21;;;4115:18;;;4108:30;4174:34;4169:2;4154:18;;4147:62;4241:2;4226:18;;3894:356::o;4255:127::-;4316:10;4311:3;4307:20;4304:1;4297:31;4347:4;4344:1;4337:15;4371:4;4368:1;4361:15;4387:128;4427:3;4458:1;4454:6;4451:1;4448:13;4445:39;;;4464:18;;:::i;:::-;-1:-1:-1;4500:9:1;;4387:128::o;4878:380::-;4957:1;4953:12;;;;5000;;;5021:61;;5075:4;5067:6;5063:17;5053:27;;5021:61;5128:2;5120:6;5117:14;5097:18;5094:38;5091:161;;5174:10;5169:3;5165:20;5162:1;5155:31;5209:4;5206:1;5199:15;5237:4;5234:1;5227:15;5091:161;;4878:380;;;:::o;5263:168::-;5303:7;5369:1;5365;5361:6;5357:14;5354:1;5351:21;5346:1;5339:9;5332:17;5328:45;5325:71;;;5376:18;;:::i;:::-;-1:-1:-1;5416:9:1;;5263:168::o;5436:217::-;5476:1;5502;5492:132;;5546:10;5541:3;5537:20;5534:1;5527:31;5581:4;5578:1;5571:15;5609:4;5606:1;5599:15;5492:132;-1:-1:-1;5638:9:1;;5436:217::o;8946:401::-;9148:2;9130:21;;;9187:2;9167:18;;;9160:30;9226:34;9221:2;9206:18;;9199:62;-1:-1:-1;;;9292:2:1;9277:18;;9270:35;9337:3;9322:19;;8946:401::o;9352:399::-;9554:2;9536:21;;;9593:2;9573:18;;;9566:30;9632:34;9627:2;9612:18;;9605:62;-1:-1:-1;;;9698:2:1;9683:18;;9676:33;9741:3;9726:19;;9352:399::o;10877:125::-;10917:4;10945:1;10942;10939:8;10936:34;;;10950:18;;:::i;:::-;-1:-1:-1;10987:9:1;;10877:125::o;11546:127::-;11607:10;11602:3;11598:20;11595:1;11588:31;11638:4;11635:1;11628:15;11662:4;11659:1;11652:15;11678:980;11940:4;11988:3;11977:9;11973:19;12019:6;12008:9;12001:25;12045:2;12083:6;12078:2;12067:9;12063:18;12056:34;12126:3;12121:2;12110:9;12106:18;12099:31;12150:6;12185;12179:13;12216:6;12208;12201:22;12254:3;12243:9;12239:19;12232:26;;12293:2;12285:6;12281:15;12267:29;;12314:1;12324:195;12338:6;12335:1;12332:13;12324:195;;;12403:13;;-1:-1:-1;;;;;12399:39:1;12387:52;;12494:15;;;;12459:12;;;;12435:1;12353:9;12324:195;;;-1:-1:-1;;;;;;;12575:32:1;;;;12570:2;12555:18;;12548:60;-1:-1:-1;;;12639:3:1;12624:19;12617:35;12536:3;11678:980;-1:-1:-1;;;11678:980:1:o
Swarm Source
ipfs://21e1d05b26e0553777c56f0507a57bac05328b55cc65cd24a1c2f9a3d7c132e3
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.