Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Blockchain
Overview
Max Total Supply
1,000,000,000 AVENT
Holders
487 ( 0.205%)
Market
Price
$0.00 @ 0.000000 ETH (+4.53%)
Onchain Market Cap
$431,690.00
Circulating Supply Market Cap
$432,093.00
Other Info
Token Contract (WITH 18 Decimals)
Balance
28,655.190562436006403025 AVENTValue
$12.37 ( ~0.00387979628225789 Eth) [0.0029%]Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
Aventa
Compiler Version
v0.8.24+commit.e11b9ed9
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2024-10-03 */ // SPDX-License-Identifier: MIT // https://aventaproject.com // https://t.me/AventaProject // https://docs.aventaproject.com // https://x.com/AventaProject pragma solidity ^0.8.24; // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.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(0x3B068F4Fa718eD1F21D291f4C20aB1C80909A5D3); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require( newOwner != address(0), "Ownable: new owner is the zero address" ); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval( address indexed owner, address indexed spender, uint256 value ); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 amount ) external returns (bool); } // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.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); } // OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.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.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom( address from, address to, uint256 amount ) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, spender) + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require( currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero" ); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `from` to `to`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer( address from, address to, uint256 amount ) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require( fromBalance >= amount, "ERC20: transfer amount exceeds balance" ); unchecked { _balances[from] = fromBalance - amount; // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by // decrementing then incrementing. _balances[to] += amount; } emit Transfer(from, to, amount); _afterTokenTransfer(from, to, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; unchecked { // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above. _balances[account] += amount; } emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; // Overflow not possible: amount <= accountBalance <= totalSupply. _totalSupply -= amount; } emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance( address owner, address spender, uint256 amount ) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require( currentAllowance >= amount, "ERC20: insufficient allowance" ); unchecked { _approve(owner, spender, currentAllowance - amount); } } } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} } interface IUniswapV2Factory { function createPair(address tokenA, address tokenB) external returns (address pair); } interface IUniswapV2Router02 { function swapExactTokensForETHSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidityETH( address token, uint256 amountTokenDesired, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline ) external payable returns ( uint256 amountToken, uint256 amountETH, uint256 liquidity ); } contract Aventa is Context, ERC20, Ownable { IUniswapV2Router02 private uniswapV2Router; mapping(address => bool) public _excludedFees; mapping(address => bool) private _excludedMaxTx; mapping(address => bool) private _isBot; bool public tradingOpen; bool private _swapping; bool public swapEnabled; uint256 private constant _tSupply = 1_000_000_000 * (10**18); uint256 public maxBuyAmount = _tSupply; uint256 public maxSellAmount = _tSupply; uint256 public maxWalletAmount = _tSupply; uint256 public constant FEE_DIVISOR = 1000; uint256 private _totalFees; uint256 private _devFee; uint256 public buyDevFee = 250; //25 % uint256 private _previousBuyDevFee = buyDevFee; uint256 public sellDevFee = 250; //25 % uint256 private _previousSellDevFee = sellDevFee; uint256 private _tokensForDev; uint256 private _swapTokensAtAmount = 0; address payable private _devWallet = payable(0xD2A2c7D6b98e6243E1638718338a51d46Bc3D4A2); address public uniswapV2Pair; address private constant DEAD = 0x000000000000000000000000000000000000dEaD; address private constant ZERO = 0x0000000000000000000000000000000000000000; constructor() ERC20("Aventa", "AVENT") { uniswapV2Router = IUniswapV2Router02( 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D ); _approve(address(this), address(uniswapV2Router), _tSupply); uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair( address(this), uniswapV2Router.WETH() ); IERC20(uniswapV2Pair).approve( address(uniswapV2Router), type(uint256).max ); _excludedFees[owner()] = true; _excludedFees[address(this)] = true; _excludedFees[DEAD] = true; _excludedMaxTx[owner()] = true; _excludedMaxTx[address(this)] = true; _excludedMaxTx[DEAD] = true; _mint(owner(), _tSupply); } function _transfer( address from, address to, uint256 amount ) internal override { require(from != ZERO, "ERC20: transfer from the zero address"); require(to != ZERO, "ERC20: transfer to the zero address"); require(amount > 0, "Transfer amount must be greater than zero"); bool takeFee = true; bool shouldSwap = false; if ( from != owner() && to != owner() && to != ZERO && to != DEAD && !_swapping ) { require(!_isBot[from] && !_isBot[to], "Bot."); if (!tradingOpen) require( _excludedFees[from] || _excludedFees[to], "Trading is not allowed yet." ); if ( from == uniswapV2Pair && to != address(uniswapV2Router) && !_excludedMaxTx[to] ) { require( amount <= maxBuyAmount, "Transfer amount exceeds the maxBuyAmount." ); require( balanceOf(to) + amount <= maxWalletAmount, "Exceeds maximum wallet token amount." ); } if ( to == uniswapV2Pair && from != address(uniswapV2Router) && !_excludedMaxTx[from] ) { require( amount <= maxSellAmount, "Transfer amount exceeds the maxSellAmount." ); shouldSwap = true; } } if (_excludedFees[from] || _excludedFees[to]) takeFee = false; if (from != uniswapV2Pair && to != uniswapV2Pair) takeFee = false; uint256 contractBalance = balanceOf(address(this)); bool canSwap = (contractBalance > _swapTokensAtAmount) && shouldSwap; if ( canSwap && swapEnabled && !_swapping && !_excludedFees[from] && !_excludedFees[to] ) { _swapping = true; _swapBack(contractBalance); _swapping = false; } _tokenTransfer(from, to, amount, takeFee, shouldSwap); } function _swapBack(uint256 contractBalance) internal { uint256 totalTokensToSwap = (_tokensForDev); bool success; if (contractBalance == 0 || totalTokensToSwap == 0) return; if (contractBalance > _swapTokensAtAmount * (5)) contractBalance = _swapTokensAtAmount * (5); uint256 amountToSwapForETH = contractBalance; uint256 initialETHBalance = address(this).balance; swapTokensForETH(amountToSwapForETH); uint256 ETHBalance = address(this).balance - (initialETHBalance); uint256 ETHForDev = ETHBalance; _tokensForDev = 0; (success, ) = address(_devWallet).call{value: ETHForDev}(""); } function swapTokensForETH(uint256 tokenAmount) internal { address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapV2Router.WETH(); _approve(address(this), address(uniswapV2Router), tokenAmount); uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, path, address(this), block.timestamp ); } function sendETHToFee(uint256 amount) internal { _devWallet.transfer(amount); } function isBot(address wallet) external view returns (bool) { return _isBot[wallet]; } function openTrading() public onlyOwner { require(!tradingOpen, "Trading is already open"); swapEnabled = true; maxBuyAmount = (_tSupply * (1)) / (100); maxSellAmount = (_tSupply * (1)) / (100); maxWalletAmount = (_tSupply * (2)) / (100); _swapTokensAtAmount = 1956743 ether; tradingOpen = true; } function setSwapEnabled(bool onoff) public onlyOwner { swapEnabled = onoff; } function setMaxBuyAmount(uint256 _maxBuyAmount) public onlyOwner { maxBuyAmount = _maxBuyAmount; } function setMaxSellAmount(uint256 _maxSellAmount) public onlyOwner { maxSellAmount = _maxSellAmount; } function setMaxWalletAmount(uint256 _maxWalletAmount) public onlyOwner { maxWalletAmount = _maxWalletAmount; } function setSwapTokensAtAmount(uint256 swapTokensAtAmount) public onlyOwner { _swapTokensAtAmount = swapTokensAtAmount; } function setDevWallet(address devWallet) public onlyOwner { require(devWallet != ZERO, "_devWallet address cannot be 0"); _excludedFees[_devWallet] = false; _excludedMaxTx[_devWallet] = false; _devWallet = payable(devWallet); _excludedFees[_devWallet] = true; _excludedMaxTx[_devWallet] = true; } function excludeFees(address[] memory accounts, bool exclude) public onlyOwner { for (uint256 i = 0; i < accounts.length; i++) _excludedFees[accounts[i]] = exclude; } function excludeMaxTx(address[] memory accounts, bool exclude) public onlyOwner { for (uint256 i = 0; i < accounts.length; i++) _excludedMaxTx[accounts[i]] = exclude; } function bots(address[] memory accounts, bool bl) public onlyOwner { for (uint256 i = 0; i < accounts.length; i++) { if ( (accounts[i] != uniswapV2Pair) && (accounts[i] != address(this)) && (accounts[i] != address(uniswapV2Router)) ) _isBot[accounts[i]] = bl; } } function buyFee(uint256 _buyDevFee) public onlyOwner { buyDevFee = _buyDevFee; } function sellFee(uint256 _sellDevFee) public onlyOwner { sellDevFee = _sellDevFee; } function removeAllFee() internal { if (buyDevFee == 0 && sellDevFee == 0) return; _previousBuyDevFee = buyDevFee; _previousSellDevFee = sellDevFee; buyDevFee = 0; sellDevFee = 0; } function restoreAllFee() internal { buyDevFee = _previousBuyDevFee; sellDevFee = _previousSellDevFee; } function _tokenTransfer( address sender, address recipient, uint256 amount, bool takeFee, bool isSell ) internal { if (!takeFee) removeAllFee(); else amount = _takeFees(sender, amount, isSell); super._transfer(sender, recipient, amount); if (!takeFee) restoreAllFee(); } function _takeFees( address sender, uint256 amount, bool isSell ) internal returns (uint256) { if (isSell) _setSell(); else _setBuy(); uint256 fees; if (_totalFees > 0) { fees = (amount * (_totalFees)) / (FEE_DIVISOR); _tokensForDev += (fees * _devFee) / _totalFees; } if (fees > 0) super._transfer(sender, address(this), fees); return amount -= fees; } function _setSell() internal { _devFee = sellDevFee; _totalFees = (_devFee); } function _setBuy() internal { _devFee = buyDevFee; _totalFees = (_devFee); } function unclog() public onlyOwner { uint256 contractBalance = balanceOf(address(this)); swapTokensForETH(contractBalance); } function sendFees() public onlyOwner { uint256 contractETHBalance = address(this).balance; sendETHToFee(contractETHBalance); } function rescueETH() public onlyOwner { bool success; (success, ) = address(msg.sender).call{value: address(this).balance}( "" ); } function rescueForeignTokens(address tkn) public onlyOwner { require(tkn != address(this), "Cannot withdraw this token"); require(IERC20(tkn).balanceOf(address(this)) > 0, "No tokens"); uint256 amount = IERC20(tkn).balanceOf(address(this)); IERC20(tkn).transfer(msg.sender, amount); } function removeLimits() public onlyOwner { maxBuyAmount = _tSupply; maxSellAmount = _tSupply; maxWalletAmount = _tSupply; } receive() external payable {} fallback() external payable {} }
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":"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"},{"stateMutability":"payable","type":"fallback"},{"inputs":[],"name":"FEE_DIVISOR","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_excludedFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"bool","name":"bl","type":"bool"}],"name":"bots","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"buyDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_buyDevFee","type":"uint256"}],"name":"buyFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"bool","name":"exclude","type":"bool"}],"name":"excludeFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"bool","name":"exclude","type":"bool"}],"name":"excludeMaxTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"wallet","type":"address"}],"name":"isBot","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxBuyAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSellAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletAmount","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":"openTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"rescueETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"tkn","type":"address"}],"name":"rescueForeignTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_sellDevFee","type":"uint256"}],"name":"sellFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sendFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"devWallet","type":"address"}],"name":"setDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxBuyAmount","type":"uint256"}],"name":"setMaxBuyAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSellAmount","type":"uint256"}],"name":"setMaxSellAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxWalletAmount","type":"uint256"}],"name":"setMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"onoff","type":"bool"}],"name":"setSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"swapTokensAtAmount","type":"uint256"}],"name":"setSwapTokensAtAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unclog","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60806040526b033b2e3c9fd0803ce8000000600b819055600c819055600d5560fa6010819055601181905560128190556013555f601555601680546001600160a01b03191673d2a2c7d6b98e6243e1638718338a51d46bc3d4a217905534801562000068575f80fd5b50604051806040016040528060068152602001654176656e746160d01b81525060405180604001604052806005815260200164105591539560da1b8152508160039081620000b7919062000748565b506004620000c6828262000748565b505050620000ee733b068f4fa718ed1f21d291f4c20ab1c80909a5d36200046960201b60201c565b600680546001600160a01b031916737a250d5630b4cf539739df2c5dacb4c659f2488d908117909155620001319030906b033b2e3c9fd0803ce8000000620004ba565b60065f9054906101000a90046001600160a01b03166001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000182573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620001a8919062000814565b6001600160a01b031663c9c653963060065f9054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000208573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906200022e919062000814565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af115801562000279573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906200029f919062000814565b601780546001600160a01b0319166001600160a01b0392831690811790915560065460405163095ea7b360e01b8152921660048301525f1960248301529063095ea7b3906044016020604051808303815f875af115801562000303573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019062000329919062000843565b50600160075f620003426005546001600160a01b031690565b6001600160a01b0316815260208082019290925260409081015f908120805494151560ff199586161790553081526007909252812080548316600190811790915561dead82527fb0c2646e02af70b79e3fe9277b98373379f54150e4e26b2b5650139f7a75a65d80549093168117909255600890620003c96005546001600160a01b031690565b6001600160a01b0316815260208082019290925260409081015f908120805494151560ff199586161790553081526008909252812080548316600190811790915561dead9091527f046fee3d77c34a6c5e10c3be6dc4b132c30449dbf4f0bc07684896dd09334299805490921617905562000463620004506005546001600160a01b031690565b6b033b2e3c9fd0803ce8000000620005e5565b6200088a565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b038316620005225760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084015b60405180910390fd5b6001600160a01b038216620005855760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840162000519565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0382166200063d5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640162000519565b8060025f82825462000650919062000864565b90915550506001600160a01b0382165f81815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b505050565b634e487b7160e01b5f52604160045260245ffd5b600181811c90821680620006d457607f821691505b602082108103620006f357634e487b7160e01b5f52602260045260245ffd5b50919050565b601f821115620006a657805f5260205f20601f840160051c81016020851015620007205750805b601f840160051c820191505b8181101562000741575f81556001016200072c565b5050505050565b81516001600160401b03811115620007645762000764620006ab565b6200077c81620007758454620006bf565b84620006f9565b602080601f831160018114620007b2575f84156200079a5750858301515b5f19600386901b1c1916600185901b1785556200080c565b5f85815260208120601f198616915b82811015620007e257888601518255948401946001909101908401620007c1565b50858210156200080057878501515f19600388901b60f8161c191681555b505060018460011b0185555b505050505050565b5f6020828403121562000825575f80fd5b81516001600160a01b03811681146200083c575f80fd5b9392505050565b5f6020828403121562000854575f80fd5b815180151581146200083c575f80fd5b808201808211156200088457634e487b7160e01b5f52601160045260245ffd5b92915050565b61210e80620008985f395ff3fe60806040526004361061023c575f3560e01c806388e765ff1161012c578063affd1c7c116100af578063dff90b5b11610076578063dff90b5b1461068b578063e01af92c1461069f578063e99c9d09146106be578063f2fde38b146106dd578063f34eb0b8146106fc578063ffb54a991461071b57005b8063affd1c7c146105fb578063c04a894c1461061a578063c9567bf914610639578063d077b48f1461064d578063dd62ed3e1461066c57005b8063a0d82dc5116100f3578063a0d82dc514610574578063a457c2d714610589578063a9059cbb146105a8578063aa4bde28146105c7578063afa4f3b2146105dc57005b806388e765ff146105045780638da5cb5b1461051957806395d89b41146105365780639c3b4fdc1461054a5780639e93ad8e1461055f57005b806337c59b5a116101bf57806366d602ae1161018657806366d602ae1461046057806367c45349146104755780636ddd17131461048957806370a08231146104a8578063715018a6146104dc578063751039fc146104f057005b806337c59b5a1461038657806339509351146103b45780633bbac579146103d357806349bd5a5e1461040a57806366b1eae01461044157005b80631f53ac02116102035780631f53ac02146102fa57806320800a001461031957806323b872dd1461032d57806327a14fc21461034c578063313ce5671461036b57005b806306fdde0314610245578063095ea7b31461026f5780630a3d5b551461029e57806318160ddd146102bd5780631f110500146102db57005b3661024357005b005b348015610250575f80fd5b50610259610734565b6040516102669190611c75565b60405180910390f35b34801561027a575f80fd5b5061028e610289366004611ce5565b6107c4565b6040519015158152602001610266565b3480156102a9575f80fd5b506102436102b8366004611d3b565b6107dd565b3480156102c8575f80fd5b506002545b604051908152602001610266565b3480156102e6575f80fd5b506102436102f5366004611d3b565b610844565b348015610305575f80fd5b50610243610314366004611e0d565b6108a6565b348015610324575f80fd5b50610243610986565b348015610338575f80fd5b5061028e610347366004611e2f565b6109d8565b348015610357575f80fd5b50610243610366366004611e6d565b6109fb565b348015610376575f80fd5b5060405160128152602001610266565b348015610391575f80fd5b5061028e6103a0366004611e0d565b60076020525f908152604090205460ff1681565b3480156103bf575f80fd5b5061028e6103ce366004611ce5565b610a08565b3480156103de575f80fd5b5061028e6103ed366004611e0d565b6001600160a01b03165f9081526009602052604090205460ff1690565b348015610415575f80fd5b50601754610429906001600160a01b031681565b6040516001600160a01b039091168152602001610266565b34801561044c575f80fd5b5061024361045b366004611e6d565b610a29565b34801561046b575f80fd5b506102cd600c5481565b348015610480575f80fd5b50610243610a36565b348015610494575f80fd5b50600a5461028e9062010000900460ff1681565b3480156104b3575f80fd5b506102cd6104c2366004611e0d565b6001600160a01b03165f9081526020819052604090205490565b3480156104e7575f80fd5b50610243610a59565b3480156104fb575f80fd5b50610243610a6c565b34801561050f575f80fd5b506102cd600b5481565b348015610524575f80fd5b506005546001600160a01b0316610429565b348015610541575f80fd5b50610259610a90565b348015610555575f80fd5b506102cd60105481565b34801561056a575f80fd5b506102cd6103e881565b34801561057f575f80fd5b506102cd60125481565b348015610594575f80fd5b5061028e6105a3366004611ce5565b610a9f565b3480156105b3575f80fd5b5061028e6105c2366004611ce5565b610b19565b3480156105d2575f80fd5b506102cd600d5481565b3480156105e7575f80fd5b506102436105f6366004611e6d565b610b26565b348015610606575f80fd5b50610243610615366004611e6d565b610b33565b348015610625575f80fd5b50610243610634366004611d3b565b610b40565b348015610644575f80fd5b50610243610c5f565b348015610658575f80fd5b50610243610667366004611e0d565b610d5b565b348015610677575f80fd5b506102cd610686366004611e84565b610f35565b348015610696575f80fd5b50610243610f5f565b3480156106aa575f80fd5b506102436106b9366004611ebb565b610f71565b3480156106c9575f80fd5b506102436106d8366004611e6d565b610f95565b3480156106e8575f80fd5b506102436106f7366004611e0d565b610fa2565b348015610707575f80fd5b50610243610716366004611e6d565b611018565b348015610726575f80fd5b50600a5461028e9060ff1681565b60606003805461074390611ed6565b80601f016020809104026020016040519081016040528092919081815260200182805461076f90611ed6565b80156107ba5780601f10610791576101008083540402835291602001916107ba565b820191905f5260205f20905b81548152906001019060200180831161079d57829003601f168201915b5050505050905090565b5f336107d1818585611025565b60019150505b92915050565b6107e5611148565b5f5b825181101561083f578160085f85848151811061080657610806611f0e565b6020908102919091018101516001600160a01b031682528101919091526040015f20805460ff19169115159190911790556001016107e7565b505050565b61084c611148565b5f5b825181101561083f578160075f85848151811061086d5761086d611f0e565b6020908102919091018101516001600160a01b031682528101919091526040015f20805460ff191691151591909117905560010161084e565b6108ae611148565b6001600160a01b0381166109095760405162461bcd60e51b815260206004820152601e60248201527f5f64657657616c6c657420616464726573732063616e6e6f742062652030000060448201526064015b60405180910390fd5b601680546001600160a01b039081165f908152600760208181526040808420805460ff19908116909155865486168552600880845282862080548316905587546001600160a01b03191698871698891788559785529282528084208054841660019081179091559554909416835294909452208054909216179055565b61098e611148565b6040515f90339047908381818185875af1925050503d805f81146109cd576040519150601f19603f3d011682016040523d82523d5f602084013e6109d2565b606091505b50505050565b5f336109e58582856111a2565b6109f0858585611214565b506001949350505050565b610a03611148565b600d55565b5f336107d1818585610a1a8383610f35565b610a249190611f36565b611025565b610a31611148565b601255565b610a3e611148565b305f90815260208190526040902054610a5681611799565b50565b610a61611148565b610a6a5f6118e9565b565b610a74611148565b6b033b2e3c9fd0803ce8000000600b819055600c819055600d55565b60606004805461074390611ed6565b5f3381610aac8286610f35565b905083811015610b0c5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610900565b6109f08286868403611025565b5f336107d1818585611214565b610b2e611148565b601555565b610b3b611148565b601055565b610b48611148565b5f5b825181101561083f5760175483516001600160a01b0390911690849083908110610b7657610b76611f0e565b60200260200101516001600160a01b031614158015610bc05750306001600160a01b0316838281518110610bac57610bac611f0e565b60200260200101516001600160a01b031614155b8015610bfe575060065483516001600160a01b0390911690849083908110610bea57610bea611f0e565b60200260200101516001600160a01b031614155b15610c57578160095f858481518110610c1957610c19611f0e565b60200260200101516001600160a01b03166001600160a01b031681526020019081526020015f205f6101000a81548160ff0219169083151502179055505b600101610b4a565b610c67611148565b600a5460ff1615610cba5760405162461bcd60e51b815260206004820152601760248201527f54726164696e6720697320616c7265616479206f70656e0000000000000000006044820152606401610900565b600a805462ff00001916620100001790556064610ce46b033b2e3c9fd0803ce80000006001611f49565b610cee9190611f60565b600b556064610d0a6b033b2e3c9fd0803ce80000006001611f49565b610d149190611f60565b600c556064610d306b033b2e3c9fd0803ce80000006002611f49565b610d3a9190611f60565b600d556a019e5b4025ff43d1bc0000601555600a805460ff19166001179055565b610d63611148565b306001600160a01b03821603610dbb5760405162461bcd60e51b815260206004820152601a60248201527f43616e6e6f74207769746864726177207468697320746f6b656e0000000000006044820152606401610900565b6040516370a0823160e01b81523060048201525f906001600160a01b038316906370a0823190602401602060405180830381865afa158015610dff573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610e239190611f7f565b11610e5c5760405162461bcd60e51b81526020600482015260096024820152684e6f20746f6b656e7360b81b6044820152606401610900565b6040516370a0823160e01b81523060048201525f906001600160a01b038316906370a0823190602401602060405180830381865afa158015610ea0573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610ec49190611f7f565b60405163a9059cbb60e01b8152336004820152602481018290529091506001600160a01b0383169063a9059cbb906044016020604051808303815f875af1158015610f11573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061083f9190611f96565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b610f67611148565b47610a568161193a565b610f79611148565b600a8054911515620100000262ff000019909216919091179055565b610f9d611148565b600c55565b610faa611148565b6001600160a01b03811661100f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610900565b610a56816118e9565b611020611148565b600b55565b6001600160a01b0383166110875760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610900565b6001600160a01b0382166110e85760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610900565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6005546001600160a01b03163314610a6a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610900565b5f6111ad8484610f35565b90505f1981146109d257818110156112075760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610900565b6109d28484848403611025565b6001600160a01b03831661123a5760405162461bcd60e51b815260040161090090611fb1565b6001600160a01b0382166112605760405162461bcd60e51b815260040161090090611ff6565b5f81116112c15760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b6064820152608401610900565b60015f6112d66005546001600160a01b031690565b6001600160a01b0316856001600160a01b03161415801561130557506005546001600160a01b03858116911614155b801561131957506001600160a01b03841615155b801561133057506001600160a01b03841661dead14155b80156113445750600a54610100900460ff16155b1561164c576001600160a01b0385165f9081526009602052604090205460ff1615801561138957506001600160a01b0384165f9081526009602052604090205460ff16155b6113be5760405162461bcd60e51b8152600401610900906020808252600490820152632137ba1760e11b604082015260600190565b600a5460ff16611451576001600160a01b0385165f9081526007602052604090205460ff168061140557506001600160a01b0384165f9081526007602052604090205460ff165b6114515760405162461bcd60e51b815260206004820152601b60248201527f54726164696e67206973206e6f7420616c6c6f776564207965742e00000000006044820152606401610900565b6017546001600160a01b03868116911614801561147c57506006546001600160a01b03858116911614155b80156114a057506001600160a01b0384165f9081526008602052604090205460ff16155b1561158f57600b548311156115095760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206578636565647320746865206d6178426044820152683abca0b6b7bab73a1760b91b6064820152608401610900565b600d548361152b866001600160a01b03165f9081526020819052604090205490565b6115359190611f36565b111561158f5760405162461bcd60e51b8152602060048201526024808201527f45786365656473206d6178696d756d2077616c6c657420746f6b656e20616d6f6044820152633ab73a1760e11b6064820152608401610900565b6017546001600160a01b0385811691161480156115ba57506006546001600160a01b03868116911614155b80156115de57506001600160a01b0385165f9081526008602052604090205460ff16155b1561164c57600c548311156116485760405162461bcd60e51b815260206004820152602a60248201527f5472616e7366657220616d6f756e74206578636565647320746865206d61785360448201526932b63620b6b7bab73a1760b11b6064820152608401610900565b5060015b6001600160a01b0385165f9081526007602052604090205460ff168061168957506001600160a01b0384165f9081526007602052604090205460ff165b15611692575f91505b6017546001600160a01b038681169116148015906116be57506017546001600160a01b03858116911614155b156116c7575f91505b305f9081526020819052604081205490505f601554821180156116e75750825b90508080156116fe5750600a5462010000900460ff165b80156117125750600a54610100900460ff16155b801561173657506001600160a01b0387165f9081526007602052604090205460ff16155b801561175a57506001600160a01b0386165f9081526007602052604090205460ff16155b1561178357600a805461ff00191661010017905561177782611975565b600a805461ff00191690555b6117908787878787611a30565b50505050505050565b6040805160028082526060820183525f9260208301908036833701905050905030815f815181106117cc576117cc611f0e565b6001600160a01b03928316602091820292909201810191909152600654604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa158015611823573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906118479190612039565b8160018151811061185a5761185a611f0e565b6001600160a01b0392831660209182029290920101526006546118809130911684611025565b60065460405163791ac94760e01b81526001600160a01b039091169063791ac947906118b89085905f90869030904290600401612054565b5f604051808303815f87803b1580156118cf575f80fd5b505af11580156118e1573d5f803e3d5ffd5b505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6016546040516001600160a01b039091169082156108fc029083905f818181858888f19350505050158015611971573d5f803e3d5ffd5b5050565b6014545f821580611984575081155b1561198e57505050565b60155461199c906005611f49565b8311156119b4576015546119b1906005611f49565b92505b82476119bf82611799565b5f6119ca82476120c5565b5f601481905560165460405192935083926001600160a01b039091169183919081818185875af1925050503d805f8114611a1f576040519150601f19603f3d011682016040523d82523d5f602084013e611a24565b606091505b50505050505050505050565b81611a4257611a3d611a78565b611a50565b611a4d858483611aa5565b92505b611a5b858585611b4d565b81611a7157611a71601154601055601354601255565b5050505050565b601054158015611a885750601254155b15611a8f57565b60108054601155601280546013555f9182905555565b5f8115611ac157611abc601254600f819055600e55565b611ad1565b611ad1601054600f819055600e55565b600e545f9015611b29576103e8600e5485611aec9190611f49565b611af69190611f60565b9050600e54600f5482611b099190611f49565b611b139190611f60565b60145f828254611b239190611f36565b90915550505b8015611b3a57611b3a853083611b4d565b611b4481856120c5565b95945050505050565b6001600160a01b038316611b735760405162461bcd60e51b815260040161090090611fb1565b6001600160a01b038216611b995760405162461bcd60e51b815260040161090090611ff6565b6001600160a01b0383165f9081526020819052604090205481811015611c105760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610900565b6001600160a01b038481165f81815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a36109d2565b5f602080835283518060208501525f5b81811015611ca157858101830151858201604001528201611c85565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610a56575f80fd5b8035611ce081611cc1565b919050565b5f8060408385031215611cf6575f80fd5b8235611d0181611cc1565b946020939093013593505050565b634e487b7160e01b5f52604160045260245ffd5b8015158114610a56575f80fd5b8035611ce081611d23565b5f8060408385031215611d4c575f80fd5b823567ffffffffffffffff80821115611d63575f80fd5b818501915085601f830112611d76575f80fd5b8135602082821115611d8a57611d8a611d0f565b8160051b604051601f19603f83011681018181108682111715611daf57611daf611d0f565b604052928352818301935084810182019289841115611dcc575f80fd5b948201945b83861015611df157611de286611cd5565b85529482019493820193611dd1565b9650611e009050878201611d30565b9450505050509250929050565b5f60208284031215611e1d575f80fd5b8135611e2881611cc1565b9392505050565b5f805f60608486031215611e41575f80fd5b8335611e4c81611cc1565b92506020840135611e5c81611cc1565b929592945050506040919091013590565b5f60208284031215611e7d575f80fd5b5035919050565b5f8060408385031215611e95575f80fd5b8235611ea081611cc1565b91506020830135611eb081611cc1565b809150509250929050565b5f60208284031215611ecb575f80fd5b8135611e2881611d23565b600181811c90821680611eea57607f821691505b602082108103611f0857634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52603260045260245ffd5b634e487b7160e01b5f52601160045260245ffd5b808201808211156107d7576107d7611f22565b80820281158282048414176107d7576107d7611f22565b5f82611f7a57634e487b7160e01b5f52601260045260245ffd5b500490565b5f60208284031215611f8f575f80fd5b5051919050565b5f60208284031215611fa6575f80fd5b8151611e2881611d23565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b5f60208284031215612049575f80fd5b8151611e2881611cc1565b5f60a08201878352602087602085015260a0604085015281875180845260c0860191506020890193505f5b818110156120a45784516001600160a01b03168352938301939183019160010161207f565b50506001600160a01b03969096166060850152505050608001529392505050565b818103818111156107d7576107d7611f2256fea2646970667358221220d1cf75f3ef5c2ed72f46c96f6f9796beda4c012b3bdbc499efe3cc881c3b05c364736f6c63430008180033
Deployed Bytecode
0x60806040526004361061023c575f3560e01c806388e765ff1161012c578063affd1c7c116100af578063dff90b5b11610076578063dff90b5b1461068b578063e01af92c1461069f578063e99c9d09146106be578063f2fde38b146106dd578063f34eb0b8146106fc578063ffb54a991461071b57005b8063affd1c7c146105fb578063c04a894c1461061a578063c9567bf914610639578063d077b48f1461064d578063dd62ed3e1461066c57005b8063a0d82dc5116100f3578063a0d82dc514610574578063a457c2d714610589578063a9059cbb146105a8578063aa4bde28146105c7578063afa4f3b2146105dc57005b806388e765ff146105045780638da5cb5b1461051957806395d89b41146105365780639c3b4fdc1461054a5780639e93ad8e1461055f57005b806337c59b5a116101bf57806366d602ae1161018657806366d602ae1461046057806367c45349146104755780636ddd17131461048957806370a08231146104a8578063715018a6146104dc578063751039fc146104f057005b806337c59b5a1461038657806339509351146103b45780633bbac579146103d357806349bd5a5e1461040a57806366b1eae01461044157005b80631f53ac02116102035780631f53ac02146102fa57806320800a001461031957806323b872dd1461032d57806327a14fc21461034c578063313ce5671461036b57005b806306fdde0314610245578063095ea7b31461026f5780630a3d5b551461029e57806318160ddd146102bd5780631f110500146102db57005b3661024357005b005b348015610250575f80fd5b50610259610734565b6040516102669190611c75565b60405180910390f35b34801561027a575f80fd5b5061028e610289366004611ce5565b6107c4565b6040519015158152602001610266565b3480156102a9575f80fd5b506102436102b8366004611d3b565b6107dd565b3480156102c8575f80fd5b506002545b604051908152602001610266565b3480156102e6575f80fd5b506102436102f5366004611d3b565b610844565b348015610305575f80fd5b50610243610314366004611e0d565b6108a6565b348015610324575f80fd5b50610243610986565b348015610338575f80fd5b5061028e610347366004611e2f565b6109d8565b348015610357575f80fd5b50610243610366366004611e6d565b6109fb565b348015610376575f80fd5b5060405160128152602001610266565b348015610391575f80fd5b5061028e6103a0366004611e0d565b60076020525f908152604090205460ff1681565b3480156103bf575f80fd5b5061028e6103ce366004611ce5565b610a08565b3480156103de575f80fd5b5061028e6103ed366004611e0d565b6001600160a01b03165f9081526009602052604090205460ff1690565b348015610415575f80fd5b50601754610429906001600160a01b031681565b6040516001600160a01b039091168152602001610266565b34801561044c575f80fd5b5061024361045b366004611e6d565b610a29565b34801561046b575f80fd5b506102cd600c5481565b348015610480575f80fd5b50610243610a36565b348015610494575f80fd5b50600a5461028e9062010000900460ff1681565b3480156104b3575f80fd5b506102cd6104c2366004611e0d565b6001600160a01b03165f9081526020819052604090205490565b3480156104e7575f80fd5b50610243610a59565b3480156104fb575f80fd5b50610243610a6c565b34801561050f575f80fd5b506102cd600b5481565b348015610524575f80fd5b506005546001600160a01b0316610429565b348015610541575f80fd5b50610259610a90565b348015610555575f80fd5b506102cd60105481565b34801561056a575f80fd5b506102cd6103e881565b34801561057f575f80fd5b506102cd60125481565b348015610594575f80fd5b5061028e6105a3366004611ce5565b610a9f565b3480156105b3575f80fd5b5061028e6105c2366004611ce5565b610b19565b3480156105d2575f80fd5b506102cd600d5481565b3480156105e7575f80fd5b506102436105f6366004611e6d565b610b26565b348015610606575f80fd5b50610243610615366004611e6d565b610b33565b348015610625575f80fd5b50610243610634366004611d3b565b610b40565b348015610644575f80fd5b50610243610c5f565b348015610658575f80fd5b50610243610667366004611e0d565b610d5b565b348015610677575f80fd5b506102cd610686366004611e84565b610f35565b348015610696575f80fd5b50610243610f5f565b3480156106aa575f80fd5b506102436106b9366004611ebb565b610f71565b3480156106c9575f80fd5b506102436106d8366004611e6d565b610f95565b3480156106e8575f80fd5b506102436106f7366004611e0d565b610fa2565b348015610707575f80fd5b50610243610716366004611e6d565b611018565b348015610726575f80fd5b50600a5461028e9060ff1681565b60606003805461074390611ed6565b80601f016020809104026020016040519081016040528092919081815260200182805461076f90611ed6565b80156107ba5780601f10610791576101008083540402835291602001916107ba565b820191905f5260205f20905b81548152906001019060200180831161079d57829003601f168201915b5050505050905090565b5f336107d1818585611025565b60019150505b92915050565b6107e5611148565b5f5b825181101561083f578160085f85848151811061080657610806611f0e565b6020908102919091018101516001600160a01b031682528101919091526040015f20805460ff19169115159190911790556001016107e7565b505050565b61084c611148565b5f5b825181101561083f578160075f85848151811061086d5761086d611f0e565b6020908102919091018101516001600160a01b031682528101919091526040015f20805460ff191691151591909117905560010161084e565b6108ae611148565b6001600160a01b0381166109095760405162461bcd60e51b815260206004820152601e60248201527f5f64657657616c6c657420616464726573732063616e6e6f742062652030000060448201526064015b60405180910390fd5b601680546001600160a01b039081165f908152600760208181526040808420805460ff19908116909155865486168552600880845282862080548316905587546001600160a01b03191698871698891788559785529282528084208054841660019081179091559554909416835294909452208054909216179055565b61098e611148565b6040515f90339047908381818185875af1925050503d805f81146109cd576040519150601f19603f3d011682016040523d82523d5f602084013e6109d2565b606091505b50505050565b5f336109e58582856111a2565b6109f0858585611214565b506001949350505050565b610a03611148565b600d55565b5f336107d1818585610a1a8383610f35565b610a249190611f36565b611025565b610a31611148565b601255565b610a3e611148565b305f90815260208190526040902054610a5681611799565b50565b610a61611148565b610a6a5f6118e9565b565b610a74611148565b6b033b2e3c9fd0803ce8000000600b819055600c819055600d55565b60606004805461074390611ed6565b5f3381610aac8286610f35565b905083811015610b0c5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610900565b6109f08286868403611025565b5f336107d1818585611214565b610b2e611148565b601555565b610b3b611148565b601055565b610b48611148565b5f5b825181101561083f5760175483516001600160a01b0390911690849083908110610b7657610b76611f0e565b60200260200101516001600160a01b031614158015610bc05750306001600160a01b0316838281518110610bac57610bac611f0e565b60200260200101516001600160a01b031614155b8015610bfe575060065483516001600160a01b0390911690849083908110610bea57610bea611f0e565b60200260200101516001600160a01b031614155b15610c57578160095f858481518110610c1957610c19611f0e565b60200260200101516001600160a01b03166001600160a01b031681526020019081526020015f205f6101000a81548160ff0219169083151502179055505b600101610b4a565b610c67611148565b600a5460ff1615610cba5760405162461bcd60e51b815260206004820152601760248201527f54726164696e6720697320616c7265616479206f70656e0000000000000000006044820152606401610900565b600a805462ff00001916620100001790556064610ce46b033b2e3c9fd0803ce80000006001611f49565b610cee9190611f60565b600b556064610d0a6b033b2e3c9fd0803ce80000006001611f49565b610d149190611f60565b600c556064610d306b033b2e3c9fd0803ce80000006002611f49565b610d3a9190611f60565b600d556a019e5b4025ff43d1bc0000601555600a805460ff19166001179055565b610d63611148565b306001600160a01b03821603610dbb5760405162461bcd60e51b815260206004820152601a60248201527f43616e6e6f74207769746864726177207468697320746f6b656e0000000000006044820152606401610900565b6040516370a0823160e01b81523060048201525f906001600160a01b038316906370a0823190602401602060405180830381865afa158015610dff573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610e239190611f7f565b11610e5c5760405162461bcd60e51b81526020600482015260096024820152684e6f20746f6b656e7360b81b6044820152606401610900565b6040516370a0823160e01b81523060048201525f906001600160a01b038316906370a0823190602401602060405180830381865afa158015610ea0573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610ec49190611f7f565b60405163a9059cbb60e01b8152336004820152602481018290529091506001600160a01b0383169063a9059cbb906044016020604051808303815f875af1158015610f11573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061083f9190611f96565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b610f67611148565b47610a568161193a565b610f79611148565b600a8054911515620100000262ff000019909216919091179055565b610f9d611148565b600c55565b610faa611148565b6001600160a01b03811661100f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610900565b610a56816118e9565b611020611148565b600b55565b6001600160a01b0383166110875760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610900565b6001600160a01b0382166110e85760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610900565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6005546001600160a01b03163314610a6a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610900565b5f6111ad8484610f35565b90505f1981146109d257818110156112075760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610900565b6109d28484848403611025565b6001600160a01b03831661123a5760405162461bcd60e51b815260040161090090611fb1565b6001600160a01b0382166112605760405162461bcd60e51b815260040161090090611ff6565b5f81116112c15760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b6064820152608401610900565b60015f6112d66005546001600160a01b031690565b6001600160a01b0316856001600160a01b03161415801561130557506005546001600160a01b03858116911614155b801561131957506001600160a01b03841615155b801561133057506001600160a01b03841661dead14155b80156113445750600a54610100900460ff16155b1561164c576001600160a01b0385165f9081526009602052604090205460ff1615801561138957506001600160a01b0384165f9081526009602052604090205460ff16155b6113be5760405162461bcd60e51b8152600401610900906020808252600490820152632137ba1760e11b604082015260600190565b600a5460ff16611451576001600160a01b0385165f9081526007602052604090205460ff168061140557506001600160a01b0384165f9081526007602052604090205460ff165b6114515760405162461bcd60e51b815260206004820152601b60248201527f54726164696e67206973206e6f7420616c6c6f776564207965742e00000000006044820152606401610900565b6017546001600160a01b03868116911614801561147c57506006546001600160a01b03858116911614155b80156114a057506001600160a01b0384165f9081526008602052604090205460ff16155b1561158f57600b548311156115095760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206578636565647320746865206d6178426044820152683abca0b6b7bab73a1760b91b6064820152608401610900565b600d548361152b866001600160a01b03165f9081526020819052604090205490565b6115359190611f36565b111561158f5760405162461bcd60e51b8152602060048201526024808201527f45786365656473206d6178696d756d2077616c6c657420746f6b656e20616d6f6044820152633ab73a1760e11b6064820152608401610900565b6017546001600160a01b0385811691161480156115ba57506006546001600160a01b03868116911614155b80156115de57506001600160a01b0385165f9081526008602052604090205460ff16155b1561164c57600c548311156116485760405162461bcd60e51b815260206004820152602a60248201527f5472616e7366657220616d6f756e74206578636565647320746865206d61785360448201526932b63620b6b7bab73a1760b11b6064820152608401610900565b5060015b6001600160a01b0385165f9081526007602052604090205460ff168061168957506001600160a01b0384165f9081526007602052604090205460ff165b15611692575f91505b6017546001600160a01b038681169116148015906116be57506017546001600160a01b03858116911614155b156116c7575f91505b305f9081526020819052604081205490505f601554821180156116e75750825b90508080156116fe5750600a5462010000900460ff165b80156117125750600a54610100900460ff16155b801561173657506001600160a01b0387165f9081526007602052604090205460ff16155b801561175a57506001600160a01b0386165f9081526007602052604090205460ff16155b1561178357600a805461ff00191661010017905561177782611975565b600a805461ff00191690555b6117908787878787611a30565b50505050505050565b6040805160028082526060820183525f9260208301908036833701905050905030815f815181106117cc576117cc611f0e565b6001600160a01b03928316602091820292909201810191909152600654604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa158015611823573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906118479190612039565b8160018151811061185a5761185a611f0e565b6001600160a01b0392831660209182029290920101526006546118809130911684611025565b60065460405163791ac94760e01b81526001600160a01b039091169063791ac947906118b89085905f90869030904290600401612054565b5f604051808303815f87803b1580156118cf575f80fd5b505af11580156118e1573d5f803e3d5ffd5b505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6016546040516001600160a01b039091169082156108fc029083905f818181858888f19350505050158015611971573d5f803e3d5ffd5b5050565b6014545f821580611984575081155b1561198e57505050565b60155461199c906005611f49565b8311156119b4576015546119b1906005611f49565b92505b82476119bf82611799565b5f6119ca82476120c5565b5f601481905560165460405192935083926001600160a01b039091169183919081818185875af1925050503d805f8114611a1f576040519150601f19603f3d011682016040523d82523d5f602084013e611a24565b606091505b50505050505050505050565b81611a4257611a3d611a78565b611a50565b611a4d858483611aa5565b92505b611a5b858585611b4d565b81611a7157611a71601154601055601354601255565b5050505050565b601054158015611a885750601254155b15611a8f57565b60108054601155601280546013555f9182905555565b5f8115611ac157611abc601254600f819055600e55565b611ad1565b611ad1601054600f819055600e55565b600e545f9015611b29576103e8600e5485611aec9190611f49565b611af69190611f60565b9050600e54600f5482611b099190611f49565b611b139190611f60565b60145f828254611b239190611f36565b90915550505b8015611b3a57611b3a853083611b4d565b611b4481856120c5565b95945050505050565b6001600160a01b038316611b735760405162461bcd60e51b815260040161090090611fb1565b6001600160a01b038216611b995760405162461bcd60e51b815260040161090090611ff6565b6001600160a01b0383165f9081526020819052604090205481811015611c105760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610900565b6001600160a01b038481165f81815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a36109d2565b5f602080835283518060208501525f5b81811015611ca157858101830151858201604001528201611c85565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610a56575f80fd5b8035611ce081611cc1565b919050565b5f8060408385031215611cf6575f80fd5b8235611d0181611cc1565b946020939093013593505050565b634e487b7160e01b5f52604160045260245ffd5b8015158114610a56575f80fd5b8035611ce081611d23565b5f8060408385031215611d4c575f80fd5b823567ffffffffffffffff80821115611d63575f80fd5b818501915085601f830112611d76575f80fd5b8135602082821115611d8a57611d8a611d0f565b8160051b604051601f19603f83011681018181108682111715611daf57611daf611d0f565b604052928352818301935084810182019289841115611dcc575f80fd5b948201945b83861015611df157611de286611cd5565b85529482019493820193611dd1565b9650611e009050878201611d30565b9450505050509250929050565b5f60208284031215611e1d575f80fd5b8135611e2881611cc1565b9392505050565b5f805f60608486031215611e41575f80fd5b8335611e4c81611cc1565b92506020840135611e5c81611cc1565b929592945050506040919091013590565b5f60208284031215611e7d575f80fd5b5035919050565b5f8060408385031215611e95575f80fd5b8235611ea081611cc1565b91506020830135611eb081611cc1565b809150509250929050565b5f60208284031215611ecb575f80fd5b8135611e2881611d23565b600181811c90821680611eea57607f821691505b602082108103611f0857634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52603260045260245ffd5b634e487b7160e01b5f52601160045260245ffd5b808201808211156107d7576107d7611f22565b80820281158282048414176107d7576107d7611f22565b5f82611f7a57634e487b7160e01b5f52601260045260245ffd5b500490565b5f60208284031215611f8f575f80fd5b5051919050565b5f60208284031215611fa6575f80fd5b8151611e2881611d23565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b5f60208284031215612049575f80fd5b8151611e2881611cc1565b5f60a08201878352602087602085015260a0604085015281875180845260c0860191506020890193505f5b818110156120a45784516001600160a01b03168352938301939183019160010161207f565b50506001600160a01b03969096166060850152505050608001529392505050565b818103818111156107d7576107d7611f2256fea2646970667358221220d1cf75f3ef5c2ed72f46c96f6f9796beda4c012b3bdbc499efe3cc881c3b05c364736f6c63430008180033
Deployed Bytecode Sourcemap
21494:10739:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9070:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11562:242;;;;;;;;;;-1:-1:-1;11562:242:0;;;;;:::i;:::-;;:::i;:::-;;;1327:14:1;;1320:22;1302:41;;1290:2;1275:18;11562:242:0;1162:187:1;28915:218:0;;;;;;;;;;-1:-1:-1;28915:218:0;;;;;:::i;:::-;;:::i;10190:108::-;;;;;;;;;;-1:-1:-1;10278:12:0;;10190:108;;;3084:25:1;;;3072:2;3057:18;10190:108:0;2938:177:1;28691:216:0;;;;;;;;;;-1:-1:-1;28691:216:0;;;;;:::i;:::-;;:::i;28328:355::-;;;;;;;;;;-1:-1:-1;28328:355:0;;;;;:::i;:::-;;:::i;31483:176::-;;;;;;;;;;;;;:::i;12384:295::-;;;;;;;;;;-1:-1:-1;12384:295:0;;;;;:::i;:::-;;:::i;28030:124::-;;;;;;;;;;-1:-1:-1;28030:124:0;;;;;:::i;:::-;;:::i;10032:93::-;;;;;;;;;;-1:-1:-1;10032:93:0;;10115:2;4160:36:1;;4148:2;4133:18;10032:93:0;4018:184:1;21593:45:0;;;;;;;;;;-1:-1:-1;21593:45:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;13088:270;;;;;;;;;;-1:-1:-1;13088:270:0;;;;;:::i;:::-;;:::i;27206:100::-;;;;;;;;;;-1:-1:-1;27206:100:0;;;;;:::i;:::-;-1:-1:-1;;;;;27284:14:0;27260:4;27284:14;;;:6;:14;;;;;;;;;27206:100;22541:28;;;;;;;;;;-1:-1:-1;22541:28:0;;;;-1:-1:-1;;;;;22541:28:0;;;;;;-1:-1:-1;;;;;4371:32:1;;;4353:51;;4341:2;4326:18;22541:28:0;4207:203:1;29614:98:0;;;;;;;;;;-1:-1:-1;29614:98:0;;;;;:::i;:::-;;:::i;21946:39::-;;;;;;;;;;;;;;;;31170:148;;;;;;;;;;;;;:::i;21804:23::-;;;;;;;;;;-1:-1:-1;21804:23:0;;;;;;;;;;;10361:177;;;;;;;;;;-1:-1:-1;10361:177:0;;;;;:::i;:::-;-1:-1:-1;;;;;10512:18:0;10480:7;10512:18;;;;;;;;;;;;10361:177;2849:103;;;;;;;;;;;;;:::i;32000:155::-;;;;;;;;;;;;;:::i;21901:38::-;;;;;;;;;;;;;;;;2201:87;;;;;;;;;;-1:-1:-1;2274:6:0;;-1:-1:-1;;;;;2274:6:0;2201:87;;9289:104;;;;;;;;;;;;;:::i;22152:30::-;;;;;;;;;;;;;;;;22040:42;;;;;;;;;;;;22078:4;22040:42;;22251:31;;;;;;;;;;;;;;;;13861:503;;;;;;;;;;-1:-1:-1;13861:503:0;;;;;:::i;:::-;;:::i;10744:234::-;;;;;;;;;;-1:-1:-1;10744:234:0;;;;;:::i;:::-;;:::i;21992:41::-;;;;;;;;;;;;;;;;28162:158;;;;;;;;;;-1:-1:-1;28162:158:0;;;;;:::i;:::-;;:::i;29512:94::-;;;;;;;;;;-1:-1:-1;29512:94:0;;;;;:::i;:::-;;:::i;29141:363::-;;;;;;;;;;-1:-1:-1;29141:363:0;;;;;:::i;:::-;;:::i;27314:365::-;;;;;;;;;;;;;:::i;31667:325::-;;;;;;;;;;-1:-1:-1;31667:325:0;;;;;:::i;:::-;;:::i;11041:201::-;;;;;;;;;;-1:-1:-1;11041:201:0;;;;;:::i;:::-;;:::i;31326:149::-;;;;;;;;;;;;;:::i;27687:91::-;;;;;;;;;;-1:-1:-1;27687:91:0;;;;;:::i;:::-;;:::i;27906:116::-;;;;;;;;;;-1:-1:-1;27906:116:0;;;;;:::i;:::-;;:::i;3107:238::-;;;;;;;;;;-1:-1:-1;3107:238:0;;;;;:::i;:::-;;:::i;27786:112::-;;;;;;;;;;-1:-1:-1;27786:112:0;;;;;:::i;:::-;;:::i;21745:23::-;;;;;;;;;;-1:-1:-1;21745:23:0;;;;;;;;9070:100;9124:13;9157:5;9150:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9070:100;:::o;11562:242::-;11681:4;867:10;11742:32;867:10;11758:7;11767:6;11742:8;:32::i;:::-;11792:4;11785:11;;;11562:242;;;;;:::o;28915:218::-;2087:13;:11;:13::i;:::-;29034:9:::1;29029:96;29053:8;:15;29049:1;:19;29029:96;;;29118:7;29088:14;:27;29103:8;29112:1;29103:11;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;-1:-1:-1;;;;;29088:27:0::1;::::0;;;::::1;::::0;;;;;;-1:-1:-1;29088:27:0;:37;;-1:-1:-1;;29088:37:0::1;::::0;::::1;;::::0;;;::::1;::::0;;-1:-1:-1;29070:3:0::1;29029:96;;;;28915:218:::0;;:::o;28691:216::-;2087:13;:11;:13::i;:::-;28809:9:::1;28804:95;28828:8;:15;28824:1;:19;28804:95;;;28892:7;28863:13;:26;28877:8;28886:1;28877:11;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;-1:-1:-1;;;;;28863:26:0::1;::::0;;;::::1;::::0;;;;;;-1:-1:-1;28863:26:0;:36;;-1:-1:-1;;28863:36:0::1;::::0;::::1;;::::0;;;::::1;::::0;;-1:-1:-1;28845:3:0::1;28804:95;;28328:355:::0;2087:13;:11;:13::i;:::-;-1:-1:-1;;;;;28405:17:0;::::1;28397:60;;;::::0;-1:-1:-1;;;28397:60:0;;5773:2:1;28397:60:0::1;::::0;::::1;5755:21:1::0;5812:2;5792:18;;;5785:30;5851:32;5831:18;;;5824:60;5901:18;;28397:60:0::1;;;;;;;;;28482:10;::::0;;-1:-1:-1;;;;;28482:10:0;;::::1;28496:5;28468:25:::0;;;:13:::1;:25;::::0;;;;;;;:33;;-1:-1:-1;;28468:33:0;;::::1;::::0;;;28527:10;;;::::1;28512:26:::0;;:14:::1;:26:::0;;;;;;:34;;;::::1;::::0;;28557:31;;-1:-1:-1;;;;;;28557:31:0::1;::::0;;::::1;::::0;;::::1;::::0;;28599:25;;;;;;;;;:32;;;::::1;-1:-1:-1::0;28599:32:0;;::::1;::::0;;;28657:10;;;;::::1;28642:26:::0;;;;;;;:33;;;;::::1;;::::0;;28328:355::o;31483:176::-;2087:13;:11;:13::i;:::-;31569:82:::1;::::0;31532:12:::1;::::0;31577:10:::1;::::0;31601:21:::1;::::0;31532:12;31569:82;31532:12;31569:82;31601:21;31577:10;31569:82:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;31483:176:0:o;12384:295::-;12515:4;867:10;12573:38;12589:4;867:10;12604:6;12573:15;:38::i;:::-;12622:27;12632:4;12638:2;12642:6;12622:9;:27::i;:::-;-1:-1:-1;12667:4:0;;12384:295;-1:-1:-1;;;;12384:295:0:o;28030:124::-;2087:13;:11;:13::i;:::-;28112:15:::1;:34:::0;28030:124::o;13088:270::-;13203:4;867:10;13264:64;867:10;13280:7;13317:10;13289:25;867:10;13280:7;13289:9;:25::i;:::-;:38;;;;:::i;:::-;13264:8;:64::i;29614:98::-;2087:13;:11;:13::i;:::-;29680:10:::1;:24:::0;29614:98::o;31170:148::-;2087:13;:11;:13::i;:::-;31260:4:::1;31216:23;10512:18:::0;;;;;;;;;;;31277:33:::1;10512:18:::0;31277:16:::1;:33::i;:::-;31205:113;31170:148::o:0;2849:103::-;2087:13;:11;:13::i;:::-;2914:30:::1;2941:1;2914:18;:30::i;:::-;2849:103::o:0;32000:155::-;2087:13;:11;:13::i;:::-;21870:24:::1;32052:12;:23:::0;;;32086:13:::1;:24:::0;;;32121:15:::1;:26:::0;32000:155::o;9289:104::-;9345:13;9378:7;9371:14;;;;;:::i;13861:503::-;13981:4;867:10;13981:4;14069:25;867:10;14086:7;14069:9;:25::i;:::-;14042:52;;14147:15;14127:16;:35;;14105:122;;;;-1:-1:-1;;;14105:122:0;;6604:2:1;14105:122:0;;;6586:21:1;6643:2;6623:18;;;6616:30;6682:34;6662:18;;;6655:62;-1:-1:-1;;;6733:18:1;;;6726:35;6778:19;;14105:122:0;6402:401:1;14105:122:0;14263:60;14272:5;14279:7;14307:15;14288:16;:34;14263:8;:60::i;10744:234::-;10859:4;867:10;10920:28;867:10;10937:2;10941:6;10920:9;:28::i;28162:158::-;2087:13;:11;:13::i;:::-;28272:19:::1;:40:::0;28162:158::o;29512:94::-;2087:13;:11;:13::i;:::-;29576:9:::1;:22:::0;29512:94::o;29141:363::-;2087:13;:11;:13::i;:::-;29224:9:::1;29219:278;29243:8;:15;29239:1;:19;29219:278;;;29318:13;::::0;29303:11;;-1:-1:-1;;;;;29318:13:0;;::::1;::::0;29303:8;;29312:1;;29303:11;::::1;;;;;:::i;:::-;;;;;;;-1:-1:-1::0;;;;;29303:28:0::1;;;29302:81;;;;;29377:4;-1:-1:-1::0;;;;;29354:28:0::1;:8;29363:1;29354:11;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1::0;;;;;29354:28:0::1;;;29302:81;:143;;;;-1:-1:-1::0;29428:15:0::1;::::0;29405:11;;-1:-1:-1;;;;;29428:15:0;;::::1;::::0;29405:8;;29414:1;;29405:11;::::1;;;;;:::i;:::-;;;;;;;-1:-1:-1::0;;;;;29405:39:0::1;;;29302:143;29280:205;;;29483:2;29461:6;:19;29468:8;29477:1;29468:11;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1::0;;;;;29461:19:0::1;-1:-1:-1::0;;;;;29461:19:0::1;;;;;;;;;;;;;:24;;;;;;;;;;;;;;;;;;29280:205;29260:3;;29219:278;;27314:365:::0;2087:13;:11;:13::i;:::-;27374:11:::1;::::0;::::1;;27373:12;27365:48;;;::::0;-1:-1:-1;;;27365:48:0;;7010:2:1;27365:48:0::1;::::0;::::1;6992:21:1::0;7049:2;7029:18;;;7022:30;7088:25;7068:18;;;7061:53;7131:18;;27365:48:0::1;6808:347:1::0;27365:48:0::1;27424:11;:18:::0;;-1:-1:-1;;27424:18:0::1;::::0;::::1;::::0;;27488:3:::1;27469:14;21870:24;27438:4;27469:14;:::i;:::-;27468:24;;;;:::i;:::-;27453:12;:39:::0;27539:3:::1;27520:14;21870:24;27532:1;27520:14;:::i;:::-;27519:24;;;;:::i;:::-;27503:13;:40:::0;27592:3:::1;27573:14;21870:24;27585:1;27573:14;:::i;:::-;27572:24;;;;:::i;:::-;27554:15;:42:::0;27629:13:::1;27607:19;:35:::0;27653:11:::1;:18:::0;;-1:-1:-1;;27653:18:0::1;27667:4;27653:18;::::0;;27314:365::o;31667:325::-;2087:13;:11;:13::i;:::-;31760:4:::1;-1:-1:-1::0;;;;;31745:20:0;::::1;::::0;31737:59:::1;;;::::0;-1:-1:-1;;;31737:59:0;;7757:2:1;31737:59:0::1;::::0;::::1;7739:21:1::0;7796:2;7776:18;;;7769:30;7835:28;7815:18;;;7808:56;7881:18;;31737:59:0::1;7555:350:1::0;31737:59:0::1;31815:36;::::0;-1:-1:-1;;;31815:36:0;;31845:4:::1;31815:36;::::0;::::1;4353:51:1::0;31854:1:0::1;::::0;-1:-1:-1;;;;;31815:21:0;::::1;::::0;::::1;::::0;4326:18:1;;31815:36:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:40;31807:62;;;::::0;-1:-1:-1;;;31807:62:0;;8301:2:1;31807:62:0::1;::::0;::::1;8283:21:1::0;8340:1;8320:18;;;8313:29;-1:-1:-1;;;8358:18:1;;;8351:39;8407:18;;31807:62:0::1;8099:332:1::0;31807:62:0::1;31897:36;::::0;-1:-1:-1;;;31897:36:0;;31927:4:::1;31897:36;::::0;::::1;4353:51:1::0;31880:14:0::1;::::0;-1:-1:-1;;;;;31897:21:0;::::1;::::0;::::1;::::0;4326:18:1;;31897:36:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;31944:40;::::0;-1:-1:-1;;;31944:40:0;;31965:10:::1;31944:40;::::0;::::1;8610:51:1::0;8677:18;;;8670:34;;;31880:53:0;;-1:-1:-1;;;;;;31944:20:0;::::1;::::0;::::1;::::0;8583:18:1;;31944:40:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;11041:201::-:0;-1:-1:-1;;;;;11207:18:0;;;11175:7;11207:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11041:201::o;31326:149::-;2087:13;:11;:13::i;:::-;31403:21:::1;31435:32;31403:21:::0;31435:12:::1;:32::i;27687:91::-:0;2087:13;:11;:13::i;:::-;27751:11:::1;:19:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;27751:19:0;;::::1;::::0;;;::::1;::::0;;27687:91::o;27906:116::-;2087:13;:11;:13::i;:::-;27984::::1;:30:::0;27906:116::o;3107:238::-;2087:13;:11;:13::i;:::-;-1:-1:-1;;;;;3210:22:0;::::1;3188:110;;;::::0;-1:-1:-1;;;3188:110:0;;9167:2:1;3188:110:0::1;::::0;::::1;9149:21:1::0;9206:2;9186:18;;;9179:30;9245:34;9225:18;;;9218:62;-1:-1:-1;;;9296:18:1;;;9289:36;9342:19;;3188:110:0::1;8965:402:1::0;3188:110:0::1;3309:28;3328:8;3309:18;:28::i;27786:112::-:0;2087:13;:11;:13::i;:::-;27862:12:::1;:28:::0;27786:112::o;17970:378::-;-1:-1:-1;;;;;18106:19:0;;18098:68;;;;-1:-1:-1;;;18098:68:0;;9574:2:1;18098:68:0;;;9556:21:1;9613:2;9593:18;;;9586:30;9652:34;9632:18;;;9625:62;-1:-1:-1;;;9703:18:1;;;9696:34;9747:19;;18098:68:0;9372:400:1;18098:68:0;-1:-1:-1;;;;;18185:21:0;;18177:68;;;;-1:-1:-1;;;18177:68:0;;9979:2:1;18177:68:0;;;9961:21:1;10018:2;9998:18;;;9991:30;10057:34;10037:18;;;10030:62;-1:-1:-1;;;10108:18:1;;;10101:32;10150:19;;18177:68:0;9777:398:1;18177:68:0;-1:-1:-1;;;;;18256:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;18308:32;;3084:25:1;;;18308:32:0;;3057:18:1;18308:32:0;;;;;;;17970:378;;;:::o;2366:132::-;2274:6;;-1:-1:-1;;;;;2274:6:0;867:10;2430:23;2422:68;;;;-1:-1:-1;;;2422:68:0;;10382:2:1;2422:68:0;;;10364:21:1;;;10401:18;;;10394:30;10460:34;10440:18;;;10433:62;10512:18;;2422:68:0;10180:356:1;18639:502:0;18774:24;18801:25;18811:5;18818:7;18801:9;:25::i;:::-;18774:52;;-1:-1:-1;;18841:16:0;:37;18837:297;;18941:6;18921:16;:26;;18895:117;;;;-1:-1:-1;;;18895:117:0;;10743:2:1;18895:117:0;;;10725:21:1;10782:2;10762:18;;;10755:30;10821:31;10801:18;;;10794:59;10870:18;;18895:117:0;10541:353:1;18895:117:0;19056:51;19065:5;19072:7;19100:6;19081:16;:25;19056:8;:51::i;23544:2357::-;-1:-1:-1;;;;;23676:12:0;;23668:62;;;;-1:-1:-1;;;23668:62:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;23749:10:0;;23741:58;;;;-1:-1:-1;;;23741:58:0;;;;;;;:::i;:::-;23827:1;23818:6;:10;23810:64;;;;-1:-1:-1;;;23810:64:0;;11911:2:1;23810:64:0;;;11893:21:1;11950:2;11930:18;;;11923:30;11989:34;11969:18;;;11962:62;-1:-1:-1;;;12040:18:1;;;12033:39;12089:19;;23810:64:0;11709:405:1;23810:64:0;23900:4;23885:12;23975:7;2274:6;;-1:-1:-1;;;;;2274:6:0;;2201:87;23975:7;-1:-1:-1;;;;;23967:15:0;:4;-1:-1:-1;;;;;23967:15:0;;;:45;;;;-1:-1:-1;2274:6:0;;-1:-1:-1;;;;;23999:13:0;;;2274:6;;23999:13;;23967:45;:72;;;;-1:-1:-1;;;;;;24029:10:0;;;;23967:72;:99;;;;-1:-1:-1;;;;;;24056:10:0;;22608:42;24056:10;;23967:99;:126;;;;-1:-1:-1;24084:9:0;;;;;;;24083:10;23967:126;23949:1303;;;-1:-1:-1;;;;;24129:12:0;;;;;;:6;:12;;;;;;;;24128:13;:28;;;;-1:-1:-1;;;;;;24146:10:0;;;;;;:6;:10;;;;;;;;24145:11;24128:28;24120:45;;;;-1:-1:-1;;;24120:45:0;;;;;;12321:2:1;12303:21;;;12360:1;12340:18;;;12333:29;-1:-1:-1;;;12393:2:1;12378:18;;12371:34;12437:2;12422:18;;12119:327;24120:45:0;24185:11;;;;24180:176;;-1:-1:-1;;;;;24245:19:0;;;;;;:13;:19;;;;;;;;;:40;;-1:-1:-1;;;;;;24268:17:0;;;;;;:13;:17;;;;;;;;24245:40;24215:141;;;;-1:-1:-1;;;24215:141:0;;12653:2:1;24215:141:0;;;12635:21:1;12692:2;12672:18;;;12665:30;12731:29;12711:18;;;12704:57;12778:18;;24215:141:0;12451:351:1;24215:141:0;24401:13;;-1:-1:-1;;;;;24393:21:0;;;24401:13;;24393:21;:72;;;;-1:-1:-1;24449:15:0;;-1:-1:-1;;;;;24435:30:0;;;24449:15;;24435:30;;24393:72;:112;;;;-1:-1:-1;;;;;;24487:18:0;;;;;;:14;:18;;;;;;;;24486:19;24393:112;24371:492;;;24580:12;;24570:6;:22;;24540:137;;;;-1:-1:-1;;;24540:137:0;;13009:2:1;24540:137:0;;;12991:21:1;13048:2;13028:18;;;13021:30;13087:34;13067:18;;;13060:62;-1:-1:-1;;;13138:18:1;;;13131:39;13187:19;;24540:137:0;12807:405:1;24540:137:0;24752:15;;24742:6;24726:13;24736:2;-1:-1:-1;;;;;10512:18:0;10480:7;10512:18;;;;;;;;;;;;10361:177;24726:13;:22;;;;:::i;:::-;:41;;24696:151;;;;-1:-1:-1;;;24696:151:0;;13419:2:1;24696:151:0;;;13401:21:1;13458:2;13438:18;;;13431:30;13497:34;13477:18;;;13470:62;-1:-1:-1;;;13548:18:1;;;13541:34;13592:19;;24696:151:0;13217:400:1;24696:151:0;24907:13;;-1:-1:-1;;;;;24901:19:0;;;24907:13;;24901:19;:72;;;;-1:-1:-1;24957:15:0;;-1:-1:-1;;;;;24941:32:0;;;24957:15;;24941:32;;24901:72;:114;;;;-1:-1:-1;;;;;;24995:20:0;;;;;;:14;:20;;;;;;;;24994:21;24901:114;24879:362;;;25090:13;;25080:6;:23;;25050:139;;;;-1:-1:-1;;;25050:139:0;;13824:2:1;25050:139:0;;;13806:21:1;13863:2;13843:18;;;13836:30;13902:34;13882:18;;;13875:62;-1:-1:-1;;;13953:18:1;;;13946:40;14003:19;;25050:139:0;13622:406:1;25050:139:0;-1:-1:-1;25221:4:0;24879:362;-1:-1:-1;;;;;25266:19:0;;;;;;:13;:19;;;;;;;;;:40;;-1:-1:-1;;;;;;25289:17:0;;;;;;:13;:17;;;;;;;;25266:40;25262:61;;;25318:5;25308:15;;25262:61;25346:13;;-1:-1:-1;;;;;25338:21:0;;;25346:13;;25338:21;;;;:44;;-1:-1:-1;25369:13:0;;-1:-1:-1;;;;;25363:19:0;;;25369:13;;25363:19;;25338:44;25334:65;;;25394:5;25384:15;;25334:65;25454:4;25410:23;10512:18;;;;;;;;;;;25410:50;;25471:12;25505:19;;25487:15;:37;25486:53;;;;;25529:10;25486:53;25471:68;;25568:7;:35;;;;-1:-1:-1;25592:11:0;;;;;;;25568:35;:62;;;;-1:-1:-1;25621:9:0;;;;;;;25620:10;25568:62;:99;;;;-1:-1:-1;;;;;;25648:19:0;;;;;;:13;:19;;;;;;;;25647:20;25568:99;:134;;;;-1:-1:-1;;;;;;25685:17:0;;;;;;:13;:17;;;;;;;;25684:18;25568:134;25550:280;;;25729:9;:16;;-1:-1:-1;;25729:16:0;;;;;25760:26;25770:15;25760:9;:26::i;:::-;25801:9;:17;;-1:-1:-1;;25801:17:0;;;25550:280;25840:53;25855:4;25861:2;25865:6;25873:7;25882:10;25840:14;:53::i;:::-;23657:2244;;;;23544:2357;;;:::o;26625:472::-;26716:16;;;26730:1;26716:16;;;;;;;;26692:21;;26716:16;;;;;;;;;;-1:-1:-1;26716:16:0;26692:40;;26761:4;26743;26748:1;26743:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;26743:23:0;;;:7;;;;;;;;;;:23;;;;26787:15;;:22;;;-1:-1:-1;;;26787:22:0;;;;:15;;;;;:20;;:22;;;;;26743:7;;26787:22;;;;;:15;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;26777:4;26782:1;26777:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;26777:32:0;;;:7;;;;;;;;;:32;26852:15;;26820:62;;26837:4;;26852:15;26870:11;26820:8;:62::i;:::-;26893:15;;:196;;-1:-1:-1;;;26893:196:0;;-1:-1:-1;;;;;26893:15:0;;;;:66;;:196;;26974:11;;26893:15;;27016:4;;27043;;27063:15;;26893:196;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26681:416;26625:472;:::o;3505:191::-;3598:6;;;-1:-1:-1;;;;;3615:17:0;;;-1:-1:-1;;;;;;3615:17:0;;;;;;;3648:40;;3598:6;;;3615:17;3598:6;;3648:40;;3579:16;;3648:40;3568:128;3505:191;:::o;27105:93::-;27163:10;;:27;;-1:-1:-1;;;;;27163:10:0;;;;:27;;;;;27183:6;;27163:10;:27;:10;:27;27183:6;27163:10;:27;;;;;;;;;;;;;;;;;;;;;27105:93;:::o;25909:708::-;26002:13;;25973:25;26056:20;;;:46;;-1:-1:-1;26080:22:0;;26056:46;26052:59;;;26104:7;;25909:708;:::o;26052:59::-;26143:19;;:25;;26166:1;26143:25;:::i;:::-;26125:15;:43;26121:105;;;26201:19;;:25;;26224:1;26201:25;:::i;:::-;26183:43;;26121:105;26268:15;26322:21;26354:36;26268:15;26354:16;:36::i;:::-;26403:18;26424:43;26449:17;26424:21;:43;:::i;:::-;26478:17;26521:13;:17;;;26571:10;;26563:46;;26403:64;;-1:-1:-1;26403:64:0;;-1:-1:-1;;;;;26571:10:0;;;;26403:64;;26563:46;;26478:17;26563:46;26403:64;26571:10;26563:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;25909:708:0:o;30094:363::-;30273:7;30268:86;;30282:14;:12;:14::i;:::-;30268:86;;;30321:33;30331:6;30339;30347;30321:9;:33::i;:::-;30312:42;;30268:86;30365:42;30381:6;30389:9;30400:6;30365:15;:42::i;:::-;30425:7;30420:29;;30434:15;30017:18;;30005:9;:30;30059:19;;30046:10;:32;29960:126;30434:15;30094:363;;;;;:::o;29720:232::-;29768:9;;:14;:33;;;;-1:-1:-1;29786:10:0;;:15;29768:33;29764:46;;;29720:232::o;29764:46::-;29843:9;;;29822:18;:30;29885:10;;;29863:19;:32;-1:-1:-1;29906:13:0;;;;29930:14;29720:232::o;30465:481::-;30581:7;30605:6;30601:47;;;30613:10;31004;;30994:7;:20;;;31025:10;:22;30954:101;30613:10;30601:47;;;30639:9;31112;;31102:7;:19;;;31132:10;:22;31063:99;30639:9;30688:10;;30661:12;;30688:14;30684:154;;22078:4;30737:10;;30727:6;:21;;;;:::i;:::-;30726:39;;;;:::i;:::-;30719:46;;30816:10;;30805:7;;30798:4;:14;;;;:::i;:::-;30797:29;;;;:::i;:::-;30780:13;;:46;;;;;;;:::i;:::-;;;;-1:-1:-1;;30684:154:0;30852:8;;30848:58;;30862:44;30878:6;30894:4;30901;30862:15;:44::i;:::-;30924:14;30934:4;30924:14;;:::i;:::-;;30465:481;-1:-1:-1;;;;;30465:481:0:o;14834:869::-;-1:-1:-1;;;;;14965:18:0;;14957:68;;;;-1:-1:-1;;;14957:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15044:16:0;;15036:64;;;;-1:-1:-1;;;15036:64:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15182:15:0;;15160:19;15182:15;;;;;;;;;;;15230:21;;;;15208:109;;;;-1:-1:-1;;;15208:109:0;;15609:2:1;15208:109:0;;;15591:21:1;15648:2;15628:18;;;15621:30;15687:34;15667:18;;;15660:62;-1:-1:-1;;;15738:18:1;;;15731:36;15784:19;;15208:109:0;15407:402:1;15208:109:0;-1:-1:-1;;;;;15353:15:0;;;:9;:15;;;;;;;;;;;15371:20;;;15353:38;;15571:13;;;;;;;;;;:23;;;;;;15621:26;;3084:25:1;;;15571:13:0;;15621:26;;3057:18:1;15621:26:0;;;;;;;15658:37;28915:218;14:548:1;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:131::-;-1:-1:-1;;;;;642:31:1;;632:42;;622:70;;688:1;685;678:12;703:134;771:20;;800:31;771:20;800:31;:::i;:::-;703:134;;;:::o;842:315::-;910:6;918;971:2;959:9;950:7;946:23;942:32;939:52;;;987:1;984;977:12;939:52;1026:9;1013:23;1045:31;1070:5;1045:31;:::i;:::-;1095:5;1147:2;1132:18;;;;1119:32;;-1:-1:-1;;;842:315:1:o;1354:127::-;1415:10;1410:3;1406:20;1403:1;1396:31;1446:4;1443:1;1436:15;1470:4;1467:1;1460:15;1486:118;1572:5;1565:13;1558:21;1551:5;1548:32;1538:60;;1594:1;1591;1584:12;1609:128;1674:20;;1703:28;1674:20;1703:28;:::i;1742:1191::-;1832:6;1840;1893:2;1881:9;1872:7;1868:23;1864:32;1861:52;;;1909:1;1906;1899:12;1861:52;1949:9;1936:23;1978:18;2019:2;2011:6;2008:14;2005:34;;;2035:1;2032;2025:12;2005:34;2073:6;2062:9;2058:22;2048:32;;2118:7;2111:4;2107:2;2103:13;2099:27;2089:55;;2140:1;2137;2130:12;2089:55;2176:2;2163:16;2198:4;2221:2;2217;2214:10;2211:36;;;2227:18;;:::i;:::-;2273:2;2270:1;2266:10;2305:2;2299:9;2368:2;2364:7;2359:2;2355;2351:11;2347:25;2339:6;2335:38;2423:6;2411:10;2408:22;2403:2;2391:10;2388:18;2385:46;2382:72;;;2434:18;;:::i;:::-;2470:2;2463:22;2520:18;;;2554:15;;;;-1:-1:-1;2596:11:1;;;2592:20;;;2624:19;;;2621:39;;;2656:1;2653;2646:12;2621:39;2680:11;;;;2700:148;2716:6;2711:3;2708:15;2700:148;;;2782:23;2801:3;2782:23;:::i;:::-;2770:36;;2733:12;;;;2826;;;;2700:148;;;2867:6;-1:-1:-1;2892:35:1;;-1:-1:-1;2908:18:1;;;2892:35;:::i;:::-;2882:45;;;;;;1742:1191;;;;;:::o;3120:247::-;3179:6;3232:2;3220:9;3211:7;3207:23;3203:32;3200:52;;;3248:1;3245;3238:12;3200:52;3287:9;3274:23;3306:31;3331:5;3306:31;:::i;:::-;3356:5;3120:247;-1:-1:-1;;;3120:247:1:o;3372:456::-;3449:6;3457;3465;3518:2;3506:9;3497:7;3493:23;3489:32;3486:52;;;3534:1;3531;3524:12;3486:52;3573:9;3560:23;3592:31;3617:5;3592:31;:::i;:::-;3642:5;-1:-1:-1;3699:2:1;3684:18;;3671:32;3712:33;3671:32;3712:33;:::i;:::-;3372:456;;3764:7;;-1:-1:-1;;;3818:2:1;3803:18;;;;3790:32;;3372:456::o;3833:180::-;3892:6;3945:2;3933:9;3924:7;3920:23;3916:32;3913:52;;;3961:1;3958;3951:12;3913:52;-1:-1:-1;3984:23:1;;3833:180;-1:-1:-1;3833:180:1:o;4415:388::-;4483:6;4491;4544:2;4532:9;4523:7;4519:23;4515:32;4512:52;;;4560:1;4557;4550:12;4512:52;4599:9;4586:23;4618:31;4643:5;4618:31;:::i;:::-;4668:5;-1:-1:-1;4725:2:1;4710:18;;4697:32;4738:33;4697:32;4738:33;:::i;:::-;4790:7;4780:17;;;4415:388;;;;;:::o;4808:241::-;4864:6;4917:2;4905:9;4896:7;4892:23;4888:32;4885:52;;;4933:1;4930;4923:12;4885:52;4972:9;4959:23;4991:28;5013:5;4991:28;:::i;5054:380::-;5133:1;5129:12;;;;5176;;;5197:61;;5251:4;5243:6;5239:17;5229:27;;5197:61;5304:2;5296:6;5293:14;5273:18;5270:38;5267:161;;5350:10;5345:3;5341:20;5338:1;5331:31;5385:4;5382:1;5375:15;5413:4;5410:1;5403:15;5267:161;;5054:380;;;:::o;5439:127::-;5500:10;5495:3;5491:20;5488:1;5481:31;5531:4;5528:1;5521:15;5555:4;5552:1;5545:15;6140:127;6201:10;6196:3;6192:20;6189:1;6182:31;6232:4;6229:1;6222:15;6256:4;6253:1;6246:15;6272:125;6337:9;;;6358:10;;;6355:36;;;6371:18;;:::i;7160:168::-;7233:9;;;7264;;7281:15;;;7275:22;;7261:37;7251:71;;7302:18;;:::i;7333:217::-;7373:1;7399;7389:132;;7443:10;7438:3;7434:20;7431:1;7424:31;7478:4;7475:1;7468:15;7506:4;7503:1;7496:15;7389:132;-1:-1:-1;7535:9:1;;7333:217::o;7910:184::-;7980:6;8033:2;8021:9;8012:7;8008:23;8004:32;8001:52;;;8049:1;8046;8039:12;8001:52;-1:-1:-1;8072:16:1;;7910:184;-1:-1:-1;7910:184:1:o;8715:245::-;8782:6;8835:2;8823:9;8814:7;8810:23;8806:32;8803:52;;;8851:1;8848;8841:12;8803:52;8883:9;8877:16;8902:28;8924:5;8902:28;:::i;10899:401::-;11101:2;11083:21;;;11140:2;11120:18;;;11113:30;11179:34;11174:2;11159:18;;11152:62;-1:-1:-1;;;11245:2:1;11230:18;;11223:35;11290:3;11275:19;;10899:401::o;11305:399::-;11507:2;11489:21;;;11546:2;11526:18;;;11519:30;11585:34;11580:2;11565:18;;11558:62;-1:-1:-1;;;11651:2:1;11636:18;;11629:33;11694:3;11679:19;;11305:399::o;14033:251::-;14103:6;14156:2;14144:9;14135:7;14131:23;14127:32;14124:52;;;14172:1;14169;14162:12;14124:52;14204:9;14198:16;14223:31;14248:5;14223:31;:::i;14289:980::-;14551:4;14599:3;14588:9;14584:19;14630:6;14619:9;14612:25;14656:2;14694:6;14689:2;14678:9;14674:18;14667:34;14737:3;14732:2;14721:9;14717:18;14710:31;14761:6;14796;14790:13;14827:6;14819;14812:22;14865:3;14854:9;14850:19;14843:26;;14904:2;14896:6;14892:15;14878:29;;14925:1;14935:195;14949:6;14946:1;14943:13;14935:195;;;15014:13;;-1:-1:-1;;;;;15010:39:1;14998:52;;15105:15;;;;15070:12;;;;15046:1;14964:9;14935:195;;;-1:-1:-1;;;;;;;15186:32:1;;;;15181:2;15166:18;;15159:60;-1:-1:-1;;;15250:3:1;15235:19;15228:35;15147:3;14289:980;-1:-1:-1;;;14289:980:1:o;15274:128::-;15341:9;;;15362:11;;;15359:37;;;15376:18;;:::i
Swarm Source
ipfs://d1cf75f3ef5c2ed72f46c96f6f9796beda4c012b3bdbc499efe3cc881c3b05c3
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.