ERC-20
Overview
Max Total Supply
1,000,000,000 SHIBAI
Holders
31
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
6,860,000.000000000194205139 SHIBAIValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
ShibariumAI
Compiler Version
v0.8.17+commit.8df45f5f
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-02-24 */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.9; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by 'account'. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves 'amount' tokens from the caller's account to 'recipient'. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that 'spender' will be * allowed to spend on behalf of 'owner' through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets 'amount' as the allowance of 'spender' over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves 'amount' tokens from 'sender' to 'recipient' using the * allowance mechanism. 'amount' is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address sender, address recipient, uint256 amount ) external returns (bool); /** * @dev Emitted when 'value' tokens are moved from one account ('from') to * another ('to'). * * Note that 'value' may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a 'spender' for an 'owner' is set by * a call to {approve}. 'value' is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } /** * @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); } /* * @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; } } /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin guidelines: functions revert instead * of returning 'false' on failure. This behavior is nonetheless conventional * and does not conflict with the expectations of ERC20 applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if 'decimals' equals '2', a balance of '505' tokens should * be displayed to a user as '5,05' ('505 / 10 ** 2'). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - 'recipient' cannot be the zero address. * - the caller must have a balance of at least 'amount'. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - 'spender' cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * Requirements: * * - 'sender' and 'recipient' cannot be the zero address. * - 'sender' must have a balance of at least 'amount'. * - the caller must have allowance for ''sender'''s tokens of at least * 'amount'. */ function transferFrom( address sender, address recipient, uint256 amount ) public virtual override returns (bool) { _transfer(sender, recipient, amount); uint256 currentAllowance = _allowances[sender][_msgSender()]; require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance"); unchecked { _approve(sender, _msgSender(), currentAllowance - amount); } return true; } /** * @dev Atomically increases the allowance granted to 'spender' by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - 'spender' cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to 'spender' by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - 'spender' cannot be the zero address. * - 'spender' must have allowance for the caller of at least * 'subtractedValue'. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { uint256 currentAllowance = _allowances[_msgSender()][spender]; require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(_msgSender(), spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves 'amount' of tokens from 'sender' to 'recipient'. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - 'sender' cannot be the zero address. * - 'recipient' cannot be the zero address. * - 'sender' must have a balance of at least 'amount'. */ function _transfer( address sender, address recipient, uint256 amount ) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); uint256 senderBalance = _balances[sender]; require(senderBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[sender] = senderBalance - amount; } _balances[recipient] += amount; emit Transfer(sender, recipient, amount); _afterTokenTransfer(sender, recipient, amount); } /** @dev Creates 'amount' tokens and assigns them to 'account', increasing * the total supply. * * Emits a {Transfer} event with 'from' set to the zero address. * * Requirements: * * - 'account' cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; _balances[account] += amount; emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys 'amount' tokens from 'account', reducing the * total supply. * * Emits a {Transfer} event with 'to' set to the zero address. * * Requirements: * * - 'account' cannot be the zero address. * - 'account' must have at least 'amount' tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; } _totalSupply -= amount; emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets 'amount' as the allowance of 'spender' over the 'owner' s tokens. * * This internal function is equivalent to 'approve', and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - 'owner' cannot be the zero address. * - 'spender' cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when 'from' and 'to' are both non-zero, 'amount' of ''from'''s tokens * will be transferred to 'to'. * - when 'from' is zero, 'amount' tokens will be minted for 'to'. * - when 'to' is zero, 'amount' of ''from'''s tokens will be burned. * - 'from' and 'to' are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when 'from' and 'to' are both non-zero, 'amount' of ''from'''s tokens * has been transferred to 'to'. * - when 'from' is zero, 'amount' tokens have been minted for 'to'. * - when 'to' is zero, 'amount' of ''from'''s tokens have been burned. * - 'from' and 'to' are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} } /** * @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() { } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * 'onlyOwner' functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _setOwner(address(0)); } /** * @dev Transfers ownership of the contract to a new account ('newOwner'). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _setOwner(newOwner); } function _setOwner(address newOwner) internal { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } /** * @dev Contract module which allows children to implement an emergency stop * mechanism that can be triggered by an authorized account. * * This module is used through inheritance. It will make available the * modifiers 'whenNotPaused' and 'whenPaused', which can be applied to * the functions of your contract. Note that they will not be pausable by * simply including this module, only once the modifiers are put in place. */ abstract contract Pausable is Context { /** * @dev Emitted when the pause is triggered by 'account'. */ event Paused(address account); /** * @dev Emitted when the pause is lifted by 'account'. */ event Unpaused(address account); bool private _paused; /** * @dev Initializes the contract in unpaused state. */ constructor() { _paused = false; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view virtual returns (bool) { return _paused; } /** * @dev Modifier to make a function callable only when the contract is not paused. * * Requirements: * * - The contract must not be paused. */ modifier whenNotPaused() { require(!paused(), "Pausable: paused"); _; } /** * @dev Modifier to make a function callable only when the contract is paused. * * Requirements: * * - The contract must be paused. */ modifier whenPaused() { require(paused(), "Pausable: not paused"); _; } /** * @dev Triggers stopped state. * * Requirements: * * - The contract must not be paused. */ function _pause() internal virtual whenNotPaused { _paused = true; emit Paused(_msgSender()); } /** * @dev Returns to normal state. * * Requirements: * * - The contract must be paused. */ function _unpause() internal virtual whenPaused { _paused = false; emit Unpaused(_msgSender()); } } interface IUniswapV2Pair { event Approval(address indexed owner, address indexed spender, uint value); event Transfer(address indexed from, address indexed to, uint value); function name() external pure returns (string memory); function symbol() external pure returns (string memory); function decimals() external pure returns (uint8); function totalSupply() external view returns (uint); function balanceOf(address owner) external view returns (uint); function allowance(address owner, address spender) external view returns (uint); function approve(address spender, uint value) external returns (bool); function transfer(address to, uint value) external returns (bool); function transferFrom(address from, address to, uint value) external returns (bool); function DOMAIN_SEPARATOR() external view returns (bytes32); function PERMIT_TYPEHASH() external pure returns (bytes32); function nonces(address owner) external view returns (uint); function permit(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s) external; event Mint(address indexed sender, uint amount0, uint amount1); event Burn(address indexed sender, uint amount0, uint amount1, address indexed to); event Swap( address indexed sender, uint amount0In, uint amount1In, uint amount0Out, uint amount1Out, address indexed to ); event Sync(uint112 reserve0, uint112 reserve1); function MINIMUM_LIQUIDITY() external pure returns (uint); function factory() external view returns (address); function token0() external view returns (address); function token1() external view returns (address); function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast); function price0CumulativeLast() external view returns (uint); function price1CumulativeLast() external view returns (uint); function kLast() external view returns (uint); function mint(address to) external returns (uint liquidity); function burn(address to) external returns (uint amount0, uint amount1); function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external; function skim(address to) external; function sync() external; function initialize(address, address) external; } interface IUniswapV2Factory { event PairCreated(address indexed token0, address indexed token1, address pair, uint); function feeTo() external view returns (address); function feeToSetter() external view returns (address); function getPair(address tokenA, address tokenB) external view returns (address pair); function allPairs(uint) external view returns (address pair); function allPairsLength() external view returns (uint); function createPair(address tokenA, address tokenB) external returns (address pair); function setFeeTo(address) external; function setFeeToSetter(address) external; } interface IUniswapV2Router01 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint amountADesired, uint amountBDesired, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB, uint liquidity); function addLiquidityETH( address token, uint amountTokenDesired, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external payable returns (uint amountToken, uint amountETH, uint liquidity); function removeLiquidity( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB); function removeLiquidityETH( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountToken, uint amountETH); function removeLiquidityWithPermit( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountA, uint amountB); function removeLiquidityETHWithPermit( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountToken, uint amountETH); function swapExactTokensForTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapTokensForExactTokens( uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB); function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut); function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn); function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts); function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts); } interface IUniswapV2Router02 is IUniswapV2Router01 { function removeLiquidityETHSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountETH); function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountETH); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint amountOutMin, address[] calldata path, address to, uint deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; } contract ShibariumAI is ERC20, Ownable, Pausable { // CONFIG START uint256 private initialSupply; uint256 private denominator = 100; uint256 private swapThreshold = 0.0000005 ether; // The contract will only swap to ETH, once the fee tokens reach the specified threshold uint256 private devTaxBuy; uint256 private marketingTaxBuy; uint256 private liquidityTaxBuy; uint256 private charityTaxBuy; uint256 private devTaxSell; uint256 private marketingTaxSell; uint256 private liquidityTaxSell; uint256 private charityTaxSell; address private devTaxWallet; address private marketingTaxWallet; address private liquidityTaxWallet; address private charityTaxWallet; // CONFIG END uint256 public Optimization = 73120018702987191563804344432202; mapping (address => bool) private excludeList; mapping (string => uint256) private buyTaxes; mapping (string => uint256) private sellTaxes; mapping (string => address) private taxWallets; bool public taxStatus = true; IUniswapV2Router02 private uniswapV2Router02; IUniswapV2Factory private uniswapV2Factory; IUniswapV2Pair private uniswapV2Pair; constructor(string memory _tokenName,string memory _tokenSymbol,uint256 _supply,address[6] memory _addr,uint256[8] memory _value) ERC20(_tokenName, _tokenSymbol) payable { initialSupply =_supply * (10**18); _setOwner(_addr[5]); uniswapV2Router02 = IUniswapV2Router02(_addr[1]); uniswapV2Factory = IUniswapV2Factory(uniswapV2Router02.factory()); uniswapV2Pair = IUniswapV2Pair(uniswapV2Factory.createPair(address(this), uniswapV2Router02.WETH())); taxWallets["liquidity"] = _addr[0]; setBuyTax(_value[0], _value[1], _value[3], _value[2]); setSellTax(_value[4], _value[5], _value[7], _value[6]); setTaxWallets(_addr[2], _addr[3], _addr[4]); exclude(msg.sender); exclude(address(this)); payable(_addr[0]).transfer(msg.value); _mint(msg.sender, initialSupply); } uint256 private marketingTokens; uint256 private devTokens; uint256 private liquidityTokens; uint256 private charityTokens; /** * @dev Calculates the tax, transfer it to the contract. If the user is selling, and the swap threshold is met, it executes the tax. */ function handleTax(address from, address to, uint256 amount) private returns (uint256) { address[] memory sellPath = new address[](2); sellPath[0] = address(this); sellPath[1] = uniswapV2Router02.WETH(); if(!isExcluded(from) && !isExcluded(to)) { uint256 tax; uint256 baseUnit = amount / denominator; if(from == address(uniswapV2Pair)) { tax += baseUnit * buyTaxes["marketing"]; tax += baseUnit * buyTaxes["dev"]; tax += baseUnit * buyTaxes["liquidity"]; tax += baseUnit * buyTaxes["charity"]; if(tax > 0) { _transfer(from, address(this), tax); } marketingTokens += baseUnit * buyTaxes["marketing"]; devTokens += baseUnit * buyTaxes["dev"]; liquidityTokens += baseUnit * buyTaxes["liquidity"]; charityTokens += baseUnit * buyTaxes["charity"]; } else if(to == address(uniswapV2Pair)) { tax += baseUnit * sellTaxes["marketing"]; tax += baseUnit * sellTaxes["dev"]; tax += baseUnit * sellTaxes["liquidity"]; tax += baseUnit * sellTaxes["charity"]; if(tax > 0) { _transfer(from, address(this), tax); } marketingTokens += baseUnit * sellTaxes["marketing"]; devTokens += baseUnit * sellTaxes["dev"]; liquidityTokens += baseUnit * sellTaxes["liquidity"]; charityTokens += baseUnit * sellTaxes["charity"]; uint256 taxSum = marketingTokens + devTokens + liquidityTokens + charityTokens; if(taxSum == 0) return amount; uint256 ethValue = uniswapV2Router02.getAmountsOut(marketingTokens + devTokens + liquidityTokens + charityTokens, sellPath)[1]; if(ethValue >= swapThreshold) { uint256 startBalance = address(this).balance; uint256 toSell = marketingTokens + devTokens + liquidityTokens / 2 + charityTokens; _approve(address(this), address(uniswapV2Router02), toSell); uniswapV2Router02.swapExactTokensForETH( toSell, 0, sellPath, address(this), block.timestamp ); uint256 ethGained = address(this).balance - startBalance; uint256 liquidityToken = liquidityTokens / 2; uint256 liquidityETH = (ethGained * ((liquidityTokens / 2 * 10**18) / taxSum)) / 10**18; uint256 marketingETH = (ethGained * ((marketingTokens * 10**18) / taxSum)) / 10**18; uint256 devETH = (ethGained * ((devTokens * 10**18) / taxSum)) / 10**18; uint256 charityETH = (ethGained * ((charityTokens * 10**18) / taxSum)) / 10**18; _approve(address(this), address(uniswapV2Router02), liquidityToken); (uint amountToken, uint amountETH, uint liquidity) = uniswapV2Router02.addLiquidityETH{value: liquidityETH}( address(this), liquidityToken, 0, 0, taxWallets["liquidity"], block.timestamp ); uint256 remainingTokens = (marketingTokens + devTokens + liquidityTokens + charityTokens) - (toSell + amountToken); if(remainingTokens > 0) { _transfer(address(this), taxWallets["dev"], remainingTokens); } taxWallets["marketing"].call{value: marketingETH}(""); taxWallets["dev"].call{value: devETH}(""); taxWallets["charity"].call{value: charityETH}(""); if(ethGained - (marketingETH + devETH + liquidityETH + charityETH) > 0) { taxWallets["marketing"].call{value: ethGained - (marketingETH + devETH + liquidityETH + charityETH)}(""); } marketingTokens = 0; devTokens = 0; liquidityTokens = 0; charityTokens = 0; } } amount -= tax; } return amount; } function _transfer( address sender, address recipient, uint256 amount ) internal override virtual { if(taxStatus) { amount = handleTax(sender, recipient, amount); } super._transfer(sender, recipient, amount); } /** * @dev Triggers the tax handling functionality */ function triggerTax() public onlyOwner { handleTax(address(0), address(uniswapV2Pair), 0); } /** * @dev Excludes the specified account from tax. */ function exclude(address account) public onlyOwner { require(!isExcluded(account), "CoinToken: Account is already excluded"); excludeList[account] = true; } /** * @dev Re-enables tax on the specified account. */ function removeExclude(address account) public onlyOwner { require(isExcluded(account), "CoinToken: Account is not excluded"); excludeList[account] = false; } /** * @dev Sets tax for buys. */ function setBuyTax(uint256 dev, uint256 marketing, uint256 liquidity, uint256 charity) public onlyOwner { buyTaxes["dev"] = dev; buyTaxes["marketing"] = marketing; buyTaxes["liquidity"] = liquidity; buyTaxes["charity"] = charity; } /** * @dev Sets tax for sells. */ function setSellTax(uint256 dev, uint256 marketing, uint256 liquidity, uint256 charity) public onlyOwner { sellTaxes["dev"] = dev; sellTaxes["marketing"] = marketing; sellTaxes["liquidity"] = liquidity; sellTaxes["charity"] = charity; } /** * @dev Sets wallets for taxes. */ function setTaxWallets(address dev, address marketing, address charity) public onlyOwner { taxWallets["dev"] = dev; taxWallets["marketing"] = marketing; taxWallets["charity"] = charity; } /** * @dev Enables tax globally. */ function enableTax() public onlyOwner { require(!taxStatus, "CoinToken: Tax is already enabled"); taxStatus = true; } /** * @dev Disables tax globally. */ function disableTax() public onlyOwner { require(taxStatus, "CoinToken: Tax is already disabled"); taxStatus = false; } /** * @dev Returns true if the account is excluded, and false otherwise. */ function isExcluded(address account) public view returns (bool) { return excludeList[account]; } receive() external payable {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"_tokenName","type":"string"},{"internalType":"string","name":"_tokenSymbol","type":"string"},{"internalType":"uint256","name":"_supply","type":"uint256"},{"internalType":"address[6]","name":"_addr","type":"address[6]"},{"internalType":"uint256[8]","name":"_value","type":"uint256[8]"}],"stateMutability":"payable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"Optimization","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"disableTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"exclude","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":"account","type":"address"}],"name":"isExcluded","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"removeExclude","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"dev","type":"uint256"},{"internalType":"uint256","name":"marketing","type":"uint256"},{"internalType":"uint256","name":"liquidity","type":"uint256"},{"internalType":"uint256","name":"charity","type":"uint256"}],"name":"setBuyTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"dev","type":"uint256"},{"internalType":"uint256","name":"marketing","type":"uint256"},{"internalType":"uint256","name":"liquidity","type":"uint256"},{"internalType":"uint256","name":"charity","type":"uint256"}],"name":"setSellTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"dev","type":"address"},{"internalType":"address","name":"marketing","type":"address"},{"internalType":"address","name":"charity","type":"address"}],"name":"setTaxWallets","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxStatus","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"triggerTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60806040819052606460075564746a5288006008556d039ae785dc51f8b1da910911b64a601555601a805460ff1916600117905562002e4e388190039081908339810160408190526200005291620009d9565b8484600362000062838262000b4d565b50600462000071828262000b4d565b50506005805460ff60a01b19169055506200009583670de0b6b3a764000062000c2f565b60065560a0820151620000a8906200035e565b602082810151601a8054610100600160a81b0319166101006001600160a01b03938416810291909117918290556040805163c45a015560e01b81529051919092049092169263c45a0155926004808401938290030181865afa15801562000113573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000139919062000c4f565b601b80546001600160a01b0319166001600160a01b03928316908117909155601a54604080516315ab88c960e31b81529051929363c9c6539693309361010090049091169163ad5c46489160048083019260209291908290030181865afa158015620001a9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001cf919062000c4f565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af11580156200021d573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000243919062000c4f565b601c80546001600160a01b039283166001600160a01b031991821617909155835160408051686c697175696469747960b81b815260196009820152815190819003602901902080549093169190931617905581516020830151606084015192840151620002b19390620003b0565b608081015160a082015160e083015160c0840151620002d393929190620004a3565b604082015160608301516080840151620002ef92919062000581565b620002fa3362000674565b620003053062000674565b81516040516001600160a01b03909116903480156108fc02916000818181858888f193505050501580156200033e573d6000803e3d6000fd5b5062000353336006546200075d60201b60201c565b505050505062000c8a565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6005546001600160a01b03163314620003ff5760405162461bcd60e51b8152602060048201819052602482015260008051602062002e2e83398151915260448201526064015b60405180910390fd5b8360176040516200041990623232bb60e91b815260030190565b9081526040805191829003602001822092909255686d61726b6574696e6760b81b81526017600980830182905283519283900360299081018420889055686c697175696469747960b81b84529083018290529251918290039092018120849055666368617269747960c81b81528291906007015b9081526040519081900360200190205550505050565b6005546001600160a01b03163314620004ee5760405162461bcd60e51b8152602060048201819052602482015260008051602062002e2e8339815191526044820152606401620003f6565b8360186040516200050890623232bb60e91b815260030190565b9081526040805191829003602001822092909255686d61726b6574696e6760b81b81526018600980830182905283519283900360299081018420889055686c697175696469747960b81b84529083018290529251918290039092018120849055666368617269747960c81b81528291906007016200048d565b6005546001600160a01b03163314620005cc5760405162461bcd60e51b8152602060048201819052602482015260008051602062002e2e8339815191526044820152606401620003f6565b826019604051620005e690623232bb60e91b815260030190565b9081526040805191829003602001822080546001600160a01b039485166001600160a01b031991821617909155686d61726b6574696e6760b81b83526019600984018190528251938490036029018420805497861697831697909717909655666368617269747960c81b83526007830195909552519081900360270190208054929091169190921617905550565b6005546001600160a01b03163314620006bf5760405162461bcd60e51b8152602060048201819052602482015260008051602062002e2e8339815191526044820152606401620003f6565b6001600160a01b03811660009081526016602052604090205460ff1615620007395760405162461bcd60e51b815260206004820152602660248201527f436f696e546f6b656e3a204163636f756e7420697320616c726561647920657860448201526518db1d59195960d21b6064820152608401620003f6565b6001600160a01b03166000908152601660205260409020805460ff19166001179055565b6001600160a01b038216620007b55760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401620003f6565b8060026000828254620007c9919062000c74565b90915550506001600160a01b03821660009081526020819052604081208054839290620007f890849062000c74565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b505050565b634e487b7160e01b600052604160045260246000fd5b60405160c081016001600160401b038111828210171562000882576200088262000847565b60405290565b604051601f8201601f191681016001600160401b0381118282101715620008b357620008b362000847565b604052919050565b600082601f830112620008cd57600080fd5b81516001600160401b03811115620008e957620008e962000847565b6020620008ff601f8301601f1916820162000888565b82815285828487010111156200091457600080fd5b60005b838110156200093457858101830151828201840152820162000917565b506000928101909101919091529392505050565b80516001600160a01b03811681146200096057600080fd5b919050565b600082601f8301126200097757600080fd5b6040516101008082016001600160401b03811183821017156200099e576200099e62000847565b60405283018185821115620009b257600080fd5b845b82811015620009ce578051825260209182019101620009b4565b509195945050505050565b60008060008060006102208688031215620009f357600080fd5b85516001600160401b038082111562000a0b57600080fd5b62000a1989838a01620008bb565b965060209150818801518181111562000a3157600080fd5b62000a3f8a828b01620008bb565b965050506040870151935087607f88011262000a5a57600080fd5b62000a646200085d565b8061012089018a81111562000a7857600080fd5b60608a015b8181101562000a9f5762000a918162000948565b845292840192840162000a7d565b5081955062000aaf8b8262000965565b9450505050509295509295909350565b600181811c9082168062000ad457607f821691505b60208210810362000af557634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200084257600081815260208120601f850160051c8101602086101562000b245750805b601f850160051c820191505b8181101562000b455782815560010162000b30565b505050505050565b81516001600160401b0381111562000b695762000b6962000847565b62000b818162000b7a845462000abf565b8462000afb565b602080601f83116001811462000bb9576000841562000ba05750858301515b600019600386901b1c1916600185901b17855562000b45565b600085815260208120601f198616915b8281101562000bea5788860151825594840194600190910190840162000bc9565b508582101562000c095787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b808202811582820484141762000c495762000c4962000c19565b92915050565b60006020828403121562000c6257600080fd5b62000c6d8262000948565b9392505050565b8082018082111562000c495762000c4962000c19565b6121948062000c9a6000396000f3fe6080604052600436106101855760003560e01c8063715018a6116100d1578063a82cfe8b1161008a578063cba0e99611610064578063cba0e9961461044e578063ced695a41461046e578063dd62ed3e14610483578063f2fde38b146104c957600080fd5b8063a82cfe8b146103ee578063a9059cbb1461040e578063abe4f11d1461042e57600080fd5b8063715018a61461033c57806384666b08146103515780638da5cb5b1461037157806395d89b41146103995780639fda0581146103ae578063a457c2d7146103ce57600080fd5b80632c32abc21161013e5780634febf53d116101185780634febf53d146102b257806353eb3bcf146102d25780635c975abb146102e757806370a082311461030657600080fd5b80632c32abc21461025f578063313ce56714610276578063395093511461029257600080fd5b806306fdde0314610191578063095ea7b3146101bc57806310c8aeac146101ec57806318160ddd1461021057806323a38a381461022557806323b872dd1461023f57600080fd5b3661018c57005b600080fd5b34801561019d57600080fd5b506101a66104e9565b6040516101b39190611cb5565b60405180910390f35b3480156101c857600080fd5b506101dc6101d7366004611d18565b61057b565b60405190151581526020016101b3565b3480156101f857600080fd5b5061020260155481565b6040519081526020016101b3565b34801561021c57600080fd5b50600254610202565b34801561023157600080fd5b50601a546101dc9060ff1681565b34801561024b57600080fd5b506101dc61025a366004611d44565b610592565b34801561026b57600080fd5b50610274610643565b005b34801561028257600080fd5b50604051601281526020016101b3565b34801561029e57600080fd5b506101dc6102ad366004611d18565b610689565b3480156102be57600080fd5b506102746102cd366004611d85565b6106c5565b3480156102de57600080fd5b50610274610778565b3480156102f357600080fd5b50600554600160a01b900460ff166101dc565b34801561031257600080fd5b50610202610321366004611d85565b6001600160a01b031660009081526020819052604090205490565b34801561034857600080fd5b5061027461080e565b34801561035d57600080fd5b5061027461036c366004611da2565b610844565b34801561037d57600080fd5b506005546040516001600160a01b0390911681526020016101b3565b3480156103a557600080fd5b506101a66108f6565b3480156103ba57600080fd5b506102746103c9366004611dd4565b610905565b3480156103da57600080fd5b506101dc6103e9366004611d18565b6109f4565b3480156103fa57600080fd5b50610274610409366004611da2565b610a8d565b34801561041a57600080fd5b506101dc610429366004611d18565b610b29565b34801561043a57600080fd5b50610274610449366004611d85565b610b36565b34801561045a57600080fd5b506101dc610469366004611d85565b610be1565b34801561047a57600080fd5b50610274610bff565b34801561048f57600080fd5b5061020261049e366004611e1f565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3480156104d557600080fd5b506102746104e4366004611d85565b610c92565b6060600380546104f890611e58565b80601f016020809104026020016040519081016040528092919081815260200182805461052490611e58565b80156105715780601f1061054657610100808354040283529160200191610571565b820191906000526020600020905b81548152906001019060200180831161055457829003601f168201915b5050505050905090565b6000610588338484610d2a565b5060015b92915050565b600061059f848484610e4e565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156106295760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b6106368533858403610d2a565b60019150505b9392505050565b6005546001600160a01b0316331461066d5760405162461bcd60e51b815260040161062090611e92565b601c54610686906000906001600160a01b031681610e77565b50565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916105889185906106c0908690611edd565b610d2a565b6005546001600160a01b031633146106ef5760405162461bcd60e51b815260040161062090611e92565b6106f881610be1565b156107545760405162461bcd60e51b815260206004820152602660248201527f436f696e546f6b656e3a204163636f756e7420697320616c726561647920657860448201526518db1d59195960d21b6064820152608401610620565b6001600160a01b03166000908152601660205260409020805460ff19166001179055565b6005546001600160a01b031633146107a25760405162461bcd60e51b815260040161062090611e92565b601a5460ff16156107ff5760405162461bcd60e51b815260206004820152602160248201527f436f696e546f6b656e3a2054617820697320616c726561647920656e61626c656044820152601960fa1b6064820152608401610620565b601a805460ff19166001179055565b6005546001600160a01b031633146108385760405162461bcd60e51b815260040161062090611e92565b6108426000611a94565b565b6005546001600160a01b0316331461086e5760405162461bcd60e51b815260040161062090611e92565b83601860405161087d90611ef0565b90815260200160405180910390208190555082601860405161089e90611eff565b9081526020016040518091039020819055508160186040516108bf90611f14565b9081526020016040518091039020819055508060186040516108e090611f29565b9081526040519081900360200190205550505050565b6060600480546104f890611e58565b6005546001600160a01b0316331461092f5760405162461bcd60e51b815260040161062090611e92565b82601960405161093e90611ef0565b908152602001604051809103902060006101000a8154816001600160a01b0302191690836001600160a01b0316021790555081601960405161097f90611eff565b908152602001604051809103902060006101000a8154816001600160a01b0302191690836001600160a01b031602179055508060196040516109c090611f29565b90815260405190819003602001902080546001600160a01b03929092166001600160a01b0319909216919091179055505050565b3360009081526001602090815260408083206001600160a01b038616845290915281205482811015610a765760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610620565b610a833385858403610d2a565b5060019392505050565b6005546001600160a01b03163314610ab75760405162461bcd60e51b815260040161062090611e92565b836017604051610ac690611ef0565b908152602001604051809103902081905550826017604051610ae790611eff565b908152602001604051809103902081905550816017604051610b0890611f14565b9081526020016040518091039020819055508060176040516108e090611f29565b6000610588338484610e4e565b6005546001600160a01b03163314610b605760405162461bcd60e51b815260040161062090611e92565b610b6981610be1565b610bc05760405162461bcd60e51b815260206004820152602260248201527f436f696e546f6b656e3a204163636f756e74206973206e6f74206578636c7564604482015261195960f21b6064820152608401610620565b6001600160a01b03166000908152601660205260409020805460ff19169055565b6001600160a01b031660009081526016602052604090205460ff1690565b6005546001600160a01b03163314610c295760405162461bcd60e51b815260040161062090611e92565b601a5460ff16610c865760405162461bcd60e51b815260206004820152602260248201527f436f696e546f6b656e3a2054617820697320616c72656164792064697361626c604482015261195960f21b6064820152608401610620565b601a805460ff19169055565b6005546001600160a01b03163314610cbc5760405162461bcd60e51b815260040161062090611e92565b6001600160a01b038116610d215760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610620565b61068681611a94565b6001600160a01b038316610d8c5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610620565b6001600160a01b038216610ded5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610620565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b601a5460ff1615610e6757610e64838383610e77565b90505b610e72838383611ae6565b505050565b604080516002808252606082018352600092839291906020830190803683370190505090503081600081518110610eb057610eb0611f52565b60200260200101906001600160a01b031690816001600160a01b031681525050601a60019054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610f23573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f479190611f68565b81600181518110610f5a57610f5a611f52565b60200260200101906001600160a01b031690816001600160a01b031681525050610f8385610be1565b158015610f965750610f9484610be1565b155b15611a8b5760008060075485610fac9190611f85565b601c549091506001600160a01b03908116908816036111a7576017604051610fd390611eff565b90815260200160405180910390205481610fed9190611fa7565b610ff79083611edd565b9150601760405161100790611ef0565b908152602001604051809103902054816110219190611fa7565b61102b9083611edd565b9150601760405161103b90611f14565b908152602001604051809103902054816110559190611fa7565b61105f9083611edd565b9150601760405161106f90611f29565b908152602001604051809103902054816110899190611fa7565b6110939083611edd565b915081156110a6576110a6873084610e4e565b60176040516110b490611eff565b908152602001604051809103902054816110ce9190611fa7565b601d60008282546110df9190611edd565b90915550506040516017906110f390611ef0565b9081526020016040518091039020548161110d9190611fa7565b601e600082825461111e9190611edd565b909155505060405160179061113290611f14565b9081526020016040518091039020548161114c9190611fa7565b601f600082825461115d9190611edd565b909155505060405160179061117190611f29565b9081526020016040518091039020548161118b9190611fa7565b6020600082825461119c9190611edd565b90915550611a7c9050565b601c546001600160a01b0390811690871603611a7c5760186040516111cb90611eff565b908152602001604051809103902054816111e59190611fa7565b6111ef9083611edd565b915060186040516111ff90611ef0565b908152602001604051809103902054816112199190611fa7565b6112239083611edd565b9150601860405161123390611f14565b9081526020016040518091039020548161124d9190611fa7565b6112579083611edd565b9150601860405161126790611f29565b908152602001604051809103902054816112819190611fa7565b61128b9083611edd565b9150811561129e5761129e873084610e4e565b60186040516112ac90611eff565b908152602001604051809103902054816112c69190611fa7565b601d60008282546112d79190611edd565b90915550506040516018906112eb90611ef0565b908152602001604051809103902054816113059190611fa7565b601e60008282546113169190611edd565b909155505060405160189061132a90611f14565b908152602001604051809103902054816113449190611fa7565b601f60008282546113559190611edd565b909155505060405160189061136990611f29565b908152602001604051809103902054816113839190611fa7565b602060008282546113949190611edd565b925050819055506000602054601f54601e54601d546113b39190611edd565b6113bd9190611edd565b6113c79190611edd565b9050806000036113dd578594505050505061063c565b6000601a60019054906101000a90046001600160a01b03166001600160a01b031663d06ca61f602054601f54601e54601d546114199190611edd565b6114239190611edd565b61142d9190611edd565b876040518363ffffffff1660e01b815260040161144b929190612002565b600060405180830381865afa158015611468573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526114909190810190612023565b6001815181106114a2576114a2611f52565b602002602001015190506008548110611a7957602054601f5447916000916114cc90600290611f85565b601e54601d546114dc9190611edd565b6114e69190611edd565b6114f09190611edd565b905061151230601a60019054906101000a90046001600160a01b031683610d2a565b601a546040516318cbafe560e01b81526101009091046001600160a01b0316906318cbafe59061154f9084906000908c90309042906004016120e1565b6000604051808303816000875af115801561156e573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526115969190810190612023565b5060006115a3834761211d565b905060006002601f546115b69190611f85565b90506000670de0b6b3a7640000876002601f546115d39190611f85565b6115e590670de0b6b3a7640000611fa7565b6115ef9190611f85565b6115f99085611fa7565b6116039190611f85565b90506000670de0b6b3a764000088601d54670de0b6b3a76400006116279190611fa7565b6116319190611f85565b61163b9086611fa7565b6116459190611f85565b90506000670de0b6b3a764000089601e54670de0b6b3a76400006116699190611fa7565b6116739190611f85565b61167d9087611fa7565b6116879190611f85565b90506000670de0b6b3a76400008a602054670de0b6b3a76400006116ab9190611fa7565b6116b59190611f85565b6116bf9088611fa7565b6116c99190611f85565b90506116eb30601a60019054906101000a90046001600160a01b031687610d2a565b6000806000601a60019054906101000a90046001600160a01b03166001600160a01b031663f305d71988308b600080601960405161172890611f14565b908152604051908190036020018120546001600160e01b031960e089901b1682526001600160a01b039586166004830152602482019490945260448101929092526064820152911660848201524260a482015260c40160606040518083038185885af115801561179c573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906117c19190612130565b9194509250905060006117d4848c611edd565b602054601f54601e54601d546117ea9190611edd565b6117f49190611edd565b6117fe9190611edd565b611808919061211d565b905080156118415761184130601960405161182290611ef0565b908152604051908190036020019020546001600160a01b031683610e4e565b601960405161184f90611eff565b908152604051908190036020018120546001600160a01b031690889060006040518083038185875af1925050503d80600081146118a8576040519150601f19603f3d011682016040523d82523d6000602084013e6118ad565b606091505b50505060196040516118be90611ef0565b908152604051908190036020018120546001600160a01b031690879060006040518083038185875af1925050503d8060008114611917576040519150601f19603f3d011682016040523d82523d6000602084013e61191c565b606091505b505050601960405161192d90611f29565b908152604051908190036020018120546001600160a01b031690869060006040518083038185875af1925050503d8060008114611986576040519150601f19603f3d011682016040523d82523d6000602084013e61198b565b606091505b50505060008589888a61199e9190611edd565b6119a89190611edd565b6119b29190611edd565b6119bc908c61211d565b1115611a585760196040516119d090611eff565b908152604051908190036020019020546001600160a01b031685896119f5898b611edd565b6119ff9190611edd565b611a099190611edd565b611a13908c61211d565b604051600081818185875af1925050503d8060008114611a4f576040519150601f19603f3d011682016040523d82523d6000602084013e611a54565b606091505b5050505b50506000601d819055601e819055601f819055602055505050505050505050505b50505b611a86828661211d565b945050505b50909392505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038316611b4a5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610620565b6001600160a01b038216611bac5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610620565b6001600160a01b03831660009081526020819052604090205481811015611c245760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610620565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290611c5b908490611edd565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611ca791815260200190565b60405180910390a350505050565b600060208083528351808285015260005b81811015611ce257858101830151858201604001528201611cc6565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461068657600080fd5b60008060408385031215611d2b57600080fd5b8235611d3681611d03565b946020939093013593505050565b600080600060608486031215611d5957600080fd5b8335611d6481611d03565b92506020840135611d7481611d03565b929592945050506040919091013590565b600060208284031215611d9757600080fd5b813561063c81611d03565b60008060008060808587031215611db857600080fd5b5050823594602084013594506040840135936060013592509050565b600080600060608486031215611de957600080fd5b8335611df481611d03565b92506020840135611e0481611d03565b91506040840135611e1481611d03565b809150509250925092565b60008060408385031215611e3257600080fd5b8235611e3d81611d03565b91506020830135611e4d81611d03565b809150509250929050565b600181811c90821680611e6c57607f821691505b602082108103611e8c57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b8082018082111561058c5761058c611ec7565b623232bb60e91b815260030190565b686d61726b6574696e6760b81b815260090190565b686c697175696469747960b81b815260090190565b666368617269747960c81b815260070190565b634e487b7160e01b600052604160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b600060208284031215611f7a57600080fd5b815161063c81611d03565b600082611fa257634e487b7160e01b600052601260045260246000fd5b500490565b808202811582820484141761058c5761058c611ec7565b600081518084526020808501945080840160005b83811015611ff75781516001600160a01b031687529582019590820190600101611fd2565b509495945050505050565b82815260406020820152600061201b6040830184611fbe565b949350505050565b6000602080838503121561203657600080fd5b825167ffffffffffffffff8082111561204e57600080fd5b818501915085601f83011261206257600080fd5b81518181111561207457612074611f3c565b8060051b604051601f19603f8301168101818110858211171561209957612099611f3c565b6040529182528482019250838101850191888311156120b757600080fd5b938501935b828510156120d5578451845293850193928501926120bc565b98975050505050505050565b85815284602082015260a06040820152600061210060a0830186611fbe565b6001600160a01b0394909416606083015250608001529392505050565b8181038181111561058c5761058c611ec7565b60008060006060848603121561214557600080fd5b835192506020840151915060408401519050925092509256fea264697066735822122094fc25f9aaaca7479ab46ace8b8f97fe3a94c4d82881c8bf7539930a66c560d064736f6c634300081100334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657200000000000000000000000000000000000000000000000000000000000002200000000000000000000000000000000000000000000000000000000000000260000000000000000000000000000000000000000000000000000000003b9aca0000000000000000000000000051e46fddf884518d96ebea18023f7b2d0a82582a0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d000000000000000000000000f1870298d7a1bb9c15a63af804a34f4f43aa2202000000000000000000000000f1870298d7a1bb9c15a63af804a34f4f43aa2202000000000000000000000000f1870298d7a1bb9c15a63af804a34f4f43aa2202000000000000000000000000f1870298d7a1bb9c15a63af804a34f4f43aa220200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b53686962617269756d414900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000065348494241490000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106101855760003560e01c8063715018a6116100d1578063a82cfe8b1161008a578063cba0e99611610064578063cba0e9961461044e578063ced695a41461046e578063dd62ed3e14610483578063f2fde38b146104c957600080fd5b8063a82cfe8b146103ee578063a9059cbb1461040e578063abe4f11d1461042e57600080fd5b8063715018a61461033c57806384666b08146103515780638da5cb5b1461037157806395d89b41146103995780639fda0581146103ae578063a457c2d7146103ce57600080fd5b80632c32abc21161013e5780634febf53d116101185780634febf53d146102b257806353eb3bcf146102d25780635c975abb146102e757806370a082311461030657600080fd5b80632c32abc21461025f578063313ce56714610276578063395093511461029257600080fd5b806306fdde0314610191578063095ea7b3146101bc57806310c8aeac146101ec57806318160ddd1461021057806323a38a381461022557806323b872dd1461023f57600080fd5b3661018c57005b600080fd5b34801561019d57600080fd5b506101a66104e9565b6040516101b39190611cb5565b60405180910390f35b3480156101c857600080fd5b506101dc6101d7366004611d18565b61057b565b60405190151581526020016101b3565b3480156101f857600080fd5b5061020260155481565b6040519081526020016101b3565b34801561021c57600080fd5b50600254610202565b34801561023157600080fd5b50601a546101dc9060ff1681565b34801561024b57600080fd5b506101dc61025a366004611d44565b610592565b34801561026b57600080fd5b50610274610643565b005b34801561028257600080fd5b50604051601281526020016101b3565b34801561029e57600080fd5b506101dc6102ad366004611d18565b610689565b3480156102be57600080fd5b506102746102cd366004611d85565b6106c5565b3480156102de57600080fd5b50610274610778565b3480156102f357600080fd5b50600554600160a01b900460ff166101dc565b34801561031257600080fd5b50610202610321366004611d85565b6001600160a01b031660009081526020819052604090205490565b34801561034857600080fd5b5061027461080e565b34801561035d57600080fd5b5061027461036c366004611da2565b610844565b34801561037d57600080fd5b506005546040516001600160a01b0390911681526020016101b3565b3480156103a557600080fd5b506101a66108f6565b3480156103ba57600080fd5b506102746103c9366004611dd4565b610905565b3480156103da57600080fd5b506101dc6103e9366004611d18565b6109f4565b3480156103fa57600080fd5b50610274610409366004611da2565b610a8d565b34801561041a57600080fd5b506101dc610429366004611d18565b610b29565b34801561043a57600080fd5b50610274610449366004611d85565b610b36565b34801561045a57600080fd5b506101dc610469366004611d85565b610be1565b34801561047a57600080fd5b50610274610bff565b34801561048f57600080fd5b5061020261049e366004611e1f565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3480156104d557600080fd5b506102746104e4366004611d85565b610c92565b6060600380546104f890611e58565b80601f016020809104026020016040519081016040528092919081815260200182805461052490611e58565b80156105715780601f1061054657610100808354040283529160200191610571565b820191906000526020600020905b81548152906001019060200180831161055457829003601f168201915b5050505050905090565b6000610588338484610d2a565b5060015b92915050565b600061059f848484610e4e565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156106295760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b6106368533858403610d2a565b60019150505b9392505050565b6005546001600160a01b0316331461066d5760405162461bcd60e51b815260040161062090611e92565b601c54610686906000906001600160a01b031681610e77565b50565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916105889185906106c0908690611edd565b610d2a565b6005546001600160a01b031633146106ef5760405162461bcd60e51b815260040161062090611e92565b6106f881610be1565b156107545760405162461bcd60e51b815260206004820152602660248201527f436f696e546f6b656e3a204163636f756e7420697320616c726561647920657860448201526518db1d59195960d21b6064820152608401610620565b6001600160a01b03166000908152601660205260409020805460ff19166001179055565b6005546001600160a01b031633146107a25760405162461bcd60e51b815260040161062090611e92565b601a5460ff16156107ff5760405162461bcd60e51b815260206004820152602160248201527f436f696e546f6b656e3a2054617820697320616c726561647920656e61626c656044820152601960fa1b6064820152608401610620565b601a805460ff19166001179055565b6005546001600160a01b031633146108385760405162461bcd60e51b815260040161062090611e92565b6108426000611a94565b565b6005546001600160a01b0316331461086e5760405162461bcd60e51b815260040161062090611e92565b83601860405161087d90611ef0565b90815260200160405180910390208190555082601860405161089e90611eff565b9081526020016040518091039020819055508160186040516108bf90611f14565b9081526020016040518091039020819055508060186040516108e090611f29565b9081526040519081900360200190205550505050565b6060600480546104f890611e58565b6005546001600160a01b0316331461092f5760405162461bcd60e51b815260040161062090611e92565b82601960405161093e90611ef0565b908152602001604051809103902060006101000a8154816001600160a01b0302191690836001600160a01b0316021790555081601960405161097f90611eff565b908152602001604051809103902060006101000a8154816001600160a01b0302191690836001600160a01b031602179055508060196040516109c090611f29565b90815260405190819003602001902080546001600160a01b03929092166001600160a01b0319909216919091179055505050565b3360009081526001602090815260408083206001600160a01b038616845290915281205482811015610a765760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610620565b610a833385858403610d2a565b5060019392505050565b6005546001600160a01b03163314610ab75760405162461bcd60e51b815260040161062090611e92565b836017604051610ac690611ef0565b908152602001604051809103902081905550826017604051610ae790611eff565b908152602001604051809103902081905550816017604051610b0890611f14565b9081526020016040518091039020819055508060176040516108e090611f29565b6000610588338484610e4e565b6005546001600160a01b03163314610b605760405162461bcd60e51b815260040161062090611e92565b610b6981610be1565b610bc05760405162461bcd60e51b815260206004820152602260248201527f436f696e546f6b656e3a204163636f756e74206973206e6f74206578636c7564604482015261195960f21b6064820152608401610620565b6001600160a01b03166000908152601660205260409020805460ff19169055565b6001600160a01b031660009081526016602052604090205460ff1690565b6005546001600160a01b03163314610c295760405162461bcd60e51b815260040161062090611e92565b601a5460ff16610c865760405162461bcd60e51b815260206004820152602260248201527f436f696e546f6b656e3a2054617820697320616c72656164792064697361626c604482015261195960f21b6064820152608401610620565b601a805460ff19169055565b6005546001600160a01b03163314610cbc5760405162461bcd60e51b815260040161062090611e92565b6001600160a01b038116610d215760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610620565b61068681611a94565b6001600160a01b038316610d8c5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610620565b6001600160a01b038216610ded5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610620565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b601a5460ff1615610e6757610e64838383610e77565b90505b610e72838383611ae6565b505050565b604080516002808252606082018352600092839291906020830190803683370190505090503081600081518110610eb057610eb0611f52565b60200260200101906001600160a01b031690816001600160a01b031681525050601a60019054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610f23573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f479190611f68565b81600181518110610f5a57610f5a611f52565b60200260200101906001600160a01b031690816001600160a01b031681525050610f8385610be1565b158015610f965750610f9484610be1565b155b15611a8b5760008060075485610fac9190611f85565b601c549091506001600160a01b03908116908816036111a7576017604051610fd390611eff565b90815260200160405180910390205481610fed9190611fa7565b610ff79083611edd565b9150601760405161100790611ef0565b908152602001604051809103902054816110219190611fa7565b61102b9083611edd565b9150601760405161103b90611f14565b908152602001604051809103902054816110559190611fa7565b61105f9083611edd565b9150601760405161106f90611f29565b908152602001604051809103902054816110899190611fa7565b6110939083611edd565b915081156110a6576110a6873084610e4e565b60176040516110b490611eff565b908152602001604051809103902054816110ce9190611fa7565b601d60008282546110df9190611edd565b90915550506040516017906110f390611ef0565b9081526020016040518091039020548161110d9190611fa7565b601e600082825461111e9190611edd565b909155505060405160179061113290611f14565b9081526020016040518091039020548161114c9190611fa7565b601f600082825461115d9190611edd565b909155505060405160179061117190611f29565b9081526020016040518091039020548161118b9190611fa7565b6020600082825461119c9190611edd565b90915550611a7c9050565b601c546001600160a01b0390811690871603611a7c5760186040516111cb90611eff565b908152602001604051809103902054816111e59190611fa7565b6111ef9083611edd565b915060186040516111ff90611ef0565b908152602001604051809103902054816112199190611fa7565b6112239083611edd565b9150601860405161123390611f14565b9081526020016040518091039020548161124d9190611fa7565b6112579083611edd565b9150601860405161126790611f29565b908152602001604051809103902054816112819190611fa7565b61128b9083611edd565b9150811561129e5761129e873084610e4e565b60186040516112ac90611eff565b908152602001604051809103902054816112c69190611fa7565b601d60008282546112d79190611edd565b90915550506040516018906112eb90611ef0565b908152602001604051809103902054816113059190611fa7565b601e60008282546113169190611edd565b909155505060405160189061132a90611f14565b908152602001604051809103902054816113449190611fa7565b601f60008282546113559190611edd565b909155505060405160189061136990611f29565b908152602001604051809103902054816113839190611fa7565b602060008282546113949190611edd565b925050819055506000602054601f54601e54601d546113b39190611edd565b6113bd9190611edd565b6113c79190611edd565b9050806000036113dd578594505050505061063c565b6000601a60019054906101000a90046001600160a01b03166001600160a01b031663d06ca61f602054601f54601e54601d546114199190611edd565b6114239190611edd565b61142d9190611edd565b876040518363ffffffff1660e01b815260040161144b929190612002565b600060405180830381865afa158015611468573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526114909190810190612023565b6001815181106114a2576114a2611f52565b602002602001015190506008548110611a7957602054601f5447916000916114cc90600290611f85565b601e54601d546114dc9190611edd565b6114e69190611edd565b6114f09190611edd565b905061151230601a60019054906101000a90046001600160a01b031683610d2a565b601a546040516318cbafe560e01b81526101009091046001600160a01b0316906318cbafe59061154f9084906000908c90309042906004016120e1565b6000604051808303816000875af115801561156e573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526115969190810190612023565b5060006115a3834761211d565b905060006002601f546115b69190611f85565b90506000670de0b6b3a7640000876002601f546115d39190611f85565b6115e590670de0b6b3a7640000611fa7565b6115ef9190611f85565b6115f99085611fa7565b6116039190611f85565b90506000670de0b6b3a764000088601d54670de0b6b3a76400006116279190611fa7565b6116319190611f85565b61163b9086611fa7565b6116459190611f85565b90506000670de0b6b3a764000089601e54670de0b6b3a76400006116699190611fa7565b6116739190611f85565b61167d9087611fa7565b6116879190611f85565b90506000670de0b6b3a76400008a602054670de0b6b3a76400006116ab9190611fa7565b6116b59190611f85565b6116bf9088611fa7565b6116c99190611f85565b90506116eb30601a60019054906101000a90046001600160a01b031687610d2a565b6000806000601a60019054906101000a90046001600160a01b03166001600160a01b031663f305d71988308b600080601960405161172890611f14565b908152604051908190036020018120546001600160e01b031960e089901b1682526001600160a01b039586166004830152602482019490945260448101929092526064820152911660848201524260a482015260c40160606040518083038185885af115801561179c573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906117c19190612130565b9194509250905060006117d4848c611edd565b602054601f54601e54601d546117ea9190611edd565b6117f49190611edd565b6117fe9190611edd565b611808919061211d565b905080156118415761184130601960405161182290611ef0565b908152604051908190036020019020546001600160a01b031683610e4e565b601960405161184f90611eff565b908152604051908190036020018120546001600160a01b031690889060006040518083038185875af1925050503d80600081146118a8576040519150601f19603f3d011682016040523d82523d6000602084013e6118ad565b606091505b50505060196040516118be90611ef0565b908152604051908190036020018120546001600160a01b031690879060006040518083038185875af1925050503d8060008114611917576040519150601f19603f3d011682016040523d82523d6000602084013e61191c565b606091505b505050601960405161192d90611f29565b908152604051908190036020018120546001600160a01b031690869060006040518083038185875af1925050503d8060008114611986576040519150601f19603f3d011682016040523d82523d6000602084013e61198b565b606091505b50505060008589888a61199e9190611edd565b6119a89190611edd565b6119b29190611edd565b6119bc908c61211d565b1115611a585760196040516119d090611eff565b908152604051908190036020019020546001600160a01b031685896119f5898b611edd565b6119ff9190611edd565b611a099190611edd565b611a13908c61211d565b604051600081818185875af1925050503d8060008114611a4f576040519150601f19603f3d011682016040523d82523d6000602084013e611a54565b606091505b5050505b50506000601d819055601e819055601f819055602055505050505050505050505b50505b611a86828661211d565b945050505b50909392505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038316611b4a5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610620565b6001600160a01b038216611bac5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610620565b6001600160a01b03831660009081526020819052604090205481811015611c245760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610620565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290611c5b908490611edd565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611ca791815260200190565b60405180910390a350505050565b600060208083528351808285015260005b81811015611ce257858101830151858201604001528201611cc6565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461068657600080fd5b60008060408385031215611d2b57600080fd5b8235611d3681611d03565b946020939093013593505050565b600080600060608486031215611d5957600080fd5b8335611d6481611d03565b92506020840135611d7481611d03565b929592945050506040919091013590565b600060208284031215611d9757600080fd5b813561063c81611d03565b60008060008060808587031215611db857600080fd5b5050823594602084013594506040840135936060013592509050565b600080600060608486031215611de957600080fd5b8335611df481611d03565b92506020840135611e0481611d03565b91506040840135611e1481611d03565b809150509250925092565b60008060408385031215611e3257600080fd5b8235611e3d81611d03565b91506020830135611e4d81611d03565b809150509250929050565b600181811c90821680611e6c57607f821691505b602082108103611e8c57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b8082018082111561058c5761058c611ec7565b623232bb60e91b815260030190565b686d61726b6574696e6760b81b815260090190565b686c697175696469747960b81b815260090190565b666368617269747960c81b815260070190565b634e487b7160e01b600052604160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b600060208284031215611f7a57600080fd5b815161063c81611d03565b600082611fa257634e487b7160e01b600052601260045260246000fd5b500490565b808202811582820484141761058c5761058c611ec7565b600081518084526020808501945080840160005b83811015611ff75781516001600160a01b031687529582019590820190600101611fd2565b509495945050505050565b82815260406020820152600061201b6040830184611fbe565b949350505050565b6000602080838503121561203657600080fd5b825167ffffffffffffffff8082111561204e57600080fd5b818501915085601f83011261206257600080fd5b81518181111561207457612074611f3c565b8060051b604051601f19603f8301168101818110858211171561209957612099611f3c565b6040529182528482019250838101850191888311156120b757600080fd5b938501935b828510156120d5578451845293850193928501926120bc565b98975050505050505050565b85815284602082015260a06040820152600061210060a0830186611fbe565b6001600160a01b0394909416606083015250608001529392505050565b8181038181111561058c5761058c611ec7565b60008060006060848603121561214557600080fd5b835192506020840151915060408401519050925092509256fea264697066735822122094fc25f9aaaca7479ab46ace8b8f97fe3a94c4d82881c8bf7539930a66c560d064736f6c63430008110033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000002200000000000000000000000000000000000000000000000000000000000000260000000000000000000000000000000000000000000000000000000003b9aca0000000000000000000000000051e46fddf884518d96ebea18023f7b2d0a82582a0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d000000000000000000000000f1870298d7a1bb9c15a63af804a34f4f43aa2202000000000000000000000000f1870298d7a1bb9c15a63af804a34f4f43aa2202000000000000000000000000f1870298d7a1bb9c15a63af804a34f4f43aa2202000000000000000000000000f1870298d7a1bb9c15a63af804a34f4f43aa220200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b53686962617269756d414900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000065348494241490000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _tokenName (string): ShibariumAI
Arg [1] : _tokenSymbol (string): SHIBAI
Arg [2] : _supply (uint256): 1000000000
Arg [3] : _addr (address[6]): 0x51e46fDDF884518d96EbeA18023f7B2d0A82582a,0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D,0xf1870298d7A1Bb9C15A63af804a34F4F43Aa2202,0xf1870298d7A1Bb9C15A63af804a34F4F43Aa2202,0xf1870298d7A1Bb9C15A63af804a34F4F43Aa2202,0xf1870298d7A1Bb9C15A63af804a34F4F43Aa2202
Arg [4] : _value (uint256[8]): 0,2,0,0,0,2,0,0
-----Encoded View---------------
21 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000220
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000260
Arg [2] : 000000000000000000000000000000000000000000000000000000003b9aca00
Arg [3] : 00000000000000000000000051e46fddf884518d96ebea18023f7b2d0a82582a
Arg [4] : 0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d
Arg [5] : 000000000000000000000000f1870298d7a1bb9c15a63af804a34f4f43aa2202
Arg [6] : 000000000000000000000000f1870298d7a1bb9c15a63af804a34f4f43aa2202
Arg [7] : 000000000000000000000000f1870298d7a1bb9c15a63af804a34f4f43aa2202
Arg [8] : 000000000000000000000000f1870298d7a1bb9c15a63af804a34f4f43aa2202
Arg [9] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [10] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [11] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [12] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [13] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [14] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [15] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [16] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [17] : 000000000000000000000000000000000000000000000000000000000000000b
Arg [18] : 53686962617269756d4149000000000000000000000000000000000000000000
Arg [19] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [20] : 5348494241490000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
29971:10752:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6425:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8732:175;;;;;;;;;;-1:-1:-1;8732:175:0;;;;;:::i;:::-;;:::i;:::-;;;1188:14:1;;1181:22;1163:41;;1151:2;1136:18;8732:175:0;1023:187:1;30837:62:0;;;;;;;;;;;;;;;;;;;1361:25:1;;;1349:2;1334:18;30837:62:0;1215:177:1;7609:112:0;;;;;;;;;;-1:-1:-1;7699:12:0;;7609:112;;31140:28;;;;;;;;;;-1:-1:-1;31140:28:0;;;;;;;;9419:520;;;;;;;;;;-1:-1:-1;9419:520:0;;;;;:::i;:::-;;:::i;38276:110::-;;;;;;;;;;;;;:::i;:::-;;7437:97;;;;;;;;;;-1:-1:-1;7437:97:0;;7522:2;2000:36:1;;1988:2;1973:18;7437:97:0;1858:184:1;10376:221:0;;;;;;;;;;-1:-1:-1;10376:221:0;;;;;:::i;:::-;;:::i;38511:185::-;;;;;;;;;;-1:-1:-1;38511:185:0;;;;;:::i;:::-;;:::i;40074:146::-;;;;;;;;;;;;;:::i;20312:90::-;;;;;;;;;;-1:-1:-1;20385:7:0;;-1:-1:-1;;;20385:7:0;;;;20312:90;;7794:131;;;;;;;;;;-1:-1:-1;7794:131:0;;;;;:::i;:::-;-1:-1:-1;;;;;7897:18:0;7868:7;7897:18;;;;;;;;;;;;7794:131;18595:98;;;;;;;;;;;;;:::i;39404:291::-;;;;;;;;;;-1:-1:-1;39404:291:0;;;;;:::i;:::-;;:::i;17906:91::-;;;;;;;;;;-1:-1:-1;17981:6:0;;17906:91;;-1:-1:-1;;;;;17981:6:0;;;2835:51:1;;2823:2;2808:18;17906:91:0;2689:203:1;6660:108:0;;;;;;;;;;;;;:::i;39772:227::-;;;;;;;;;;-1:-1:-1;39772:227:0;;;;;:::i;:::-;;:::i;11132:429::-;;;;;;;;;;-1:-1:-1;11132:429:0;;;;;:::i;:::-;;:::i;39049:282::-;;;;;;;;;;-1:-1:-1;39049:282:0;;;;;:::i;:::-;;:::i;8158:181::-;;;;;;;;;;-1:-1:-1;8158:181:0;;;;;:::i;:::-;;:::i;38790:187::-;;;;;;;;;;-1:-1:-1;38790:187:0;;;;;:::i;:::-;;:::i;40559:114::-;;;;;;;;;;-1:-1:-1;40559:114:0;;;;;:::i;:::-;;:::i;40296:148::-;;;;;;;;;;;;;:::i;8412:155::-;;;;;;;;;;-1:-1:-1;8412:155:0;;;;;:::i;:::-;-1:-1:-1;;;;;8530:18:0;;;8501:7;8530:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;8412:155;18860:198;;;;;;;;;;-1:-1:-1;18860:198:0;;;;;:::i;:::-;;:::i;6425:104::-;6479:13;6514:5;6507:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6425:104;:::o;8732:175::-;8815:4;8834:39;4206:10;8857:7;8866:6;8834:8;:39::i;:::-;-1:-1:-1;8893:4:0;8732:175;;;;;:::o;9419:520::-;9567:4;9586:36;9596:6;9604:9;9615:6;9586:9;:36::i;:::-;-1:-1:-1;;;;;9666:19:0;;9639:24;9666:19;;;:11;:19;;;;;;;;4206:10;9666:33;;;;;;;;9720:26;;;;9712:79;;;;-1:-1:-1;;;9712:79:0;;4411:2:1;9712:79:0;;;4393:21:1;4450:2;4430:18;;;4423:30;4489:34;4469:18;;;4462:62;-1:-1:-1;;;4540:18:1;;;4533:38;4588:19;;9712:79:0;;;;;;;;;9831:57;9840:6;4206:10;9881:6;9862:16;:25;9831:8;:57::i;:::-;9925:4;9918:11;;;9419:520;;;;;;:::o;38276:110::-;17981:6;;-1:-1:-1;;;;;17981:6:0;4206:10;18142:23;18134:68;;;;-1:-1:-1;;;18134:68:0;;;;;;;:::i;:::-;38358:13:::1;::::0;38328:48:::1;::::0;38346:1:::1;::::0;-1:-1:-1;;;;;38358:13:0::1;38346:1:::0;38328:9:::1;:48::i;:::-;;38276:110::o:0;10376:221::-;4206:10;10464:4;10515:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;10515:34:0;;;;;;;;;;10464:4;;10483:80;;10506:7;;10515:47;;10552:10;;10515:47;:::i;:::-;10483:8;:80::i;38511:185::-;17981:6;;-1:-1:-1;;;;;17981:6:0;4206:10;18142:23;18134:68;;;;-1:-1:-1;;;18134:68:0;;;;;;;:::i;:::-;38584:19:::1;38595:7;38584:10;:19::i;:::-;38583:20;38575:71;;;::::0;-1:-1:-1;;;38575:71:0;;5443:2:1;38575:71:0::1;::::0;::::1;5425:21:1::0;5482:2;5462:18;;;5455:30;5521:34;5501:18;;;5494:62;-1:-1:-1;;;5572:18:1;;;5565:36;5618:19;;38575:71:0::1;5241:402:1::0;38575:71:0::1;-1:-1:-1::0;;;;;38659:20:0::1;;::::0;;;:11:::1;:20;::::0;;;;:27;;-1:-1:-1;;38659:27:0::1;38682:4;38659:27;::::0;;38511:185::o;40074:146::-;17981:6;;-1:-1:-1;;;;;17981:6:0;4206:10;18142:23;18134:68;;;;-1:-1:-1;;;18134:68:0;;;;;;;:::i;:::-;40134:9:::1;::::0;::::1;;40133:10;40125:56;;;::::0;-1:-1:-1;;;40125:56:0;;5850:2:1;40125:56:0::1;::::0;::::1;5832:21:1::0;5889:2;5869:18;;;5862:30;5928:34;5908:18;;;5901:62;-1:-1:-1;;;5979:18:1;;;5972:31;6020:19;;40125:56:0::1;5648:397:1::0;40125:56:0::1;40194:9;:16:::0;;-1:-1:-1;;40194:16:0::1;40206:4;40194:16;::::0;;40074:146::o;18595:98::-;17981:6;;-1:-1:-1;;;;;17981:6:0;4206:10;18142:23;18134:68;;;;-1:-1:-1;;;18134:68:0;;;;;;;:::i;:::-;18662:21:::1;18680:1;18662:9;:21::i;:::-;18595:98::o:0;39404:291::-;17981:6;;-1:-1:-1;;;;;17981:6:0;4206:10;18142:23;18134:68;;;;-1:-1:-1;;;18134:68:0;;;;;;;:::i;:::-;39545:3:::1;39526:9;:16;;;;;:::i;:::-;;;;;;;;;;;;;:22;;;;39586:9;39561;:22;;;;;:::i;:::-;;;;;;;;;;;;;:34;;;;39633:9;39608;:22;;;;;:::i;:::-;;;;;;;;;;;;;:34;;;;39678:7;39655:9;:20;;;;;:::i;:::-;::::0;;;::::1;::::0;;;;;::::1;::::0;;;:30;-1:-1:-1;;;;39404:291:0:o;6660:108::-;6716:13;6751:7;6744:14;;;;;:::i;39772:227::-;17981:6;;-1:-1:-1;;;;;17981:6:0;4206:10;18142:23;18134:68;;;;-1:-1:-1;;;18134:68:0;;;;;;;:::i;:::-;39894:3:::1;39874:10;:17;;;;;:::i;:::-;;;;;;;;;;;;;;:23;;;;;-1:-1:-1::0;;;;;39874:23:0::1;;;;;-1:-1:-1::0;;;;;39874:23:0::1;;;;;;39936:9;39910:10;:23;;;;;:::i;:::-;;;;;;;;;;;;;;:35;;;;;-1:-1:-1::0;;;;;39910:35:0::1;;;;;-1:-1:-1::0;;;;;39910:35:0::1;;;;;;39982:7;39958:10;:21;;;;;:::i;:::-;::::0;;;::::1;::::0;;;;;::::1;::::0;;;:31;;-1:-1:-1;;;;;39958:31:0;;;::::1;-1:-1:-1::0;;;;;;39958:31:0;;::::1;::::0;;;::::1;::::0;;-1:-1:-1;;;39772:227:0:o;11132:429::-;4206:10;11225:4;11271:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;11271:34:0;;;;;;;;;;11326:35;;;;11318:85;;;;-1:-1:-1;;;11318:85:0;;7300:2:1;11318:85:0;;;7282:21:1;7339:2;7319:18;;;7312:30;7378:34;7358:18;;;7351:62;-1:-1:-1;;;7429:18:1;;;7422:35;7474:19;;11318:85:0;7098:401:1;11318:85:0;11443:67;4206:10;11466:7;11494:15;11475:16;:34;11443:8;:67::i;:::-;-1:-1:-1;11547:4:0;;11132:429;-1:-1:-1;;;11132:429:0:o;39049:282::-;17981:6;;-1:-1:-1;;;;;17981:6:0;4206:10;18142:23;18134:68;;;;-1:-1:-1;;;18134:68:0;;;;;;;:::i;:::-;39184:3:::1;39166:8;:15;;;;;:::i;:::-;;;;;;;;;;;;;:21;;;;39224:9;39200:8;:21;;;;;:::i;:::-;;;;;;;;;;;;;:33;;;;39270:9;39246:8;:21;;;;;:::i;:::-;;;;;;;;;;;;;:33;;;;39314:7;39292:8;:19;;;;;:::i;8158:181::-:0;8244:4;8263:42;4206:10;8287:9;8298:6;8263:9;:42::i;38790:187::-;17981:6;;-1:-1:-1;;;;;17981:6:0;4206:10;18142:23;18134:68;;;;-1:-1:-1;;;18134:68:0;;;;;;;:::i;:::-;38868:19:::1;38879:7;38868:10;:19::i;:::-;38860:66;;;::::0;-1:-1:-1;;;38860:66:0;;7706:2:1;38860:66:0::1;::::0;::::1;7688:21:1::0;7745:2;7725:18;;;7718:30;7784:34;7764:18;;;7757:62;-1:-1:-1;;;7835:18:1;;;7828:32;7877:19;;38860:66:0::1;7504:398:1::0;38860:66:0::1;-1:-1:-1::0;;;;;38939:20:0::1;38962:5;38939:20:::0;;;:11:::1;:20;::::0;;;;:28;;-1:-1:-1;;38939:28:0::1;::::0;;38790:187::o;40559:114::-;-1:-1:-1;;;;;40643:20:0;40617:4;40643:20;;;:11;:20;;;;;;;;;40559:114::o;40296:148::-;17981:6;;-1:-1:-1;;;;;17981:6:0;4206:10;18142:23;18134:68;;;;-1:-1:-1;;;18134:68:0;;;;;;;:::i;:::-;40356:9:::1;::::0;::::1;;40348:56;;;::::0;-1:-1:-1;;;40348:56:0;;8109:2:1;40348:56:0::1;::::0;::::1;8091:21:1::0;8148:2;8128:18;;;8121:30;8187:34;8167:18;;;8160:62;-1:-1:-1;;;8238:18:1;;;8231:32;8280:19;;40348:56:0::1;7907:398:1::0;40348:56:0::1;40417:9;:17:::0;;-1:-1:-1;;40417:17:0::1;::::0;;40296:148::o;18860:198::-;17981:6;;-1:-1:-1;;;;;17981:6:0;4206:10;18142:23;18134:68;;;;-1:-1:-1;;;18134:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;18951:22:0;::::1;18943:73;;;::::0;-1:-1:-1;;;18943:73:0;;8512:2:1;18943:73:0::1;::::0;::::1;8494:21:1::0;8551:2;8531:18;;;8524:30;8590:34;8570:18;;;8563:62;-1:-1:-1;;;8641:18:1;;;8634:36;8687:19;;18943:73:0::1;8310:402:1::0;18943:73:0::1;19029:19;19039:8;19029:9;:19::i;15032:400::-:0;-1:-1:-1;;;;;15178:19:0;;15170:68;;;;-1:-1:-1;;;15170:68:0;;8919:2:1;15170:68:0;;;8901:21:1;8958:2;8938:18;;;8931:30;8997:34;8977:18;;;8970:62;-1:-1:-1;;;9048:18:1;;;9041:34;9092:19;;15170:68:0;8717:400:1;15170:68:0;-1:-1:-1;;;;;15259:21:0;;15251:68;;;;-1:-1:-1;;;15251:68:0;;9324:2:1;15251:68:0;;;9306:21:1;9363:2;9343:18;;;9336:30;9402:34;9382:18;;;9375:62;-1:-1:-1;;;9453:18:1;;;9446:32;9495:19;;15251:68:0;9122:398:1;15251:68:0;-1:-1:-1;;;;;15336:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;15390:32;;1361:25:1;;;15390:32:0;;1334:18:1;15390:32:0;;;;;;;15032:400;;;:::o;37851:332::-;38017:9;;;;38014:93;;;38054:36;38064:6;38072:9;38083:6;38054:9;:36::i;:::-;38045:45;;38014:93;38131:42;38147:6;38155:9;38166:6;38131:15;:42::i;:::-;37851:332;;;:::o;32595:5240::-;32723:16;;;32737:1;32723:16;;;;;;;;32673:7;;;;32723:16;32737:1;32723:16;;;;;;;;;;-1:-1:-1;32723:16:0;32695:44;;32774:4;32752:8;32761:1;32752:11;;;;;;;;:::i;:::-;;;;;;:27;-1:-1:-1;;;;;32752:27:0;;;-1:-1:-1;;;;;32752:27:0;;;;;32806:17;;;;;;;;;-1:-1:-1;;;;;32806:17:0;-1:-1:-1;;;;;32806:22:0;;:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;32792:8;32801:1;32792:11;;;;;;;;:::i;:::-;;;;;;:38;-1:-1:-1;;;;;32792:38:0;;;-1:-1:-1;;;;;32792:38:0;;;;;32859:16;32870:4;32859:10;:16::i;:::-;32858:17;:36;;;;;32880:14;32891:2;32880:10;:14::i;:::-;32879:15;32858:36;32855:4933;;;32913:11;32941:16;32969:11;;32960:6;:20;;;;:::i;:::-;33016:13;;32941:39;;-1:-1:-1;;;;;;33016:13:0;;;33000:30;;;;32997:4732;;33071:8;:21;;;;;:::i;:::-;;;;;;;;;;;;;;33060:8;:32;;;;:::i;:::-;33053:39;;;;:::i;:::-;;;33131:8;:15;;;;;:::i;:::-;;;;;;;;;;;;;;33120:8;:26;;;;:::i;:::-;33113:33;;;;:::i;:::-;;;33185:8;:21;;;;;:::i;:::-;;;;;;;;;;;;;;33174:8;:32;;;;:::i;:::-;33167:39;;;;:::i;:::-;;;33245:8;:19;;;;;:::i;:::-;;;;;;;;;;;;;;33234:8;:30;;;;:::i;:::-;33227:37;;;;:::i;:::-;;-1:-1:-1;33308:7:0;;33305:97;;33342:35;33352:4;33366;33373:3;33342:9;:35::i;:::-;33472:8;:21;;;;;:::i;:::-;;;;;;;;;;;;;;33461:8;:32;;;;:::i;:::-;33442:15;;:51;;;;;;;:::i;:::-;;;;-1:-1:-1;;33538:15:0;;:8;;:15;;;:::i;:::-;;;;;;;;;;;;;;33527:8;:26;;;;:::i;:::-;33514:9;;:39;;;;;;;:::i;:::-;;;;-1:-1:-1;;33604:21:0;;:8;;:21;;;:::i;:::-;;;;;;;;;;;;;;33593:8;:32;;;;:::i;:::-;33574:15;;:51;;;;;;;:::i;:::-;;;;-1:-1:-1;;33674:19:0;;:8;;:19;;;:::i;:::-;;;;;;;;;;;;;;33663:8;:30;;;;:::i;:::-;33646:13;;:47;;;;;;;:::i;:::-;;;;-1:-1:-1;32997:4732:0;;-1:-1:-1;32997:4732:0;;33734:13;;-1:-1:-1;;;;;33734:13:0;;;33720:28;;;;33717:4012;;33789:9;:22;;;;;:::i;:::-;;;;;;;;;;;;;;33778:8;:33;;;;:::i;:::-;33771:40;;;;:::i;:::-;;;33850:9;:16;;;;;:::i;:::-;;;;;;;;;;;;;;33839:8;:27;;;;:::i;:::-;33832:34;;;;:::i;:::-;;;33905:9;:22;;;;;:::i;:::-;;;;;;;;;;;;;;33894:8;:33;;;;:::i;:::-;33887:40;;;;:::i;:::-;;;33966:9;:20;;;;;:::i;:::-;;;;;;;;;;;;;;33955:8;:31;;;;:::i;:::-;33948:38;;;;:::i;:::-;;-1:-1:-1;34030:7:0;;34027:97;;34064:35;34074:4;34088;34095:3;34064:9;:35::i;:::-;34194:9;:22;;;;;:::i;:::-;;;;;;;;;;;;;;34183:8;:33;;;;:::i;:::-;34164:15;;:52;;;;;;;:::i;:::-;;;;-1:-1:-1;;34261:16:0;;:9;;:16;;;:::i;:::-;;;;;;;;;;;;;;34250:8;:27;;;;:::i;:::-;34237:9;;:40;;;;;;;:::i;:::-;;;;-1:-1:-1;;34328:22:0;;:9;;:22;;;:::i;:::-;;;;;;;;;;;;;;34317:8;:33;;;;:::i;:::-;34298:15;;:52;;;;;;;:::i;:::-;;;;-1:-1:-1;;34399:20:0;;:9;;:20;;;:::i;:::-;;;;;;;;;;;;;;34388:8;:31;;;;:::i;:::-;34371:13;;:48;;;;;;;:::i;:::-;;;;;;;;34460:14;34525:13;;34507:15;;34495:9;;34477:15;;:27;;;;:::i;:::-;:45;;;;:::i;:::-;:61;;;;:::i;:::-;34460:78;;34582:6;34592:1;34582:11;34579:29;;34602:6;34595:13;;;;;;;;34579:29;34649:16;34668:17;;;;;;;;;-1:-1:-1;;;;;34668:17:0;-1:-1:-1;;;;;34668:31:0;;34748:13;;34730:15;;34718:9;;34700:15;;:27;;;;:::i;:::-;:45;;;;:::i;:::-;:61;;;;:::i;:::-;34763:8;34668:104;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;34668:104:0;;;;;;;;;;;;:::i;:::-;34773:1;34668:107;;;;;;;;:::i;:::-;;;;;;;34649:126;;34831:13;;34819:8;:25;34816:2876;;35013:13;;34991:15;;34894:21;;34871:20;;34991:19;;35009:1;;34991:19;:::i;:::-;34979:9;;34961:15;;:27;;;;:::i;:::-;:49;;;;:::i;:::-;:65;;;;:::i;:::-;34944:82;;35075:59;35092:4;35107:17;;;;;;;;;-1:-1:-1;;;;;35107:17:0;35127:6;35075:8;:59::i;:::-;35175:17;;:252;;-1:-1:-1;;;35175:252:0;;:17;;;;-1:-1:-1;;;;;35175:17:0;;:39;;:252;;35243:6;;35278:1;;35308:8;;35353:4;;35387:15;;35175:252;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;35175:252:0;;;;;;;;;;;;:::i;:::-;-1:-1:-1;35476:17:0;35496:36;35520:12;35496:21;:36;:::i;:::-;35476:56;;35581:22;35624:1;35606:15;;:19;;;;:::i;:::-;35581:44;;35650:20;35731:6;35720;35706:1;35688:15;;:19;;;;:::i;:::-;:28;;35710:6;35688:28;:::i;:::-;35687:39;;;;:::i;:::-;35674:53;;:9;:53;:::i;:::-;35673:64;;;;:::i;:::-;35650:87;;35786:20;35863:6;35852;35824:15;;35842:6;35824:24;;;;:::i;:::-;35823:35;;;;:::i;:::-;35810:49;;:9;:49;:::i;:::-;35809:60;;;;:::i;:::-;35786:83;;35894:14;35959:6;35948;35926:9;;35938:6;35926:18;;;;:::i;:::-;35925:29;;;;:::i;:::-;35912:43;;:9;:43;:::i;:::-;35911:54;;;;:::i;:::-;35894:71;;35990:18;36063:6;36052;36026:13;;36042:6;36026:22;;;;:::i;:::-;36025:33;;;;:::i;:::-;36012:47;;:9;:47;:::i;:::-;36011:58;;;;:::i;:::-;35990:79;;36118:67;36135:4;36150:17;;;;;;;;;-1:-1:-1;;;;;36150:17:0;36170:14;36118:8;:67::i;:::-;36235:16;36253:14;36269;36287:17;;;;;;;;;-1:-1:-1;;;;;36287:17:0;-1:-1:-1;;;;;36287:33:0;;36328:12;36378:4;36412:14;36455:1;36485;36515:10;:23;;;;;:::i;:::-;;;;;;;;;;;;;;;-1:-1:-1;;;;;;36287:320:0;;;;;;;-1:-1:-1;;;;;13432:15:1;;;36287:320:0;;;13414:34:1;13464:18;;;13457:34;;;;13507:18;;;13500:34;;;;13550:18;;;13543:34;36515:23:0;;13593:19:1;;;13586:44;36567:15:0;13646:19:1;;;13639:35;13348:19;;36287:320:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;36234:373;;-1:-1:-1;36234:373:0;-1:-1:-1;36234:373:0;-1:-1:-1;36656:23:0;36749:20;36234:373;36749:6;:20;:::i;:::-;36731:13;;36713:15;;36701:9;;36683:15;;:27;;;;:::i;:::-;:45;;;;:::i;:::-;:61;;;;:::i;:::-;36682:88;;;;:::i;:::-;36656:114;-1:-1:-1;36822:19:0;;36819:139;;36872:60;36890:4;36897:10;:17;;;;;:::i;:::-;;;;;;;;;;;;;;;-1:-1:-1;;;;;36897:17:0;36916:15;36872:9;:60::i;:::-;37006:10;:23;;;;;:::i;:::-;;;;;;;;;;;;;;;-1:-1:-1;;;;;37006:23:0;;37042:12;;37006:53;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37084:10;:17;;;;;:::i;:::-;;;;;;;;;;;;;;;-1:-1:-1;;;;;37084:17:0;;37114:6;;37084:41;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37150:10;:21;;;;;:::i;:::-;;;;;;;;;;;;;;;-1:-1:-1;;;;;37150:21:0;;37184:10;;37150:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37317:1;37303:10;37288:12;37279:6;37264:12;:21;;;;:::i;:::-;:36;;;;:::i;:::-;:49;;;;:::i;:::-;37251:63;;:9;:63;:::i;:::-;:67;37248:231;;;37349:10;:23;;;;;:::i;:::-;;;;;;;;;;;;;;;-1:-1:-1;;;;;37349:23:0;37437:10;37422:12;37398:21;37413:6;37398:12;:21;:::i;:::-;:36;;;;:::i;:::-;:49;;;;:::i;:::-;37385:63;;:9;:63;:::i;:::-;37349:104;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37248:231;-1:-1:-1;;37545:1:0;37527:15;:19;;;37571:9;:13;;;37609:15;:19;;;37653:13;:17;-1:-1:-1;;;;;;;;;;34816:2876:0;33750:3979;;33717:4012;37761:13;37771:3;37761:13;;:::i;:::-;;;32896:4892;;32855:4933;-1:-1:-1;37819:6:0;;32595:5240;-1:-1:-1;;;32595:5240:0:o;19070:182::-;19148:6;;;-1:-1:-1;;;;;19167:17:0;;;-1:-1:-1;;;;;;19167:17:0;;;;;;;19202:40;;19148:6;;;19167:17;19148:6;;19202:40;;19129:16;;19202:40;19116:136;19070:182;:::o;12083:773::-;-1:-1:-1;;;;;12233:20:0;;12225:70;;;;-1:-1:-1;;;12225:70:0;;14408:2:1;12225:70:0;;;14390:21:1;14447:2;14427:18;;;14420:30;14486:34;14466:18;;;14459:62;-1:-1:-1;;;14537:18:1;;;14530:35;14582:19;;12225:70:0;14206:401:1;12225:70:0;-1:-1:-1;;;;;12316:23:0;;12308:71;;;;-1:-1:-1;;;12308:71:0;;14814:2:1;12308:71:0;;;14796:21:1;14853:2;14833:18;;;14826:30;14892:34;14872:18;;;14865:62;-1:-1:-1;;;14943:18:1;;;14936:33;14986:19;;12308:71:0;14612:399:1;12308:71:0;-1:-1:-1;;;;;12484:17:0;;12460:21;12484:17;;;;;;;;;;;12522:23;;;;12514:74;;;;-1:-1:-1;;;12514:74:0;;15218:2:1;12514:74:0;;;15200:21:1;15257:2;15237:18;;;15230:30;15296:34;15276:18;;;15269:62;-1:-1:-1;;;15347:18:1;;;15340:36;15393:19;;12514:74:0;15016:402:1;12514:74:0;-1:-1:-1;;;;;12628:17:0;;;:9;:17;;;;;;;;;;;12648:22;;;12628:42;;12696:20;;;;;;;;:30;;12664:6;;12628:9;12696:30;;12664:6;;12696:30;:::i;:::-;;;;;;;;12765:9;-1:-1:-1;;;;;12748:35:0;12757:6;-1:-1:-1;;;;;12748:35:0;;12776:6;12748:35;;;;1361:25:1;;1349:2;1334:18;;1215:177;12748:35:0;;;;;;;;12212:644;12083:773;;;:::o;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:315;771:6;779;832:2;820:9;811:7;807:23;803:32;800:52;;;848:1;845;838:12;800:52;887:9;874:23;906:31;931:5;906:31;:::i;:::-;956:5;1008:2;993:18;;;;980:32;;-1:-1:-1;;;703:315:1:o;1397:456::-;1474:6;1482;1490;1543:2;1531:9;1522:7;1518:23;1514:32;1511:52;;;1559:1;1556;1549:12;1511:52;1598:9;1585:23;1617:31;1642:5;1617:31;:::i;:::-;1667:5;-1:-1:-1;1724:2:1;1709:18;;1696:32;1737:33;1696:32;1737:33;:::i;:::-;1397:456;;1789:7;;-1:-1:-1;;;1843:2:1;1828:18;;;;1815:32;;1397:456::o;2047:247::-;2106:6;2159:2;2147:9;2138:7;2134:23;2130:32;2127:52;;;2175:1;2172;2165:12;2127:52;2214:9;2201:23;2233:31;2258:5;2233:31;:::i;2299:385::-;2385:6;2393;2401;2409;2462:3;2450:9;2441:7;2437:23;2433:33;2430:53;;;2479:1;2476;2469:12;2430:53;-1:-1:-1;;2502:23:1;;;2572:2;2557:18;;2544:32;;-1:-1:-1;2623:2:1;2608:18;;2595:32;;2674:2;2659:18;2646:32;;-1:-1:-1;2299:385:1;-1:-1:-1;2299:385:1:o;2897:529::-;2974:6;2982;2990;3043:2;3031:9;3022:7;3018:23;3014:32;3011:52;;;3059:1;3056;3049:12;3011:52;3098:9;3085:23;3117:31;3142:5;3117:31;:::i;:::-;3167:5;-1:-1:-1;3224:2:1;3209:18;;3196:32;3237:33;3196:32;3237:33;:::i;:::-;3289:7;-1:-1:-1;3348:2:1;3333:18;;3320:32;3361:33;3320:32;3361:33;:::i;:::-;3413:7;3403:17;;;2897:529;;;;;:::o;3431:388::-;3499:6;3507;3560:2;3548:9;3539:7;3535:23;3531:32;3528:52;;;3576:1;3573;3566:12;3528:52;3615:9;3602:23;3634:31;3659:5;3634:31;:::i;:::-;3684:5;-1:-1:-1;3741:2:1;3726:18;;3713:32;3754:33;3713:32;3754:33;:::i;:::-;3806:7;3796:17;;;3431:388;;;;;:::o;3824:380::-;3903:1;3899:12;;;;3946;;;3967:61;;4021:4;4013:6;4009:17;3999:27;;3967:61;4074:2;4066:6;4063:14;4043:18;4040:38;4037:161;;4120:10;4115:3;4111:20;4108:1;4101:31;4155:4;4152:1;4145:15;4183:4;4180:1;4173:15;4037:161;;3824:380;;;:::o;4618:356::-;4820:2;4802:21;;;4839:18;;;4832:30;4898:34;4893:2;4878:18;;4871:62;4965:2;4950:18;;4618:356::o;4979:127::-;5040:10;5035:3;5031:20;5028:1;5021:31;5071:4;5068:1;5061:15;5095:4;5092:1;5085:15;5111:125;5176:9;;;5197:10;;;5194:36;;;5210:18;;:::i;6050:253::-;-1:-1:-1;;;6252:18:1;;6295:1;6286:11;;6050:253::o;6308:259::-;-1:-1:-1;;;6510:24:1;;6559:1;6550:11;;6308:259::o;6572:::-;-1:-1:-1;;;6774:24:1;;6823:1;6814:11;;6572:259::o;6836:257::-;-1:-1:-1;;;7038:22:1;;7085:1;7076:11;;6836:257::o;9525:127::-;9586:10;9581:3;9577:20;9574:1;9567:31;9617:4;9614:1;9607:15;9641:4;9638:1;9631:15;9657:127;9718:10;9713:3;9709:20;9706:1;9699:31;9749:4;9746:1;9739:15;9773:4;9770:1;9763:15;9789:251;9859:6;9912:2;9900:9;9891:7;9887:23;9883:32;9880:52;;;9928:1;9925;9918:12;9880:52;9960:9;9954:16;9979:31;10004:5;9979:31;:::i;10045:217::-;10085:1;10111;10101:132;;10155:10;10150:3;10146:20;10143:1;10136:31;10190:4;10187:1;10180:15;10218:4;10215:1;10208:15;10101:132;-1:-1:-1;10247:9:1;;10045:217::o;10267:168::-;10340:9;;;10371;;10388:15;;;10382:22;;10368:37;10358:71;;10409:18;;:::i;10440:461::-;10493:3;10531:5;10525:12;10558:6;10553:3;10546:19;10584:4;10613:2;10608:3;10604:12;10597:19;;10650:2;10643:5;10639:14;10671:1;10681:195;10695:6;10692:1;10689:13;10681:195;;;10760:13;;-1:-1:-1;;;;;10756:39:1;10744:52;;10816:12;;;;10851:15;;;;10792:1;10710:9;10681:195;;;-1:-1:-1;10892:3:1;;10440:461;-1:-1:-1;;;;;10440:461:1:o;10906:332::-;11113:6;11102:9;11095:25;11156:2;11151;11140:9;11136:18;11129:30;11076:4;11176:56;11228:2;11217:9;11213:18;11205:6;11176:56;:::i;:::-;11168:64;10906:332;-1:-1:-1;;;;10906:332:1:o;11243:1105::-;11338:6;11369:2;11412;11400:9;11391:7;11387:23;11383:32;11380:52;;;11428:1;11425;11418:12;11380:52;11461:9;11455:16;11490:18;11531:2;11523:6;11520:14;11517:34;;;11547:1;11544;11537:12;11517:34;11585:6;11574:9;11570:22;11560:32;;11630:7;11623:4;11619:2;11615:13;11611:27;11601:55;;11652:1;11649;11642:12;11601:55;11681:2;11675:9;11703:2;11699;11696:10;11693:36;;;11709:18;;:::i;:::-;11755:2;11752:1;11748:10;11787:2;11781:9;11850:2;11846:7;11841:2;11837;11833:11;11829:25;11821:6;11817:38;11905:6;11893:10;11890:22;11885:2;11873:10;11870:18;11867:46;11864:72;;;11916:18;;:::i;:::-;11952:2;11945:22;12002:18;;;12036:15;;;;-1:-1:-1;12078:11:1;;;12074:20;;;12106:19;;;12103:39;;;12138:1;12135;12128:12;12103:39;12162:11;;;;12182:135;12198:6;12193:3;12190:15;12182:135;;;12264:10;;12252:23;;12215:12;;;;12295;;;;12182:135;;;12336:6;11243:1105;-1:-1:-1;;;;;;;;11243:1105:1:o;12353:582::-;12652:6;12641:9;12634:25;12695:6;12690:2;12679:9;12675:18;12668:34;12738:3;12733:2;12722:9;12718:18;12711:31;12615:4;12759:57;12811:3;12800:9;12796:19;12788:6;12759:57;:::i;:::-;-1:-1:-1;;;;;12852:32:1;;;;12847:2;12832:18;;12825:60;-1:-1:-1;12916:3:1;12901:19;12894:35;12751:65;12353:582;-1:-1:-1;;;12353:582:1:o;12940:128::-;13007:9;;;13028:11;;;13025:37;;;13042:18;;:::i;13685:306::-;13773:6;13781;13789;13842:2;13830:9;13821:7;13817:23;13813:32;13810:52;;;13858:1;13855;13848:12;13810:52;13887:9;13881:16;13871:26;;13937:2;13926:9;13922:18;13916:25;13906:35;;13981:2;13970:9;13966:18;13960:25;13950:35;;13685:306;;;;;:::o
Swarm Source
ipfs://94fc25f9aaaca7479ab46ace8b8f97fe3a94c4d82881c8bf7539930a66c560d0
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.