Feature Tip: Add private address tag to any address under My Name Tag !
More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 26 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Remove Limits | 17885243 | 455 days ago | IN | 0 ETH | 0.00151489 | ||||
Approve | 17885243 | 455 days ago | IN | 0 ETH | 0.00256599 | ||||
Approve | 17885243 | 455 days ago | IN | 0 ETH | 0.00261262 | ||||
Update Sell Fees | 17885242 | 455 days ago | IN | 0 ETH | 0.01983627 | ||||
Approve | 17885241 | 455 days ago | IN | 0 ETH | 0.00232467 | ||||
Approve | 17885241 | 455 days ago | IN | 0 ETH | 0.00241786 | ||||
Approve | 17885241 | 455 days ago | IN | 0 ETH | 0.00246448 | ||||
Approve | 17885241 | 455 days ago | IN | 0 ETH | 0.00279087 | ||||
Approve | 17885241 | 455 days ago | IN | 0 ETH | 0.00279087 | ||||
Approve | 17885241 | 455 days ago | IN | 0 ETH | 0.00279087 | ||||
Enable Trading | 17885240 | 455 days ago | IN | 0 ETH | 0.00127012 | ||||
Approve | 17885229 | 455 days ago | IN | 0 ETH | 0.00112287 | ||||
Approve | 17885228 | 455 days ago | IN | 0 ETH | 0.0011309 | ||||
Approve | 17885227 | 455 days ago | IN | 0 ETH | 0.00111248 | ||||
Approve | 17885226 | 455 days ago | IN | 0 ETH | 0.00112337 | ||||
Approve | 17885226 | 455 days ago | IN | 0 ETH | 0.00112337 | ||||
Approve | 17885225 | 455 days ago | IN | 0 ETH | 0.00104568 | ||||
Approve | 17885118 | 455 days ago | IN | 0 ETH | 0.00197083 | ||||
Approve | 17885068 | 455 days ago | IN | 0 ETH | 0.00168413 | ||||
Approve | 17885020 | 455 days ago | IN | 0 ETH | 0.00082498 | ||||
Approve | 17885019 | 455 days ago | IN | 0 ETH | 0.00073363 | ||||
Approve | 17885018 | 455 days ago | IN | 0 ETH | 0.00071333 | ||||
Approve | 17885000 | 455 days ago | IN | 0 ETH | 0.000791 | ||||
Approve | 17884132 | 456 days ago | IN | 0 ETH | 0.00094289 | ||||
Approve | 17884126 | 456 days ago | IN | 0 ETH | 0.00082678 |
Loading...
Loading
Contract Name:
Zeal
Compiler Version
v0.8.10+commit.fc410830
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-08-10 */ /* https://t.me/TheZealPortal */ // SPDX-License-Identifier: MIT pragma solidity =0.8.10 >=0.8.10 >=0.8.0 <0.9.0; pragma experimental ABIEncoderV2; /** * @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; } } ////// lib/openzeppelin-contracts/contracts/access/Ownable.sol // OpenZeppelin Contracts v4.4.0 (access/Ownable.sol) /* pragma solidity ^0.8.0; */ /* import "../utils/Context.sol"; */ /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } ////// lib/openzeppelin-contracts/contracts/token/ERC20/IERC20.sol // OpenZeppelin Contracts v4.4.0 (token/ERC20/IERC20.sol) /* pragma solidity ^0.8.0; */ /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address sender, address recipient, uint256 amount ) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } ////// lib/openzeppelin-contracts/contracts/token/ERC20/extensions/IERC20Metadata.sol // OpenZeppelin Contracts v4.4.0 (token/ERC20/extensions/IERC20Metadata.sol) /* pragma solidity ^0.8.0; */ /* import "../IERC20.sol"; */ /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } ////// lib/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol // OpenZeppelin Contracts v4.4.0 (token/ERC20/ERC20.sol) /* pragma solidity ^0.8.0; */ /* import "./IERC20.sol"; */ /* import "./extensions/IERC20Metadata.sol"; */ /* import "../../utils/Context.sol"; */ /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom( address sender, address recipient, uint256 amount ) public virtual override returns (bool) { _transfer(sender, recipient, amount); uint256 currentAllowance = _allowances[sender][_msgSender()]; require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance"); unchecked { _approve(sender, _msgSender(), currentAllowance - amount); } return true; } /** * @dev 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 {} } ////// lib/openzeppelin-contracts/contracts/utils/math/SafeMath.sol // OpenZeppelin Contracts v4.4.0 (utils/math/SafeMath.sol) /* pragma solidity ^0.8.0; */ // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } } /* pragma solidity 0.8.10; */ /* pragma experimental ABIEncoderV2; */ interface IUniswapV2Factory { event PairCreated( address indexed token0, address indexed token1, address pair, uint256 ); 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(uint256) external view returns (address pair); function allPairsLength() external view returns (uint256); function createPair(address tokenA, address tokenB) external returns (address pair); function setFeeTo(address) external; function setFeeToSetter(address) external; } /* pragma solidity 0.8.10; */ /* pragma experimental ABIEncoderV2; */ interface IUniswapV2Pair { event Approval( address indexed owner, address indexed spender, uint256 value ); event Transfer(address indexed from, address indexed to, uint256 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 (uint256); function balanceOf(address owner) external view returns (uint256); function allowance(address owner, address spender) external view returns (uint256); function approve(address spender, uint256 value) external returns (bool); function transfer(address to, uint256 value) external returns (bool); function transferFrom( address from, address to, uint256 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 (uint256); function permit( address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) external; event Mint(address indexed sender, uint256 amount0, uint256 amount1); event Burn( address indexed sender, uint256 amount0, uint256 amount1, address indexed to ); event Swap( address indexed sender, uint256 amount0In, uint256 amount1In, uint256 amount0Out, uint256 amount1Out, address indexed to ); event Sync(uint112 reserve0, uint112 reserve1); function MINIMUM_LIQUIDITY() external pure returns (uint256); 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 (uint256); function price1CumulativeLast() external view returns (uint256); function kLast() external view returns (uint256); function mint(address to) external returns (uint256 liquidity); function burn(address to) external returns (uint256 amount0, uint256 amount1); function swap( uint256 amount0Out, uint256 amount1Out, address to, bytes calldata data ) external; function skim(address to) external; function sync() external; function initialize(address, address) external; } /* pragma solidity 0.8.10; */ /* pragma experimental ABIEncoderV2; */ interface IUniswapV2Router02 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint256 amountADesired, uint256 amountBDesired, uint256 amountAMin, uint256 amountBMin, address to, uint256 deadline ) external returns ( uint256 amountA, uint256 amountB, uint256 liquidity ); function addLiquidityETH( address token, uint256 amountTokenDesired, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline ) external payable returns ( uint256 amountToken, uint256 amountETH, uint256 liquidity ); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; } /* pragma solidity >=0.8.10; */ /* import {IUniswapV2Router02} from "./IUniswapV2Router02.sol"; */ /* import {IUniswapV2Factory} from "./IUniswapV2Factory.sol"; */ /* import {IUniswapV2Pair} from "./IUniswapV2Pair.sol"; */ /* import {IERC20} from "lib/openzeppelin-contracts/contracts/token/ERC20/IERC20.sol"; */ /* import {ERC20} from "lib/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol"; */ /* import {Ownable} from "lib/openzeppelin-contracts/contracts/access/Ownable.sol"; */ /* import {SafeMath} from "lib/openzeppelin-contracts/contracts/utils/math/SafeMath.sol"; */ contract Zeal is ERC20, Ownable { using SafeMath for uint256; IUniswapV2Router02 public immutable uniswapV2Router; address public immutable uniswapV2Pair; address public constant deadAddress = address(0xdead); bool private swapping; address public developmentWallet; address public marketingWallet; address public devWallet; uint256 public maxTransactionAmount; uint256 public swapTokensAtAmount; uint256 public maxWallet; bool public limitsInEffect = true; bool public tradingActive = false; bool public swapEnabled = true; // Anti-bot and anti-whale mappings and variables mapping(address => uint256) private _holderLastTransferTimestamp; // to hold last Transfers temporarily during launch bool public transferDelayEnabled = true; uint256 public buyTotalFees; uint256 public buyDevelopmentFee; uint256 public buyMarketingFee; uint256 public buyLiquidityFee; uint256 public buyDevFee; uint256 public sellTotalFees; uint256 public sellDevelopmentFee; uint256 public sellMarketingFee; uint256 public sellLiquidityFee; uint256 public sellDevFee; uint256 public tokensForDevelopment; uint256 public tokensForMarketing; uint256 public tokensForLiquidity; uint256 public tokensForDev; /******************/ // exlcude from fees and max transaction amount mapping(address => bool) private _isExcludedFromFees; mapping(address => bool) public _isExcludedMaxTransactionAmount; // store addresses that a automatic market maker pairs. Any transfer *to* these addresses // could be subject to a maximum transfer amount mapping(address => bool) public automatedMarketMakerPairs; event UpdateUniswapV2Router( address indexed newAddress, address indexed oldAddress ); event ExcludeFromFees(address indexed account, bool isExcluded); event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value); event SwapAndLiquify( uint256 tokensSwapped, uint256 ethReceived, uint256 tokensIntoLiquidity ); constructor() ERC20("Zeal", "ZealBet") { IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02( 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D ); excludeFromMaxTransaction(address(_uniswapV2Router), true); uniswapV2Router = _uniswapV2Router; uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()) .createPair(address(this), _uniswapV2Router.WETH()); excludeFromMaxTransaction(address(uniswapV2Pair), true); _setAutomatedMarketMakerPair(address(uniswapV2Pair), true); uint256 _buyDevelopmentFee = 0; uint256 _buyMarketingFee = 2; uint256 _buyLiquidityFee = 0; uint256 _buyDevFee = 0; uint256 _sellDevelopmentFee = 0; uint256 _sellMarketingFee = 2; uint256 _sellLiquidityFee = 0; uint256 _sellDevFee = 0; uint256 totalSupply = 1000000000 * 1e18; maxTransactionAmount = 20000000 * 1e18; // 2% from total supply maxTransactionAmountTxn maxWallet = 20000000 * 1e18; // 2% from total supply maxWallet swapTokensAtAmount = (totalSupply * 10) / 10000; // 0.1% swap wallet buyDevelopmentFee = _buyDevelopmentFee; buyMarketingFee = _buyMarketingFee; buyLiquidityFee = _buyLiquidityFee; buyDevFee = _buyDevFee; buyTotalFees = buyDevelopmentFee + buyMarketingFee + buyLiquidityFee + buyDevFee; sellDevelopmentFee = _sellDevelopmentFee; sellMarketingFee = _sellMarketingFee; sellLiquidityFee = _sellLiquidityFee; sellDevFee = _sellDevFee; sellTotalFees = sellDevelopmentFee + sellMarketingFee + sellLiquidityFee + sellDevFee; developmentWallet = address(0x752469744d1f0e8403D7923210D5a5c95b38bADc); // set as development wallet marketingWallet = address(0xd9C077560bB5Bf90f959Fbec28DCa2f5e338CE89); // set as marketing wallet devWallet = address(0x9796968D910847F33f53D82c476C1f880Ad684Ec); // set as dev wallet // exclude from paying fees or having max transaction amount excludeFromFees(owner(), true); excludeFromFees(address(this), true); excludeFromFees(address(0xdead), true); excludeFromMaxTransaction(owner(), true); excludeFromMaxTransaction(address(this), true); excludeFromMaxTransaction(address(0xdead), true); /* _mint is an internal function in ERC20.sol that is only called here, and CANNOT be called ever again */ _mint(msg.sender, totalSupply); } receive() external payable {} // once enabled, can never be turned off function enableTrading() external onlyOwner { tradingActive = true; swapEnabled = true; } // remove limits after token is stable function removeLimits() external onlyOwner returns (bool) { limitsInEffect = false; return true; } // disable Transfer delay - cannot be reenabled function disableTransferDelay() external onlyOwner returns (bool) { transferDelayEnabled = false; return true; } // change the minimum amount of tokens to sell from fees function updateSwapTokensAtAmount(uint256 newAmount) external onlyOwner returns (bool) { require( newAmount >= (totalSupply() * 1) / 100000, "Swap amount cannot be lower than 0.001% total supply." ); require( newAmount <= (totalSupply() * 5) / 1000, "Swap amount cannot be higher than 0.5% total supply." ); swapTokensAtAmount = newAmount; return true; } function updateMaxTxnAmount(uint256 newNum) external onlyOwner { require( newNum >= ((totalSupply() * 5) / 1000) / 1e18, "Cannot set maxTransactionAmount lower than 0.5%" ); maxTransactionAmount = newNum * (10**18); } function updateMaxWalletAmount(uint256 newNum) external onlyOwner { require( newNum >= ((totalSupply() * 5) / 1000) / 1e18, "Cannot set maxWallet lower than 0.5%" ); maxWallet = newNum * (10**18); } function excludeFromMaxTransaction(address updAds, bool isEx) public onlyOwner { _isExcludedMaxTransactionAmount[updAds] = isEx; } // only use to disable contract sales if absolutely necessary (emergency use only) function updateSwapEnabled(bool enabled) external onlyOwner { swapEnabled = enabled; } function updateBuyFees( uint256 _developmentFee, uint256 _marketingFee, uint256 _liquidityFee, uint256 _devFee ) external onlyOwner { require((_developmentFee + _marketingFee + _liquidityFee ) <= 10, "Max BuyFee 10%"); buyDevelopmentFee = _developmentFee; buyMarketingFee = _marketingFee; buyLiquidityFee = _liquidityFee; buyDevFee = _devFee; buyTotalFees = buyDevelopmentFee + buyMarketingFee + buyLiquidityFee + buyDevFee; } function updateSellFees( uint256 _developmentFee, uint256 _marketingFee, uint256 _liquidityFee, uint256 _devFee ) external onlyOwner { require((_developmentFee + _marketingFee + _liquidityFee ) <= 10, "Max SellFee 10%"); sellDevelopmentFee = _developmentFee; sellMarketingFee = _marketingFee; sellLiquidityFee = _liquidityFee; sellDevFee = _devFee; sellTotalFees = sellDevelopmentFee + sellMarketingFee + sellLiquidityFee + sellDevFee; } function excludeFromFees(address account, bool excluded) public onlyOwner { _isExcludedFromFees[account] = excluded; emit ExcludeFromFees(account, excluded); } function setAutomatedMarketMakerPair(address pair, bool value) public onlyOwner { require( pair != uniswapV2Pair, "The pair cannot be removed from automatedMarketMakerPairs" ); _setAutomatedMarketMakerPair(pair, value); } function _setAutomatedMarketMakerPair(address pair, bool value) private { automatedMarketMakerPairs[pair] = value; emit SetAutomatedMarketMakerPair(pair, value); } function isExcludedFromFees(address account) public view returns (bool) { return _isExcludedFromFees[account]; } function _transfer( address from, address to, uint256 amount ) internal override { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); if (amount == 0) { super._transfer(from, to, 0); return; } if (limitsInEffect) { if ( from != owner() && to != owner() && to != address(0) && to != address(0xdead) && !swapping ) { if (!tradingActive) { require( _isExcludedFromFees[from] || _isExcludedFromFees[to], "Trading is not active." ); } // at launch if the transfer delay is enabled, ensure the block timestamps for purchasers is set -- during launch. if (transferDelayEnabled) { if ( to != owner() && to != address(uniswapV2Router) && to != address(uniswapV2Pair) ) { require( _holderLastTransferTimestamp[tx.origin] < block.number, "_transfer:: Transfer Delay enabled. Only one purchase per block allowed." ); _holderLastTransferTimestamp[tx.origin] = block.number; } } //when buy if ( automatedMarketMakerPairs[from] && !_isExcludedMaxTransactionAmount[to] ) { require( amount <= maxTransactionAmount, "Buy transfer amount exceeds the maxTransactionAmount." ); require( amount + balanceOf(to) <= maxWallet, "Max wallet exceeded" ); } //when sell else if ( automatedMarketMakerPairs[to] && !_isExcludedMaxTransactionAmount[from] ) { require( amount <= maxTransactionAmount, "Sell transfer amount exceeds the maxTransactionAmount." ); } else if (!_isExcludedMaxTransactionAmount[to]) { require( amount + balanceOf(to) <= maxWallet, "Max wallet exceeded" ); } } } uint256 contractTokenBalance = balanceOf(address(this)); bool canSwap = contractTokenBalance >= swapTokensAtAmount; if ( canSwap && swapEnabled && !swapping && !automatedMarketMakerPairs[from] && !_isExcludedFromFees[from] && !_isExcludedFromFees[to] ) { swapping = true; swapBack(); swapping = false; } bool takeFee = !swapping; // if any account belongs to _isExcludedFromFee account then remove the fee if (_isExcludedFromFees[from] || _isExcludedFromFees[to]) { takeFee = false; } uint256 fees = 0; // only take fees on buys/sells, do not take on wallet transfers if (takeFee) { // on sell if (automatedMarketMakerPairs[to] && sellTotalFees > 0) { fees = amount.mul(sellTotalFees).div(100); tokensForDevelopment += (fees * sellDevelopmentFee) / sellTotalFees; tokensForLiquidity += (fees * sellLiquidityFee) / sellTotalFees; tokensForDev += (fees * sellDevFee) / sellTotalFees; tokensForMarketing += (fees * sellMarketingFee) / sellTotalFees; } // on buy else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) { fees = amount.mul(buyTotalFees).div(100); tokensForDevelopment += (fees * buyDevelopmentFee) / buyTotalFees; tokensForLiquidity += (fees * buyLiquidityFee) / buyTotalFees; tokensForDev += (fees * buyDevFee) / buyTotalFees; tokensForMarketing += (fees * buyMarketingFee) / buyTotalFees; } if (fees > 0) { super._transfer(from, address(this), fees); } amount -= fees; } super._transfer(from, to, amount); } function swapTokensForEth(uint256 tokenAmount) private { // generate the uniswap pair path of token -> weth address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapV2Router.WETH(); _approve(address(this), address(uniswapV2Router), tokenAmount); // make the swap uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, // accept any amount of ETH path, address(this), block.timestamp ); } function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private { // approve token transfer to cover all possible scenarios _approve(address(this), address(uniswapV2Router), tokenAmount); // add the liquidity uniswapV2Router.addLiquidityETH{value: ethAmount}( address(this), tokenAmount, 0, // slippage is unavoidable 0, // slippage is unavoidable devWallet, block.timestamp ); } function swapBack() private { uint256 contractBalance = balanceOf(address(this)); uint256 totalTokensToSwap = tokensForDevelopment + tokensForLiquidity + tokensForMarketing + tokensForDev; bool success; if (contractBalance == 0 || totalTokensToSwap == 0) { return; } if (contractBalance > swapTokensAtAmount * 20) { contractBalance = swapTokensAtAmount * 20; } // Halve the amount of liquidity tokens uint256 liquidityTokens = (contractBalance * tokensForLiquidity) / totalTokensToSwap / 2; uint256 amountToSwapForETH = contractBalance.sub(liquidityTokens); uint256 initialETHBalance = address(this).balance; swapTokensForEth(amountToSwapForETH); uint256 ethBalance = address(this).balance.sub(initialETHBalance); uint256 ethForDevelopment = ethBalance.mul(tokensForDevelopment).div(totalTokensToSwap); uint256 ethForMarketing = ethBalance.mul(tokensForMarketing).div(totalTokensToSwap); uint256 ethForDev = ethBalance.mul(tokensForDev).div(totalTokensToSwap); uint256 ethForLiquidity = ethBalance - ethForDevelopment - ethForMarketing - ethForDev; tokensForLiquidity = 0; tokensForDevelopment = 0; tokensForMarketing = 0; tokensForDev = 0; (success, ) = address(devWallet).call{value: ethForDev}(""); (success, ) = address(marketingWallet).call{value: ethForMarketing}(""); if (liquidityTokens > 0 && ethForLiquidity > 0) { addLiquidity(liquidityTokens, ethForLiquidity); emit SwapAndLiquify( amountToSwapForETH, ethForLiquidity, tokensForLiquidity ); } (success, ) = address(developmentWallet).call{value: address(this).balance}(""); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyDevelopmentFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":"devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"developmentWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"disableTransferDelay","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"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":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellDevelopmentFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForDev","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForDevelopment","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForMarketing","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transferDelayEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_developmentFee","type":"uint256"},{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_developmentFee","type":"uint256"},{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60c0604052600c805462ffffff191662010001179055600e805460ff191660011790553480156200002f57600080fd5b5060408051808201825260048152631699585b60e21b6020808301918252835180850190945260078452661699585b10995d60ca1b9084015281519192916200007b91600391620006c3565b50805162000091906004906020840190620006c3565b505050620000ae620000a86200041060201b60201c565b62000414565b737a250d5630b4cf539739df2c5dacb4c659f2488d620000d081600162000466565b6001600160a01b03811660808190526040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa1580156200011b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000141919062000769565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200018f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001b5919062000769565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af115801562000203573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000229919062000769565b6001600160a01b031660a08190526200024490600162000466565b60a05162000254906001620004e0565b6a108b2a2c280290940000006009819055600b55600060028180808381806b033b2e3c9fd0803ce80000006127106200028f82600a620007b1565b6200029b9190620007d3565b600a5560108990556011889055601287905560138690558587620002c08a8c620007f6565b620002cc9190620007f6565b620002d89190620007f6565b600f5560158590556016849055601783905560188290558183620002fd8688620007f6565b620003099190620007f6565b620003159190620007f6565b601455600680546001600160a01b031990811673752469744d1f0e8403d7923210d5a5c95b38badc1790915560078054821673d9c077560bb5bf90f959fbec28dca2f5e338ce8917905560088054909116739796968d910847f33f53d82c476c1f880ad684ec1790556200039d620003956005546001600160a01b031690565b600162000534565b620003aa30600162000534565b620003b961dead600162000534565b620003d8620003d06005546001600160a01b031690565b600162000466565b620003e530600162000466565b620003f461dead600162000466565b620004003382620005de565b505050505050505050506200084e565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6005546001600160a01b03163314620004b55760405162461bcd60e51b815260206004820181905260248201526000805160206200331e83398151915260448201526064015b60405180910390fd5b6001600160a01b03919091166000908152601e60205260409020805460ff1916911515919091179055565b6001600160a01b0382166000818152601f6020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6005546001600160a01b031633146200057f5760405162461bcd60e51b815260206004820181905260248201526000805160206200331e8339815191526044820152606401620004ac565b6001600160a01b0382166000818152601d6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b038216620006365760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401620004ac565b80600260008282546200064a9190620007f6565b90915550506001600160a01b0382166000908152602081905260408120805483929062000679908490620007f6565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b828054620006d19062000811565b90600052602060002090601f016020900481019282620006f5576000855562000740565b82601f106200071057805160ff191683800117855562000740565b8280016001018555821562000740579182015b828111156200074057825182559160200191906001019062000723565b506200074e92915062000752565b5090565b5b808211156200074e576000815560010162000753565b6000602082840312156200077c57600080fd5b81516001600160a01b03811681146200079457600080fd5b9392505050565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615620007ce57620007ce6200079b565b500290565b600082620007f157634e487b7160e01b600052601260045260246000fd5b500490565b600082198211156200080c576200080c6200079b565b500190565b600181811c908216806200082657607f821691505b602082108114156200084857634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a051612a72620008ac6000396000818161057901528181610f0501526117a001526000818161041801528181611762015281816123c50152818161247e015281816124ba01528181612534015261259c0152612a726000f3fe60806040526004361061036f5760003560e01c806392136913116101c6578063c18bc195116100f7578063e7ad9fcd11610095578063f11a24d31161006f578063f11a24d3146109ec578063f2fde38b14610a02578063f637434214610a22578063f8b45b0514610a3857600080fd5b8063e7ad9fcd146109a1578063e884f260146109c1578063ef8700e5146109d657600080fd5b8063d257b34f116100d1578063d257b34f1461090f578063d85ba0631461092f578063dd62ed3e14610945578063e2f456051461098b57600080fd5b8063c18bc195146108bf578063c876d0b9146108df578063c8c8ebe4146108f957600080fd5b8063a457c2d711610164578063b62496f51161013e578063b62496f514610830578063bbc0c74214610860578063c02466681461087f578063c04a54141461089f57600080fd5b8063a457c2d7146107da578063a9059cbb146107fa578063b20414111461081a57600080fd5b80639a7a23d6116101a05780639a7a23d6146107785780639c3b4fdc146107985780639fccce32146107ae578063a0d82dc5146107c457600080fd5b8063921369131461072d578063924de9b71461074357806395d89b411461076357600080fd5b806349bd5a5e116102a0578063751039fc1161023e5780637bce5a04116102185780637bce5a04146106c45780638a8c523c146106da5780638da5cb5b146106ef5780638ea5220f1461070d57600080fd5b8063751039fc1461066f5780637571336a1461068457806375f0a874146106a457600080fd5b80636a486a8e1161027a5780636a486a8e146105ee5780636ddd17131461060457806370a0823114610624578063715018a61461065a57600080fd5b806349bd5a5e146105675780634a62bb651461059b5780634fbee193146105b557600080fd5b80631f3fed8f1161030d57806327c8f835116102e757806327c8f835146104f55780632e6ed7ef1461050b578063313ce5671461052b578063395093511461054757600080fd5b80631f3fed8f1461049d578063203e727e146104b357806323b872dd146104d557600080fd5b80631694505e116103495780631694505e1461040657806318160ddd1461045257806318a94cf1146104715780631a8145bb1461048757600080fd5b806306fdde031461037b578063095ea7b3146103a657806310d5de53146103d657600080fd5b3661037657005b600080fd5b34801561038757600080fd5b50610390610a4e565b60405161039d9190612614565b60405180910390f35b3480156103b257600080fd5b506103c66103c136600461267e565b610ae0565b604051901515815260200161039d565b3480156103e257600080fd5b506103c66103f13660046126aa565b601e6020526000908152604090205460ff1681565b34801561041257600080fd5b5061043a7f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b03909116815260200161039d565b34801561045e57600080fd5b506002545b60405190815260200161039d565b34801561047d57600080fd5b5061046360155481565b34801561049357600080fd5b50610463601b5481565b3480156104a957600080fd5b50610463601a5481565b3480156104bf57600080fd5b506104d36104ce3660046126c7565b610af6565b005b3480156104e157600080fd5b506103c66104f03660046126e0565b610bdc565b34801561050157600080fd5b5061043a61dead81565b34801561051757600080fd5b506104d3610526366004612721565b610c86565b34801561053757600080fd5b506040516012815260200161039d565b34801561055357600080fd5b506103c661056236600461267e565b610d43565b34801561057357600080fd5b5061043a7f000000000000000000000000000000000000000000000000000000000000000081565b3480156105a757600080fd5b50600c546103c69060ff1681565b3480156105c157600080fd5b506103c66105d03660046126aa565b6001600160a01b03166000908152601d602052604090205460ff1690565b3480156105fa57600080fd5b5061046360145481565b34801561061057600080fd5b50600c546103c69062010000900460ff1681565b34801561063057600080fd5b5061046361063f3660046126aa565b6001600160a01b031660009081526020819052604090205490565b34801561066657600080fd5b506104d3610d7f565b34801561067b57600080fd5b506103c6610db5565b34801561069057600080fd5b506104d361069f366004612763565b610df2565b3480156106b057600080fd5b5060075461043a906001600160a01b031681565b3480156106d057600080fd5b5061046360115481565b3480156106e657600080fd5b506104d3610e47565b3480156106fb57600080fd5b506005546001600160a01b031661043a565b34801561071957600080fd5b5060085461043a906001600160a01b031681565b34801561073957600080fd5b5061046360165481565b34801561074f57600080fd5b506104d361075e366004612798565b610e84565b34801561076f57600080fd5b50610390610eca565b34801561078457600080fd5b506104d3610793366004612763565b610ed9565b3480156107a457600080fd5b5061046360135481565b3480156107ba57600080fd5b50610463601c5481565b3480156107d057600080fd5b5061046360185481565b3480156107e657600080fd5b506103c66107f536600461267e565b610fb9565b34801561080657600080fd5b506103c661081536600461267e565b611052565b34801561082657600080fd5b5061046360105481565b34801561083c57600080fd5b506103c661084b3660046126aa565b601f6020526000908152604090205460ff1681565b34801561086c57600080fd5b50600c546103c690610100900460ff1681565b34801561088b57600080fd5b506104d361089a366004612763565b61105f565b3480156108ab57600080fd5b5060065461043a906001600160a01b031681565b3480156108cb57600080fd5b506104d36108da3660046126c7565b6110e8565b3480156108eb57600080fd5b50600e546103c69060ff1681565b34801561090557600080fd5b5061046360095481565b34801561091b57600080fd5b506103c661092a3660046126c7565b6111b9565b34801561093b57600080fd5b50610463600f5481565b34801561095157600080fd5b506104636109603660046127b3565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561099757600080fd5b50610463600a5481565b3480156109ad57600080fd5b506104d36109bc366004612721565b611310565b3480156109cd57600080fd5b506103c66113ce565b3480156109e257600080fd5b5061046360195481565b3480156109f857600080fd5b5061046360125481565b348015610a0e57600080fd5b506104d3610a1d3660046126aa565b61140b565b348015610a2e57600080fd5b5061046360175481565b348015610a4457600080fd5b50610463600b5481565b606060038054610a5d906127ec565b80601f0160208091040260200160405190810160405280929190818152602001828054610a89906127ec565b8015610ad65780601f10610aab57610100808354040283529160200191610ad6565b820191906000526020600020905b815481529060010190602001808311610ab957829003601f168201915b5050505050905090565b6000610aed3384846114a6565b50600192915050565b6005546001600160a01b03163314610b295760405162461bcd60e51b8152600401610b2090612827565b60405180910390fd5b670de0b6b3a76400006103e8610b3e60025490565b610b49906005612872565b610b539190612891565b610b5d9190612891565b811015610bc45760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e352560881b6064820152608401610b20565b610bd681670de0b6b3a7640000612872565b60095550565b6000610be98484846115ca565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610c6e5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610b20565b610c7b85338584036114a6565b506001949350505050565b6005546001600160a01b03163314610cb05760405162461bcd60e51b8152600401610b2090612827565b600a82610cbd85876128b3565b610cc791906128b3565b1115610d065760405162461bcd60e51b815260206004820152600e60248201526d4d6178204275794665652031302560901b6044820152606401610b20565b60108490556011839055601282905560138190558082610d2685876128b3565b610d3091906128b3565b610d3a91906128b3565b600f5550505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610aed918590610d7a9086906128b3565b6114a6565b6005546001600160a01b03163314610da95760405162461bcd60e51b8152600401610b2090612827565b610db36000611e7e565b565b6005546000906001600160a01b03163314610de25760405162461bcd60e51b8152600401610b2090612827565b50600c805460ff19169055600190565b6005546001600160a01b03163314610e1c5760405162461bcd60e51b8152600401610b2090612827565b6001600160a01b03919091166000908152601e60205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610e715760405162461bcd60e51b8152600401610b2090612827565b600c805462ffff00191662010100179055565b6005546001600160a01b03163314610eae5760405162461bcd60e51b8152600401610b2090612827565b600c8054911515620100000262ff000019909216919091179055565b606060048054610a5d906127ec565b6005546001600160a01b03163314610f035760405162461bcd60e51b8152600401610b2090612827565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b03161415610fab5760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610b20565b610fb58282611ed0565b5050565b3360009081526001602090815260408083206001600160a01b03861684529091528120548281101561103b5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610b20565b61104833858584036114a6565b5060019392505050565b6000610aed3384846115ca565b6005546001600160a01b031633146110895760405162461bcd60e51b8152600401610b2090612827565b6001600160a01b0382166000818152601d6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b031633146111125760405162461bcd60e51b8152600401610b2090612827565b670de0b6b3a76400006103e861112760025490565b611132906005612872565b61113c9190612891565b6111469190612891565b8110156111a15760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b6064820152608401610b20565b6111b381670de0b6b3a7640000612872565b600b5550565b6005546000906001600160a01b031633146111e65760405162461bcd60e51b8152600401610b2090612827565b620186a06111f360025490565b6111fe906001612872565b6112089190612891565b8210156112755760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610b20565b6103e861128160025490565b61128c906005612872565b6112969190612891565b8211156113025760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b6064820152608401610b20565b50600a81905560015b919050565b6005546001600160a01b0316331461133a5760405162461bcd60e51b8152600401610b2090612827565b600a8261134785876128b3565b61135191906128b3565b11156113915760405162461bcd60e51b815260206004820152600f60248201526e4d61782053656c6c4665652031302560881b6044820152606401610b20565b601584905560168390556017829055601881905580826113b185876128b3565b6113bb91906128b3565b6113c591906128b3565b60145550505050565b6005546000906001600160a01b031633146113fb5760405162461bcd60e51b8152600401610b2090612827565b50600e805460ff19169055600190565b6005546001600160a01b031633146114355760405162461bcd60e51b8152600401610b2090612827565b6001600160a01b03811661149a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610b20565b6114a381611e7e565b50565b6001600160a01b0383166115085760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610b20565b6001600160a01b0382166115695760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610b20565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166115f05760405162461bcd60e51b8152600401610b20906128cb565b6001600160a01b0382166116165760405162461bcd60e51b8152600401610b2090612910565b8061162c5761162783836000611f24565b505050565b600c5460ff1615611ae9576005546001600160a01b0384811691161480159061166357506005546001600160a01b03838116911614155b801561167757506001600160a01b03821615155b801561168e57506001600160a01b03821661dead14155b80156116a45750600554600160a01b900460ff16155b15611ae957600c54610100900460ff1661173c576001600160a01b0383166000908152601d602052604090205460ff16806116f757506001600160a01b0382166000908152601d602052604090205460ff165b61173c5760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610b20565b600e5460ff1615611883576005546001600160a01b0383811691161480159061179757507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614155b80156117d557507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614155b1561188357326000908152600d602052604090205443116118705760405162461bcd60e51b815260206004820152604960248201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60448201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b6064820152681030b63637bbb2b21760b91b608482015260a401610b20565b326000908152600d602052604090204390555b6001600160a01b0383166000908152601f602052604090205460ff1680156118c457506001600160a01b0382166000908152601e602052604090205460ff16155b156119a8576009548111156119395760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610b20565b600b546001600160a01b03831660009081526020819052604090205461195f90836128b3565b11156119a35760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610b20565b611ae9565b6001600160a01b0382166000908152601f602052604090205460ff1680156119e957506001600160a01b0383166000908152601e602052604090205460ff16155b15611a5f576009548111156119a35760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b6064820152608401610b20565b6001600160a01b0382166000908152601e602052604090205460ff16611ae957600b546001600160a01b038316600090815260208190526040902054611aa590836128b3565b1115611ae95760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610b20565b30600090815260208190526040902054600a5481108015908190611b155750600c5462010000900460ff165b8015611b2b5750600554600160a01b900460ff16155b8015611b5057506001600160a01b0385166000908152601f602052604090205460ff16155b8015611b7557506001600160a01b0385166000908152601d602052604090205460ff16155b8015611b9a57506001600160a01b0384166000908152601d602052604090205460ff16155b15611bc8576005805460ff60a01b1916600160a01b179055611bba612079565b6005805460ff60a01b191690555b6005546001600160a01b0386166000908152601d602052604090205460ff600160a01b909204821615911680611c1657506001600160a01b0385166000908152601d602052604090205460ff165b15611c1f575060005b60008115611e6a576001600160a01b0386166000908152601f602052604090205460ff168015611c5157506000601454115b15611d3f57611c766064611c706014548861234390919063ffffffff16565b90612356565b905060145460155482611c899190612872565b611c939190612891565b60196000828254611ca491906128b3565b9091555050601454601754611cb99083612872565b611cc39190612891565b601b6000828254611cd491906128b3565b9091555050601454601854611ce99083612872565b611cf39190612891565b601c6000828254611d0491906128b3565b9091555050601454601654611d199083612872565b611d239190612891565b601a6000828254611d3491906128b3565b90915550611e4c9050565b6001600160a01b0387166000908152601f602052604090205460ff168015611d6957506000600f54115b15611e4c57611d886064611c70600f548861234390919063ffffffff16565b9050600f5460105482611d9b9190612872565b611da59190612891565b60196000828254611db691906128b3565b9091555050600f54601254611dcb9083612872565b611dd59190612891565b601b6000828254611de691906128b3565b9091555050600f54601354611dfb9083612872565b611e059190612891565b601c6000828254611e1691906128b3565b9091555050600f54601154611e2b9083612872565b611e359190612891565b601a6000828254611e4691906128b3565b90915550505b8015611e5d57611e5d873083611f24565b611e678186612953565b94505b611e75878787611f24565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166000818152601f6020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b038316611f4a5760405162461bcd60e51b8152600401610b20906128cb565b6001600160a01b038216611f705760405162461bcd60e51b8152600401610b2090612910565b6001600160a01b03831660009081526020819052604090205481811015611fe85760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610b20565b6001600160a01b0380851660009081526020819052604080822085850390559185168152908120805484929061201f9084906128b3565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161206b91815260200190565b60405180910390a350505050565b3060009081526020819052604081205490506000601c54601a54601b546019546120a391906128b3565b6120ad91906128b3565b6120b791906128b3565b905060008215806120c6575081155b156120d057505050565b600a546120de906014612872565b8311156120f657600a546120f3906014612872565b92505b6000600283601b54866121099190612872565b6121139190612891565b61211d9190612891565b9050600061212b8583612362565b9050476121378261236e565b60006121434783612362565b9050600061216087611c706019548561234390919063ffffffff16565b9050600061217d88611c70601a548661234390919063ffffffff16565b9050600061219a89611c70601c548761234390919063ffffffff16565b9050600081836121aa8688612953565b6121b49190612953565b6121be9190612953565b6000601b8190556019819055601a819055601c8190556008546040519293506001600160a01b031691849181818185875af1925050503d8060008114612220576040519150601f19603f3d011682016040523d82523d6000602084013e612225565b606091505b5050600754604051919a506001600160a01b0316908490600081818185875af1925050503d8060008114612275576040519150601f19603f3d011682016040523d82523d6000602084013e61227a565b606091505b5090995050871580159061228e5750600081115b156122e15761229d888261252e565b601b54604080518981526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b6006546040516001600160a01b03909116904790600081818185875af1925050503d806000811461232e576040519150601f19603f3d011682016040523d82523d6000602084013e612333565b606091505b5050505050505050505050505050565b600061234f8284612872565b9392505050565b600061234f8284612891565b600061234f8284612953565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106123a3576123a361296a565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612421573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906124459190612980565b816001815181106124585761245861296a565b60200260200101906001600160a01b031690816001600160a01b0316815250506124a3307f0000000000000000000000000000000000000000000000000000000000000000846114a6565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac947906124f890859060009086903090429060040161299d565b600060405180830381600087803b15801561251257600080fd5b505af1158015612526573d6000803e3d6000fd5b505050505050565b612559307f0000000000000000000000000000000000000000000000000000000000000000846114a6565b60085460405163f305d71960e01b81523060048201526024810184905260006044820181905260648201526001600160a01b0391821660848201524260a48201527f00000000000000000000000000000000000000000000000000000000000000009091169063f305d71990839060c40160606040518083038185885af11580156125e8573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061260d9190612a0e565b5050505050565b600060208083528351808285015260005b8181101561264157858101830151858201604001528201612625565b81811115612653576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b03811681146114a357600080fd5b6000806040838503121561269157600080fd5b823561269c81612669565b946020939093013593505050565b6000602082840312156126bc57600080fd5b813561234f81612669565b6000602082840312156126d957600080fd5b5035919050565b6000806000606084860312156126f557600080fd5b833561270081612669565b9250602084013561271081612669565b929592945050506040919091013590565b6000806000806080858703121561273757600080fd5b5050823594602084013594506040840135936060013592509050565b8035801515811461130b57600080fd5b6000806040838503121561277657600080fd5b823561278181612669565b915061278f60208401612753565b90509250929050565b6000602082840312156127aa57600080fd5b61234f82612753565b600080604083850312156127c657600080fd5b82356127d181612669565b915060208301356127e181612669565b809150509250929050565b600181811c9082168061280057607f821691505b6020821081141561282157634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b600081600019048311821515161561288c5761288c61285c565b500290565b6000826128ae57634e487b7160e01b600052601260045260246000fd5b500490565b600082198211156128c6576128c661285c565b500190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b6000828210156129655761296561285c565b500390565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561299257600080fd5b815161234f81612669565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156129ed5784516001600160a01b0316835293830193918301916001016129c8565b50506001600160a01b03969096166060850152505050608001529392505050565b600080600060608486031215612a2357600080fd5b835192506020840151915060408401519050925092509256fea26469706673582212207a2a5b513962f8f979f3865b4436bde2b72bf8d6ec06fdf5ed4da5266adc9c5364736f6c634300080a00334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572
Deployed Bytecode
0x60806040526004361061036f5760003560e01c806392136913116101c6578063c18bc195116100f7578063e7ad9fcd11610095578063f11a24d31161006f578063f11a24d3146109ec578063f2fde38b14610a02578063f637434214610a22578063f8b45b0514610a3857600080fd5b8063e7ad9fcd146109a1578063e884f260146109c1578063ef8700e5146109d657600080fd5b8063d257b34f116100d1578063d257b34f1461090f578063d85ba0631461092f578063dd62ed3e14610945578063e2f456051461098b57600080fd5b8063c18bc195146108bf578063c876d0b9146108df578063c8c8ebe4146108f957600080fd5b8063a457c2d711610164578063b62496f51161013e578063b62496f514610830578063bbc0c74214610860578063c02466681461087f578063c04a54141461089f57600080fd5b8063a457c2d7146107da578063a9059cbb146107fa578063b20414111461081a57600080fd5b80639a7a23d6116101a05780639a7a23d6146107785780639c3b4fdc146107985780639fccce32146107ae578063a0d82dc5146107c457600080fd5b8063921369131461072d578063924de9b71461074357806395d89b411461076357600080fd5b806349bd5a5e116102a0578063751039fc1161023e5780637bce5a04116102185780637bce5a04146106c45780638a8c523c146106da5780638da5cb5b146106ef5780638ea5220f1461070d57600080fd5b8063751039fc1461066f5780637571336a1461068457806375f0a874146106a457600080fd5b80636a486a8e1161027a5780636a486a8e146105ee5780636ddd17131461060457806370a0823114610624578063715018a61461065a57600080fd5b806349bd5a5e146105675780634a62bb651461059b5780634fbee193146105b557600080fd5b80631f3fed8f1161030d57806327c8f835116102e757806327c8f835146104f55780632e6ed7ef1461050b578063313ce5671461052b578063395093511461054757600080fd5b80631f3fed8f1461049d578063203e727e146104b357806323b872dd146104d557600080fd5b80631694505e116103495780631694505e1461040657806318160ddd1461045257806318a94cf1146104715780631a8145bb1461048757600080fd5b806306fdde031461037b578063095ea7b3146103a657806310d5de53146103d657600080fd5b3661037657005b600080fd5b34801561038757600080fd5b50610390610a4e565b60405161039d9190612614565b60405180910390f35b3480156103b257600080fd5b506103c66103c136600461267e565b610ae0565b604051901515815260200161039d565b3480156103e257600080fd5b506103c66103f13660046126aa565b601e6020526000908152604090205460ff1681565b34801561041257600080fd5b5061043a7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b03909116815260200161039d565b34801561045e57600080fd5b506002545b60405190815260200161039d565b34801561047d57600080fd5b5061046360155481565b34801561049357600080fd5b50610463601b5481565b3480156104a957600080fd5b50610463601a5481565b3480156104bf57600080fd5b506104d36104ce3660046126c7565b610af6565b005b3480156104e157600080fd5b506103c66104f03660046126e0565b610bdc565b34801561050157600080fd5b5061043a61dead81565b34801561051757600080fd5b506104d3610526366004612721565b610c86565b34801561053757600080fd5b506040516012815260200161039d565b34801561055357600080fd5b506103c661056236600461267e565b610d43565b34801561057357600080fd5b5061043a7f000000000000000000000000aaaf9d9751e663245599853e04ca71edfbc16c0881565b3480156105a757600080fd5b50600c546103c69060ff1681565b3480156105c157600080fd5b506103c66105d03660046126aa565b6001600160a01b03166000908152601d602052604090205460ff1690565b3480156105fa57600080fd5b5061046360145481565b34801561061057600080fd5b50600c546103c69062010000900460ff1681565b34801561063057600080fd5b5061046361063f3660046126aa565b6001600160a01b031660009081526020819052604090205490565b34801561066657600080fd5b506104d3610d7f565b34801561067b57600080fd5b506103c6610db5565b34801561069057600080fd5b506104d361069f366004612763565b610df2565b3480156106b057600080fd5b5060075461043a906001600160a01b031681565b3480156106d057600080fd5b5061046360115481565b3480156106e657600080fd5b506104d3610e47565b3480156106fb57600080fd5b506005546001600160a01b031661043a565b34801561071957600080fd5b5060085461043a906001600160a01b031681565b34801561073957600080fd5b5061046360165481565b34801561074f57600080fd5b506104d361075e366004612798565b610e84565b34801561076f57600080fd5b50610390610eca565b34801561078457600080fd5b506104d3610793366004612763565b610ed9565b3480156107a457600080fd5b5061046360135481565b3480156107ba57600080fd5b50610463601c5481565b3480156107d057600080fd5b5061046360185481565b3480156107e657600080fd5b506103c66107f536600461267e565b610fb9565b34801561080657600080fd5b506103c661081536600461267e565b611052565b34801561082657600080fd5b5061046360105481565b34801561083c57600080fd5b506103c661084b3660046126aa565b601f6020526000908152604090205460ff1681565b34801561086c57600080fd5b50600c546103c690610100900460ff1681565b34801561088b57600080fd5b506104d361089a366004612763565b61105f565b3480156108ab57600080fd5b5060065461043a906001600160a01b031681565b3480156108cb57600080fd5b506104d36108da3660046126c7565b6110e8565b3480156108eb57600080fd5b50600e546103c69060ff1681565b34801561090557600080fd5b5061046360095481565b34801561091b57600080fd5b506103c661092a3660046126c7565b6111b9565b34801561093b57600080fd5b50610463600f5481565b34801561095157600080fd5b506104636109603660046127b3565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561099757600080fd5b50610463600a5481565b3480156109ad57600080fd5b506104d36109bc366004612721565b611310565b3480156109cd57600080fd5b506103c66113ce565b3480156109e257600080fd5b5061046360195481565b3480156109f857600080fd5b5061046360125481565b348015610a0e57600080fd5b506104d3610a1d3660046126aa565b61140b565b348015610a2e57600080fd5b5061046360175481565b348015610a4457600080fd5b50610463600b5481565b606060038054610a5d906127ec565b80601f0160208091040260200160405190810160405280929190818152602001828054610a89906127ec565b8015610ad65780601f10610aab57610100808354040283529160200191610ad6565b820191906000526020600020905b815481529060010190602001808311610ab957829003601f168201915b5050505050905090565b6000610aed3384846114a6565b50600192915050565b6005546001600160a01b03163314610b295760405162461bcd60e51b8152600401610b2090612827565b60405180910390fd5b670de0b6b3a76400006103e8610b3e60025490565b610b49906005612872565b610b539190612891565b610b5d9190612891565b811015610bc45760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e352560881b6064820152608401610b20565b610bd681670de0b6b3a7640000612872565b60095550565b6000610be98484846115ca565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610c6e5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610b20565b610c7b85338584036114a6565b506001949350505050565b6005546001600160a01b03163314610cb05760405162461bcd60e51b8152600401610b2090612827565b600a82610cbd85876128b3565b610cc791906128b3565b1115610d065760405162461bcd60e51b815260206004820152600e60248201526d4d6178204275794665652031302560901b6044820152606401610b20565b60108490556011839055601282905560138190558082610d2685876128b3565b610d3091906128b3565b610d3a91906128b3565b600f5550505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610aed918590610d7a9086906128b3565b6114a6565b6005546001600160a01b03163314610da95760405162461bcd60e51b8152600401610b2090612827565b610db36000611e7e565b565b6005546000906001600160a01b03163314610de25760405162461bcd60e51b8152600401610b2090612827565b50600c805460ff19169055600190565b6005546001600160a01b03163314610e1c5760405162461bcd60e51b8152600401610b2090612827565b6001600160a01b03919091166000908152601e60205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610e715760405162461bcd60e51b8152600401610b2090612827565b600c805462ffff00191662010100179055565b6005546001600160a01b03163314610eae5760405162461bcd60e51b8152600401610b2090612827565b600c8054911515620100000262ff000019909216919091179055565b606060048054610a5d906127ec565b6005546001600160a01b03163314610f035760405162461bcd60e51b8152600401610b2090612827565b7f000000000000000000000000aaaf9d9751e663245599853e04ca71edfbc16c086001600160a01b0316826001600160a01b03161415610fab5760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610b20565b610fb58282611ed0565b5050565b3360009081526001602090815260408083206001600160a01b03861684529091528120548281101561103b5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610b20565b61104833858584036114a6565b5060019392505050565b6000610aed3384846115ca565b6005546001600160a01b031633146110895760405162461bcd60e51b8152600401610b2090612827565b6001600160a01b0382166000818152601d6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b031633146111125760405162461bcd60e51b8152600401610b2090612827565b670de0b6b3a76400006103e861112760025490565b611132906005612872565b61113c9190612891565b6111469190612891565b8110156111a15760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b6064820152608401610b20565b6111b381670de0b6b3a7640000612872565b600b5550565b6005546000906001600160a01b031633146111e65760405162461bcd60e51b8152600401610b2090612827565b620186a06111f360025490565b6111fe906001612872565b6112089190612891565b8210156112755760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610b20565b6103e861128160025490565b61128c906005612872565b6112969190612891565b8211156113025760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b6064820152608401610b20565b50600a81905560015b919050565b6005546001600160a01b0316331461133a5760405162461bcd60e51b8152600401610b2090612827565b600a8261134785876128b3565b61135191906128b3565b11156113915760405162461bcd60e51b815260206004820152600f60248201526e4d61782053656c6c4665652031302560881b6044820152606401610b20565b601584905560168390556017829055601881905580826113b185876128b3565b6113bb91906128b3565b6113c591906128b3565b60145550505050565b6005546000906001600160a01b031633146113fb5760405162461bcd60e51b8152600401610b2090612827565b50600e805460ff19169055600190565b6005546001600160a01b031633146114355760405162461bcd60e51b8152600401610b2090612827565b6001600160a01b03811661149a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610b20565b6114a381611e7e565b50565b6001600160a01b0383166115085760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610b20565b6001600160a01b0382166115695760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610b20565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166115f05760405162461bcd60e51b8152600401610b20906128cb565b6001600160a01b0382166116165760405162461bcd60e51b8152600401610b2090612910565b8061162c5761162783836000611f24565b505050565b600c5460ff1615611ae9576005546001600160a01b0384811691161480159061166357506005546001600160a01b03838116911614155b801561167757506001600160a01b03821615155b801561168e57506001600160a01b03821661dead14155b80156116a45750600554600160a01b900460ff16155b15611ae957600c54610100900460ff1661173c576001600160a01b0383166000908152601d602052604090205460ff16806116f757506001600160a01b0382166000908152601d602052604090205460ff165b61173c5760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610b20565b600e5460ff1615611883576005546001600160a01b0383811691161480159061179757507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b0316826001600160a01b031614155b80156117d557507f000000000000000000000000aaaf9d9751e663245599853e04ca71edfbc16c086001600160a01b0316826001600160a01b031614155b1561188357326000908152600d602052604090205443116118705760405162461bcd60e51b815260206004820152604960248201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60448201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b6064820152681030b63637bbb2b21760b91b608482015260a401610b20565b326000908152600d602052604090204390555b6001600160a01b0383166000908152601f602052604090205460ff1680156118c457506001600160a01b0382166000908152601e602052604090205460ff16155b156119a8576009548111156119395760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610b20565b600b546001600160a01b03831660009081526020819052604090205461195f90836128b3565b11156119a35760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610b20565b611ae9565b6001600160a01b0382166000908152601f602052604090205460ff1680156119e957506001600160a01b0383166000908152601e602052604090205460ff16155b15611a5f576009548111156119a35760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b6064820152608401610b20565b6001600160a01b0382166000908152601e602052604090205460ff16611ae957600b546001600160a01b038316600090815260208190526040902054611aa590836128b3565b1115611ae95760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610b20565b30600090815260208190526040902054600a5481108015908190611b155750600c5462010000900460ff165b8015611b2b5750600554600160a01b900460ff16155b8015611b5057506001600160a01b0385166000908152601f602052604090205460ff16155b8015611b7557506001600160a01b0385166000908152601d602052604090205460ff16155b8015611b9a57506001600160a01b0384166000908152601d602052604090205460ff16155b15611bc8576005805460ff60a01b1916600160a01b179055611bba612079565b6005805460ff60a01b191690555b6005546001600160a01b0386166000908152601d602052604090205460ff600160a01b909204821615911680611c1657506001600160a01b0385166000908152601d602052604090205460ff165b15611c1f575060005b60008115611e6a576001600160a01b0386166000908152601f602052604090205460ff168015611c5157506000601454115b15611d3f57611c766064611c706014548861234390919063ffffffff16565b90612356565b905060145460155482611c899190612872565b611c939190612891565b60196000828254611ca491906128b3565b9091555050601454601754611cb99083612872565b611cc39190612891565b601b6000828254611cd491906128b3565b9091555050601454601854611ce99083612872565b611cf39190612891565b601c6000828254611d0491906128b3565b9091555050601454601654611d199083612872565b611d239190612891565b601a6000828254611d3491906128b3565b90915550611e4c9050565b6001600160a01b0387166000908152601f602052604090205460ff168015611d6957506000600f54115b15611e4c57611d886064611c70600f548861234390919063ffffffff16565b9050600f5460105482611d9b9190612872565b611da59190612891565b60196000828254611db691906128b3565b9091555050600f54601254611dcb9083612872565b611dd59190612891565b601b6000828254611de691906128b3565b9091555050600f54601354611dfb9083612872565b611e059190612891565b601c6000828254611e1691906128b3565b9091555050600f54601154611e2b9083612872565b611e359190612891565b601a6000828254611e4691906128b3565b90915550505b8015611e5d57611e5d873083611f24565b611e678186612953565b94505b611e75878787611f24565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166000818152601f6020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b038316611f4a5760405162461bcd60e51b8152600401610b20906128cb565b6001600160a01b038216611f705760405162461bcd60e51b8152600401610b2090612910565b6001600160a01b03831660009081526020819052604090205481811015611fe85760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610b20565b6001600160a01b0380851660009081526020819052604080822085850390559185168152908120805484929061201f9084906128b3565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161206b91815260200190565b60405180910390a350505050565b3060009081526020819052604081205490506000601c54601a54601b546019546120a391906128b3565b6120ad91906128b3565b6120b791906128b3565b905060008215806120c6575081155b156120d057505050565b600a546120de906014612872565b8311156120f657600a546120f3906014612872565b92505b6000600283601b54866121099190612872565b6121139190612891565b61211d9190612891565b9050600061212b8583612362565b9050476121378261236e565b60006121434783612362565b9050600061216087611c706019548561234390919063ffffffff16565b9050600061217d88611c70601a548661234390919063ffffffff16565b9050600061219a89611c70601c548761234390919063ffffffff16565b9050600081836121aa8688612953565b6121b49190612953565b6121be9190612953565b6000601b8190556019819055601a819055601c8190556008546040519293506001600160a01b031691849181818185875af1925050503d8060008114612220576040519150601f19603f3d011682016040523d82523d6000602084013e612225565b606091505b5050600754604051919a506001600160a01b0316908490600081818185875af1925050503d8060008114612275576040519150601f19603f3d011682016040523d82523d6000602084013e61227a565b606091505b5090995050871580159061228e5750600081115b156122e15761229d888261252e565b601b54604080518981526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b6006546040516001600160a01b03909116904790600081818185875af1925050503d806000811461232e576040519150601f19603f3d011682016040523d82523d6000602084013e612333565b606091505b5050505050505050505050505050565b600061234f8284612872565b9392505050565b600061234f8284612891565b600061234f8284612953565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106123a3576123a361296a565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612421573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906124459190612980565b816001815181106124585761245861296a565b60200260200101906001600160a01b031690816001600160a01b0316815250506124a3307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846114a6565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac947906124f890859060009086903090429060040161299d565b600060405180830381600087803b15801561251257600080fd5b505af1158015612526573d6000803e3d6000fd5b505050505050565b612559307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846114a6565b60085460405163f305d71960e01b81523060048201526024810184905260006044820181905260648201526001600160a01b0391821660848201524260a48201527f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d9091169063f305d71990839060c40160606040518083038185885af11580156125e8573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061260d9190612a0e565b5050505050565b600060208083528351808285015260005b8181101561264157858101830151858201604001528201612625565b81811115612653576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b03811681146114a357600080fd5b6000806040838503121561269157600080fd5b823561269c81612669565b946020939093013593505050565b6000602082840312156126bc57600080fd5b813561234f81612669565b6000602082840312156126d957600080fd5b5035919050565b6000806000606084860312156126f557600080fd5b833561270081612669565b9250602084013561271081612669565b929592945050506040919091013590565b6000806000806080858703121561273757600080fd5b5050823594602084013594506040840135936060013592509050565b8035801515811461130b57600080fd5b6000806040838503121561277657600080fd5b823561278181612669565b915061278f60208401612753565b90509250929050565b6000602082840312156127aa57600080fd5b61234f82612753565b600080604083850312156127c657600080fd5b82356127d181612669565b915060208301356127e181612669565b809150509250929050565b600181811c9082168061280057607f821691505b6020821081141561282157634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b600081600019048311821515161561288c5761288c61285c565b500290565b6000826128ae57634e487b7160e01b600052601260045260246000fd5b500490565b600082198211156128c6576128c661285c565b500190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b6000828210156129655761296561285c565b500390565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561299257600080fd5b815161234f81612669565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156129ed5784516001600160a01b0316835293830193918301916001016129c8565b50506001600160a01b03969096166060850152505050608001529392505050565b600080600060608486031215612a2357600080fd5b835192506020840151915060408401519050925092509256fea26469706673582212207a2a5b513962f8f979f3865b4436bde2b72bf8d6ec06fdf5ed4da5266adc9c5364736f6c634300080a0033
Deployed Bytecode Sourcemap
32514:16731:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9441:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11608:169;;;;;;;;;;-1:-1:-1;11608:169:0;;;;;:::i;:::-;;:::i;:::-;;;1237:14:1;;1230:22;1212:41;;1200:2;1185:18;11608:169:0;1072:187:1;34015:63:0;;;;;;;;;;-1:-1:-1;34015:63:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;32588:51;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1707:32:1;;;1689:51;;1677:2;1662:18;32588:51:0;1516:230:1;10561:108:0;;;;;;;;;;-1:-1:-1;10649:12:0;;10561:108;;;1897:25:1;;;1885:2;1870:18;10561:108:0;1751:177:1;33567:33:0;;;;;;;;;;;;;;;;33799;;;;;;;;;;;;;;;;33759;;;;;;;;;;;;;;;;38473:275;;;;;;;;;;-1:-1:-1;38473:275:0;;;;;:::i;:::-;;:::i;:::-;;12259:492;;;;;;;;;;-1:-1:-1;12259:492:0;;;;;:::i;:::-;;:::i;32691:53::-;;;;;;;;;;;;32737:6;32691:53;;39395:527;;;;;;;;;;-1:-1:-1;39395:527:0;;;;;:::i;:::-;;:::i;10403:93::-;;;;;;;;;;-1:-1:-1;10403:93:0;;10486:2;3319:36:1;;3307:2;3292:18;10403:93:0;3177:184:1;13160:215:0;;;;;;;;;;-1:-1:-1;13160:215:0;;;;;:::i;:::-;;:::i;32646:38::-;;;;;;;;;;;;;;;33007:33;;;;;;;;;;-1:-1:-1;33007:33:0;;;;;;;;41173:126;;;;;;;;;;-1:-1:-1;41173:126:0;;;;;:::i;:::-;-1:-1:-1;;;;;41263:28:0;41239:4;41263:28;;;:19;:28;;;;;;;;;41173:126;33532:28;;;;;;;;;;;;;;;;33087:30;;;;;;;;;;-1:-1:-1;33087:30:0;;;;;;;;;;;10732:127;;;;;;;;;;-1:-1:-1;10732:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;10833:18:0;10806:7;10833:18;;;;;;;;;;;;10732:127;2676:103;;;;;;;;;;;;;:::i;37581:121::-;;;;;;;;;;;;;:::i;39024:167::-;;;;;;;;;;-1:-1:-1;39024:167:0;;;;;:::i;:::-;;:::i;32822:30::-;;;;;;;;;;-1:-1:-1;32822:30:0;;;;-1:-1:-1;;;;;32822:30:0;;;33425;;;;;;;;;;;;;;;;37417:112;;;;;;;;;;;;;:::i;2025:87::-;;;;;;;;;;-1:-1:-1;2098:6:0;;-1:-1:-1;;;;;2098:6:0;2025:87;;32859:24;;;;;;;;;;-1:-1:-1;32859:24:0;;;;-1:-1:-1;;;;;32859:24:0;;;33607:31;;;;;;;;;;;;;;;;39287:100;;;;;;;;;;-1:-1:-1;39287:100:0;;;;;:::i;:::-;;:::i;9660:104::-;;;;;;;;;;;;;:::i;40665:304::-;;;;;;;;;;-1:-1:-1;40665:304:0;;;;;:::i;:::-;;:::i;33499:24::-;;;;;;;;;;;;;;;;33839:27;;;;;;;;;;;;;;;;33683:25;;;;;;;;;;;;;;;;13878:413;;;;;;;;;;-1:-1:-1;13878:413:0;;;;;:::i;:::-;;:::i;11072:175::-;;;;;;;;;;-1:-1:-1;11072:175:0;;;;;:::i;:::-;;:::i;33386:32::-;;;;;;;;;;;;;;;;34236:57;;;;;;;;;;-1:-1:-1;34236:57:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;33047:33;;;;;;;;;;-1:-1:-1;33047:33:0;;;;;;;;;;;40475:182;;;;;;;;;;-1:-1:-1;40475:182:0;;;;;:::i;:::-;;:::i;32783:32::-;;;;;;;;;;-1:-1:-1;32783:32:0;;;;-1:-1:-1;;;;;32783:32:0;;;38756:256;;;;;;;;;;-1:-1:-1;38756:256:0;;;;;:::i;:::-;;:::i;33304:39::-;;;;;;;;;;-1:-1:-1;33304:39:0;;;;;;;;32892:35;;;;;;;;;;;;;;;;37968:497;;;;;;;;;;-1:-1:-1;37968:497:0;;;;;:::i;:::-;;:::i;33352:27::-;;;;;;;;;;;;;;;;11310:151;;;;;;;;;;-1:-1:-1;11310:151:0;;;;;:::i;:::-;-1:-1:-1;;;;;11426:18:0;;;11399:7;11426:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11310:151;32934:33;;;;;;;;;;;;;;;;39930:537;;;;;;;;;;-1:-1:-1;39930:537:0;;;;;:::i;:::-;;:::i;37763:135::-;;;;;;;;;;;;;:::i;33717:35::-;;;;;;;;;;;;;;;;33462:30;;;;;;;;;;;;;;;;2934:201;;;;;;;;;;-1:-1:-1;2934:201:0;;;;;:::i;:::-;;:::i;33645:31::-;;;;;;;;;;;;;;;;32974:24;;;;;;;;;;;;;;;;9441:100;9495:13;9528:5;9521:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9441:100;:::o;11608:169::-;11691:4;11708:39;778:10;11731:7;11740:6;11708:8;:39::i;:::-;-1:-1:-1;11765:4:0;11608:169;;;;:::o;38473:275::-;2098:6;;-1:-1:-1;;;;;2098:6:0;778:10;2245:23;2237:68;;;;-1:-1:-1;;;2237:68:0;;;;;;;:::i;:::-;;;;;;;;;38610:4:::1;38602;38581:13;10649:12:::0;;;10561:108;38581:13:::1;:17;::::0;38597:1:::1;38581:17;:::i;:::-;38580:26;;;;:::i;:::-;38579:35;;;;:::i;:::-;38569:6;:45;;38547:142;;;::::0;-1:-1:-1;;;38547:142:0;;5904:2:1;38547:142:0::1;::::0;::::1;5886:21:1::0;5943:2;5923:18;;;5916:30;5982:34;5962:18;;;5955:62;-1:-1:-1;;;6033:18:1;;;6026:45;6088:19;;38547:142:0::1;5702:411:1::0;38547:142:0::1;38723:17;:6:::0;38733::::1;38723:17;:::i;:::-;38700:20;:40:::0;-1:-1:-1;38473:275:0:o;12259:492::-;12399:4;12416:36;12426:6;12434:9;12445:6;12416:9;:36::i;:::-;-1:-1:-1;;;;;12492:19:0;;12465:24;12492:19;;;:11;:19;;;;;;;;778:10;12492:33;;;;;;;;12544:26;;;;12536:79;;;;-1:-1:-1;;;12536:79:0;;6320:2:1;12536:79:0;;;6302:21:1;6359:2;6339:18;;;6332:30;6398:34;6378:18;;;6371:62;-1:-1:-1;;;6449:18:1;;;6442:38;6497:19;;12536:79:0;6118:404:1;12536:79:0;12651:57;12660:6;778:10;12701:6;12682:16;:25;12651:8;:57::i;:::-;-1:-1:-1;12739:4:0;;12259:492;-1:-1:-1;;;;12259:492:0:o;39395:527::-;2098:6;;-1:-1:-1;;;;;2098:6:0;778:10;2245:23;2237:68;;;;-1:-1:-1;;;2237:68:0;;;;;;;:::i;:::-;39641:2:::1;39622:13:::0;39588:31:::1;39606:13:::0;39588:15;:31:::1;:::i;:::-;:47;;;;:::i;:::-;39587:56;;39579:83;;;::::0;-1:-1:-1;;;39579:83:0;;6862:2:1;39579:83:0::1;::::0;::::1;6844:21:1::0;6901:2;6881:18;;;6874:30;-1:-1:-1;;;6920:18:1;;;6913:44;6974:18;;39579:83:0::1;6660:338:1::0;39579:83:0::1;39673:17;:35:::0;;;39719:15:::1;:31:::0;;;39761:15:::1;:31:::0;;;39803:9:::1;:19:::0;;;39815:7;39779:13;39848:35:::1;39737:13:::0;39693:15;39848:35:::1;:::i;:::-;:53;;;;:::i;:::-;:65;;;;:::i;:::-;39833:12;:80:::0;-1:-1:-1;;;;39395:527:0:o;13160:215::-;778:10;13248:4;13297:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;13297:34:0;;;;;;;;;;13248:4;;13265:80;;13288:7;;13297:47;;13334:10;;13297:47;:::i;:::-;13265:8;:80::i;2676:103::-;2098:6;;-1:-1:-1;;;;;2098:6:0;778:10;2245:23;2237:68;;;;-1:-1:-1;;;2237:68:0;;;;;;;:::i;:::-;2741:30:::1;2768:1;2741:18;:30::i;:::-;2676:103::o:0;37581:121::-;2098:6;;37633:4;;-1:-1:-1;;;;;2098:6:0;778:10;2245:23;2237:68;;;;-1:-1:-1;;;2237:68:0;;;;;;;:::i;:::-;-1:-1:-1;37650:14:0::1;:22:::0;;-1:-1:-1;;37650:22:0::1;::::0;;;37581:121;:::o;39024:167::-;2098:6;;-1:-1:-1;;;;;2098:6:0;778:10;2245:23;2237:68;;;;-1:-1:-1;;;2237:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;39137:39:0;;;::::1;;::::0;;;:31:::1;:39;::::0;;;;:46;;-1:-1:-1;;39137:46:0::1;::::0;::::1;;::::0;;;::::1;::::0;;39024:167::o;37417:112::-;2098:6;;-1:-1:-1;;;;;2098:6:0;778:10;2245:23;2237:68;;;;-1:-1:-1;;;2237:68:0;;;;;;;:::i;:::-;37472:13:::1;:20:::0;;-1:-1:-1;;37503:18:0;;;;;37417:112::o;39287:100::-;2098:6;;-1:-1:-1;;;;;2098:6:0;778:10;2245:23;2237:68;;;;-1:-1:-1;;;2237:68:0;;;;;;;:::i;:::-;39358:11:::1;:21:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;39358:21:0;;::::1;::::0;;;::::1;::::0;;39287:100::o;9660:104::-;9716:13;9749:7;9742:14;;;;;:::i;40665:304::-;2098:6;;-1:-1:-1;;;;;2098:6:0;778:10;2245:23;2237:68;;;;-1:-1:-1;;;2237:68:0;;;;;;;:::i;:::-;40809:13:::1;-1:-1:-1::0;;;;;40801:21:0::1;:4;-1:-1:-1::0;;;;;40801:21:0::1;;;40779:128;;;::::0;-1:-1:-1;;;40779:128:0;;7205:2:1;40779:128:0::1;::::0;::::1;7187:21:1::0;7244:2;7224:18;;;7217:30;7283:34;7263:18;;;7256:62;7354:27;7334:18;;;7327:55;7399:19;;40779:128:0::1;7003:421:1::0;40779:128:0::1;40920:41;40949:4;40955:5;40920:28;:41::i;:::-;40665:304:::0;;:::o;13878:413::-;778:10;13971:4;14015:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;14015:34:0;;;;;;;;;;14068:35;;;;14060:85;;;;-1:-1:-1;;;14060:85:0;;7631:2:1;14060:85:0;;;7613:21:1;7670:2;7650:18;;;7643:30;7709:34;7689:18;;;7682:62;-1:-1:-1;;;7760:18:1;;;7753:35;7805:19;;14060:85:0;7429:401:1;14060:85:0;14181:67;778:10;14204:7;14232:15;14213:16;:34;14181:8;:67::i;:::-;-1:-1:-1;14279:4:0;;13878:413;-1:-1:-1;;;13878:413:0:o;11072:175::-;11158:4;11175:42;778:10;11199:9;11210:6;11175:9;:42::i;40475:182::-;2098:6;;-1:-1:-1;;;;;2098:6:0;778:10;2245:23;2237:68;;;;-1:-1:-1;;;2237:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;40560:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;40560:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;40615:34;;1212:41:1;;;40615:34:0::1;::::0;1185:18:1;40615:34:0::1;;;;;;;40475:182:::0;;:::o;38756:256::-;2098:6;;-1:-1:-1;;;;;2098:6:0;778:10;2245:23;2237:68;;;;-1:-1:-1;;;2237:68:0;;;;;;;:::i;:::-;38896:4:::1;38888;38867:13;10649:12:::0;;;10561:108;38867:13:::1;:17;::::0;38883:1:::1;38867:17;:::i;:::-;38866:26;;;;:::i;:::-;38865:35;;;;:::i;:::-;38855:6;:45;;38833:131;;;::::0;-1:-1:-1;;;38833:131:0;;8037:2:1;38833:131:0::1;::::0;::::1;8019:21:1::0;8076:2;8056:18;;;8049:30;8115:34;8095:18;;;8088:62;-1:-1:-1;;;8166:18:1;;;8159:34;8210:19;;38833:131:0::1;7835:400:1::0;38833:131:0::1;38987:17;:6:::0;38997::::1;38987:17;:::i;:::-;38975:9;:29:::0;-1:-1:-1;38756:256:0:o;37968:497::-;2098:6;;38076:4;;-1:-1:-1;;;;;2098:6:0;778:10;2245:23;2237:68;;;;-1:-1:-1;;;2237:68:0;;;;;;;:::i;:::-;38155:6:::1;38134:13;10649:12:::0;;;10561:108;38134:13:::1;:17;::::0;38150:1:::1;38134:17;:::i;:::-;38133:28;;;;:::i;:::-;38120:9;:41;;38098:144;;;::::0;-1:-1:-1;;;38098:144:0;;8442:2:1;38098:144:0::1;::::0;::::1;8424:21:1::0;8481:2;8461:18;;;8454:30;8520:34;8500:18;;;8493:62;-1:-1:-1;;;8571:18:1;;;8564:51;8632:19;;38098:144:0::1;8240:417:1::0;38098:144:0::1;38310:4;38289:13;10649:12:::0;;;10561:108;38289:13:::1;:17;::::0;38305:1:::1;38289:17;:::i;:::-;38288:26;;;;:::i;:::-;38275:9;:39;;38253:141;;;::::0;-1:-1:-1;;;38253:141:0;;8864:2:1;38253:141:0::1;::::0;::::1;8846:21:1::0;8903:2;8883:18;;;8876:30;8942:34;8922:18;;;8915:62;-1:-1:-1;;;8993:18:1;;;8986:50;9053:19;;38253:141:0::1;8662:416:1::0;38253:141:0::1;-1:-1:-1::0;38405:18:0::1;:30:::0;;;38453:4:::1;2316:1;37968:497:::0;;;:::o;39930:537::-;2098:6;;-1:-1:-1;;;;;2098:6:0;778:10;2245:23;2237:68;;;;-1:-1:-1;;;2237:68:0;;;;;;;:::i;:::-;40177:2:::1;40158:13:::0;40124:31:::1;40142:13:::0;40124:15;:31:::1;:::i;:::-;:47;;;;:::i;:::-;40123:56;;40115:84;;;::::0;-1:-1:-1;;;40115:84:0;;9285:2:1;40115:84:0::1;::::0;::::1;9267:21:1::0;9324:2;9304:18;;;9297:30;-1:-1:-1;;;9343:18:1;;;9336:45;9398:18;;40115:84:0::1;9083:339:1::0;40115:84:0::1;40210:18;:36:::0;;;40257:16:::1;:32:::0;;;40300:16:::1;:32:::0;;;40343:10:::1;:20:::0;;;40356:7;40319:13;40390:37:::1;40276:13:::0;40231:15;40390:37:::1;:::i;:::-;:56;;;;:::i;:::-;:69;;;;:::i;:::-;40374:13;:85:::0;-1:-1:-1;;;;39930:537:0:o;37763:135::-;2098:6;;37823:4;;-1:-1:-1;;;;;2098:6:0;778:10;2245:23;2237:68;;;;-1:-1:-1;;;2237:68:0;;;;;;;:::i;:::-;-1:-1:-1;37840:20:0::1;:28:::0;;-1:-1:-1;;37840:28:0::1;::::0;;;37763:135;:::o;2934:201::-;2098:6;;-1:-1:-1;;;;;2098:6:0;778:10;2245:23;2237:68;;;;-1:-1:-1;;;2237:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;3023:22:0;::::1;3015:73;;;::::0;-1:-1:-1;;;3015:73:0;;9629:2:1;3015:73:0::1;::::0;::::1;9611:21:1::0;9668:2;9648:18;;;9641:30;9707:34;9687:18;;;9680:62;-1:-1:-1;;;9758:18:1;;;9751:36;9804:19;;3015:73:0::1;9427:402:1::0;3015:73:0::1;3099:28;3118:8;3099:18;:28::i;:::-;2934:201:::0;:::o;17562:380::-;-1:-1:-1;;;;;17698:19:0;;17690:68;;;;-1:-1:-1;;;17690:68:0;;10036:2:1;17690:68:0;;;10018:21:1;10075:2;10055:18;;;10048:30;10114:34;10094:18;;;10087:62;-1:-1:-1;;;10165:18:1;;;10158:34;10209:19;;17690:68:0;9834:400:1;17690:68:0;-1:-1:-1;;;;;17777:21:0;;17769:68;;;;-1:-1:-1;;;17769:68:0;;10441:2:1;17769:68:0;;;10423:21:1;10480:2;10460:18;;;10453:30;10519:34;10499:18;;;10492:62;-1:-1:-1;;;10570:18:1;;;10563:32;10612:19;;17769:68:0;10239:398:1;17769:68:0;-1:-1:-1;;;;;17850:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;17902:32;;1897:25:1;;;17902:32:0;;1870:18:1;17902:32:0;;;;;;;17562:380;;;:::o;41307:4887::-;-1:-1:-1;;;;;41439:18:0;;41431:68;;;;-1:-1:-1;;;41431:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;41518:16:0;;41510:64;;;;-1:-1:-1;;;41510:64:0;;;;;;;:::i;:::-;41591:11;41587:93;;41619:28;41635:4;41641:2;41645:1;41619:15;:28::i;:::-;41307:4887;;;:::o;41587:93::-;41696:14;;;;41692:2487;;;2098:6;;-1:-1:-1;;;;;41749:15:0;;;2098:6;;41749:15;;;;:49;;-1:-1:-1;2098:6:0;;-1:-1:-1;;;;;41785:13:0;;;2098:6;;41785:13;;41749:49;:86;;;;-1:-1:-1;;;;;;41819:16:0;;;;41749:86;:128;;;;-1:-1:-1;;;;;;41856:21:0;;41870:6;41856:21;;41749:128;:158;;;;-1:-1:-1;41899:8:0;;-1:-1:-1;;;41899:8:0;;;;41898:9;41749:158;41727:2441;;;41947:13;;;;;;;41942:223;;-1:-1:-1;;;;;42019:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;42048:23:0;;;;;;:19;:23;;;;;;;;42019:52;41985:160;;;;-1:-1:-1;;;41985:160:0;;11654:2:1;41985:160:0;;;11636:21:1;11693:2;11673:18;;;11666:30;-1:-1:-1;;;11712:18:1;;;11705:52;11774:18;;41985:160:0;11452:346:1;41985:160:0;42321:20;;;;42317:641;;;2098:6;;-1:-1:-1;;;;;42396:13:0;;;2098:6;;42396:13;;;;:72;;;42452:15;-1:-1:-1;;;;;42438:30:0;:2;-1:-1:-1;;;;;42438:30:0;;;42396:72;:129;;;;;42511:13;-1:-1:-1;;;;;42497:28:0;:2;-1:-1:-1;;;;;42497:28:0;;;42396:129;42366:573;;;42643:9;42614:39;;;;:28;:39;;;;;;42689:12;-1:-1:-1;42576:258:0;;;;-1:-1:-1;;;42576:258:0;;12005:2:1;42576:258:0;;;11987:21:1;12044:2;12024:18;;;12017:30;12083:34;12063:18;;;12056:62;12154:34;12134:18;;;12127:62;-1:-1:-1;;;12205:19:1;;;12198:40;12255:19;;42576:258:0;11803:477:1;42576:258:0;42890:9;42861:39;;;;:28;:39;;;;;42903:12;42861:54;;42366:573;-1:-1:-1;;;;;43032:31:0;;;;;;:25;:31;;;;;;;;:92;;;;-1:-1:-1;;;;;;43089:35:0;;;;;;:31;:35;;;;;;;;43088:36;43032:92;43006:1147;;;43211:20;;43201:6;:30;;43167:169;;;;-1:-1:-1;;;43167:169:0;;12487:2:1;43167:169:0;;;12469:21:1;12526:2;12506:18;;;12499:30;12565:34;12545:18;;;12538:62;-1:-1:-1;;;12616:18:1;;;12609:51;12677:19;;43167:169:0;12285:417:1;43167:169:0;43419:9;;-1:-1:-1;;;;;10833:18:0;;10806:7;10833:18;;;;;;;;;;;43393:22;;:6;:22;:::i;:::-;:35;;43359:140;;;;-1:-1:-1;;;43359:140:0;;12909:2:1;43359:140:0;;;12891:21:1;12948:2;12928:18;;;12921:30;-1:-1:-1;;;12967:18:1;;;12960:49;13026:18;;43359:140:0;12707:343:1;43359:140:0;43006:1147;;;-1:-1:-1;;;;;43597:29:0;;;;;;:25;:29;;;;;;;;:92;;;;-1:-1:-1;;;;;;43652:37:0;;;;;;:31;:37;;;;;;;;43651:38;43597:92;43571:582;;;43776:20;;43766:6;:30;;43732:170;;;;-1:-1:-1;;;43732:170:0;;13257:2:1;43732:170:0;;;13239:21:1;13296:2;13276:18;;;13269:30;13335:34;13315:18;;;13308:62;-1:-1:-1;;;13386:18:1;;;13379:52;13448:19;;43732:170:0;13055:418:1;43571:582:0;-1:-1:-1;;;;;43933:35:0;;;;;;:31;:35;;;;;;;;43928:225;;44053:9;;-1:-1:-1;;;;;10833:18:0;;10806:7;10833:18;;;;;;;;;;;44027:22;;:6;:22;:::i;:::-;:35;;43993:140;;;;-1:-1:-1;;;43993:140:0;;12909:2:1;43993:140:0;;;12891:21:1;12948:2;12928:18;;;12921:30;-1:-1:-1;;;12967:18:1;;;12960:49;13026:18;;43993:140:0;12707:343:1;43993:140:0;44240:4;44191:28;10833:18;;;;;;;;;;;44298;;44274:42;;;;;;;44347:35;;-1:-1:-1;44371:11:0;;;;;;;44347:35;:61;;;;-1:-1:-1;44400:8:0;;-1:-1:-1;;;44400:8:0;;;;44399:9;44347:61;:110;;;;-1:-1:-1;;;;;;44426:31:0;;;;;;:25;:31;;;;;;;;44425:32;44347:110;:153;;;;-1:-1:-1;;;;;;44475:25:0;;;;;;:19;:25;;;;;;;;44474:26;44347:153;:194;;;;-1:-1:-1;;;;;;44518:23:0;;;;;;:19;:23;;;;;;;;44517:24;44347:194;44329:326;;;44568:8;:15;;-1:-1:-1;;;;44568:15:0;-1:-1:-1;;;44568:15:0;;;44600:10;:8;:10::i;:::-;44627:8;:16;;-1:-1:-1;;;;44627:16:0;;;44329:326;44683:8;;-1:-1:-1;;;;;44793:25:0;;44667:12;44793:25;;;:19;:25;;;;;;44683:8;-1:-1:-1;;;44683:8:0;;;;;44682:9;;44793:25;;:52;;-1:-1:-1;;;;;;44822:23:0;;;;;;:19;:23;;;;;;;;44793:52;44789:100;;;-1:-1:-1;44872:5:0;44789:100;44901:12;45006:7;45002:1139;;;-1:-1:-1;;;;;45058:29:0;;;;;;:25;:29;;;;;;;;:50;;;;;45107:1;45091:13;;:17;45058:50;45054:938;;;45136:34;45166:3;45136:25;45147:13;;45136:6;:10;;:25;;;;:::i;:::-;:29;;:34::i;:::-;45129:41;;45243:13;;45221:18;;45214:4;:25;;;;:::i;:::-;45213:43;;;;:::i;:::-;45189:20;;:67;;;;;;;:::i;:::-;;;;-1:-1:-1;;45325:13:0;;45305:16;;45298:23;;:4;:23;:::i;:::-;45297:41;;;;:::i;:::-;45275:18;;:63;;;;;;;:::i;:::-;;;;-1:-1:-1;;45395:13:0;;45381:10;;45374:17;;:4;:17;:::i;:::-;45373:35;;;;:::i;:::-;45357:12;;:51;;;;;;;:::i;:::-;;;;-1:-1:-1;;45477:13:0;;45457:16;;45450:23;;:4;:23;:::i;:::-;45449:41;;;;:::i;:::-;45427:18;;:63;;;;;;;:::i;:::-;;;;-1:-1:-1;45054:938:0;;-1:-1:-1;45054:938:0;;-1:-1:-1;;;;;45552:31:0;;;;;;:25;:31;;;;;;;;:51;;;;;45602:1;45587:12;;:16;45552:51;45548:444;;;45631:33;45660:3;45631:24;45642:12;;45631:6;:10;;:24;;;;:::i;:33::-;45624:40;;45736:12;;45715:17;;45708:4;:24;;;;:::i;:::-;45707:41;;;;:::i;:::-;45683:20;;:65;;;;;;;:::i;:::-;;;;-1:-1:-1;;45816:12:0;;45797:15;;45790:22;;:4;:22;:::i;:::-;45789:39;;;;:::i;:::-;45767:18;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;;45884:12:0;;45871:9;;45864:16;;:4;:16;:::i;:::-;45863:33;;;;:::i;:::-;45847:12;;:49;;;;;;;:::i;:::-;;;;-1:-1:-1;;45964:12:0;;45945:15;;45938:22;;:4;:22;:::i;:::-;45937:39;;;;:::i;:::-;45915:18;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;;45548:444:0;46012:8;;46008:91;;46041:42;46057:4;46071;46078;46041:15;:42::i;:::-;46115:14;46125:4;46115:14;;:::i;:::-;;;45002:1139;46153:33;46169:4;46175:2;46179:6;46153:15;:33::i;:::-;41420:4774;;;;41307:4887;;;:::o;3295:191::-;3388:6;;;-1:-1:-1;;;;;3405:17:0;;;-1:-1:-1;;;;;;3405:17:0;;;;;;;3438:40;;3388:6;;;3405:17;3388:6;;3438:40;;3369:16;;3438:40;3358:128;3295:191;:::o;40977:188::-;-1:-1:-1;;;;;41060:31:0;;;;;;:25;:31;;;;;;:39;;-1:-1:-1;;41060:39:0;;;;;;;;;;41117:40;;41060:39;;:31;41117:40;;;40977:188;;:::o;14781:733::-;-1:-1:-1;;;;;14921:20:0;;14913:70;;;;-1:-1:-1;;;14913:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15002:23:0;;14994:71;;;;-1:-1:-1;;;14994:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15162:17:0;;15138:21;15162:17;;;;;;;;;;;15198:23;;;;15190:74;;;;-1:-1:-1;;;15190:74:0;;13810:2:1;15190:74:0;;;13792:21:1;13849:2;13829:18;;;13822:30;13888:34;13868:18;;;13861:62;-1:-1:-1;;;13939:18:1;;;13932:36;13985:19;;15190:74:0;13608:402:1;15190:74:0;-1:-1:-1;;;;;15300:17:0;;;:9;:17;;;;;;;;;;;15320:22;;;15300:42;;15364:20;;;;;;;;:30;;15336:6;;15300:9;15364:30;;15336:6;;15364:30;:::i;:::-;;;;;;;;15429:9;-1:-1:-1;;;;;15412:35:0;15421:6;-1:-1:-1;;;;;15412:35:0;;15440:6;15412:35;;;;1897:25:1;;1885:2;1870:18;;1751:177;15412:35:0;;;;;;;;14902:612;14781:733;;;:::o;47322:1918::-;47405:4;47361:23;10833:18;;;;;;;;;;;47361:50;;47422:25;47515:12;;47494:18;;47473;;47450:20;;:41;;;;:::i;:::-;:62;;;;:::i;:::-;:77;;;;:::i;:::-;47422:105;-1:-1:-1;47538:12:0;47567:20;;;:46;;-1:-1:-1;47591:22:0;;47567:46;47563:85;;;47630:7;;;47322:1918::o;47563:85::-;47682:18;;:23;;47703:2;47682:23;:::i;:::-;47664:15;:41;47660:115;;;47740:18;;:23;;47761:2;47740:23;:::i;:::-;47722:41;;47660:115;47836:23;47923:1;47903:17;47881:18;;47863:15;:36;;;;:::i;:::-;47862:58;;;;:::i;:::-;:62;;;;:::i;:::-;47836:88;-1:-1:-1;47935:26:0;47964:36;:15;47836:88;47964:19;:36::i;:::-;47935:65;-1:-1:-1;48041:21:0;48075:36;47935:65;48075:16;:36::i;:::-;48124:18;48145:44;:21;48171:17;48145:25;:44::i;:::-;48124:65;;48202:25;48230:59;48271:17;48230:36;48245:20;;48230:10;:14;;:36;;;;:::i;:59::-;48202:87;;48300:23;48326:57;48365:17;48326:34;48341:18;;48326:10;:14;;:34;;;;:::i;:57::-;48300:83;;48394:17;48414:51;48447:17;48414:28;48429:12;;48414:10;:14;;:28;;;;:::i;:51::-;48394:71;-1:-1:-1;48478:23:0;48394:71;48537:15;48504:30;48517:17;48504:10;:30;:::i;:::-;:48;;;;:::i;:::-;:60;;;;:::i;:::-;48598:1;48577:18;:22;;;48610:20;:24;;;48645:18;:22;;;48678:12;:16;;;48729:9;;48721:45;;48478:86;;-1:-1:-1;;;;;;48729:9:0;;48752;;48721:45;48598:1;48721:45;48752:9;48729;48721:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;48799:15:0;;48791:57;;48707:59;;-1:-1:-1;;;;;;48799:15:0;;48828;;48791:57;;;;48828:15;48799;48791:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;48777:71:0;;-1:-1:-1;;48867:19:0;;;;;:42;;;48908:1;48890:15;:19;48867:42;48863:278;;;48926:46;48939:15;48956;48926:12;:46::i;:::-;49096:18;;48992:137;;;14427:25:1;;;14483:2;14468:18;;14461:34;;;14511:18;;;14504:34;;;;48992:137:0;;;;;;14415:2:1;48992:137:0;;;48863:278;49175:17;;49167:65;;-1:-1:-1;;;;;49175:17:0;;;;49206:21;;49167:65;;;;49206:21;49175:17;49167:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;;;;47322:1918:0:o;23015:98::-;23073:7;23100:5;23104:1;23100;:5;:::i;:::-;23093:12;23015:98;-1:-1:-1;;;23015:98:0:o;23414:::-;23472:7;23499:5;23503:1;23499;:5;:::i;22658:98::-;22716:7;22743:5;22747:1;22743;:5;:::i;46202:589::-;46352:16;;;46366:1;46352:16;;;;;;;;46328:21;;46352:16;;;;;;;;;;-1:-1:-1;46352:16:0;46328:40;;46397:4;46379;46384:1;46379:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;46379:23:0;;;-1:-1:-1;;;;;46379:23:0;;;;;46423:15;-1:-1:-1;;;;;46423:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;46413:4;46418:1;46413:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1;;;;;46413:32:0;;;-1:-1:-1;;;;;46413:32:0;;;;;46458:62;46475:4;46490:15;46508:11;46458:8;:62::i;:::-;46559:224;;-1:-1:-1;;;46559:224:0;;-1:-1:-1;;;;;46559:15:0;:66;;;;:224;;46640:11;;46666:1;;46710:4;;46737;;46757:15;;46559:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46257:534;46202:589;:::o;46799:515::-;46947:62;46964:4;46979:15;46997:11;46947:8;:62::i;:::-;47256:9;;47052:254;;-1:-1:-1;;;47052:254:0;;47124:4;47052:254;;;16395:34:1;16445:18;;;16438:34;;;47170:1:0;16488:18:1;;;16481:34;;;16531:18;;;16524:34;-1:-1:-1;;;;;47256:9:0;;;16574:19:1;;;16567:44;47280:15:0;16627:19:1;;;16620:35;47052:15:0;:31;;;;;;47091:9;;16329:19:1;;47052:254:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;46799:515;;:::o;14:597: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;;;452:6;449:1;446:13;443:91;;;522:1;517:2;508:6;497:9;493:22;489:31;482:42;443:91;-1:-1:-1;595:2:1;574:15;-1:-1:-1;;570:29:1;555:45;;;;602:2;551:54;;14:597;-1:-1:-1;;;14:597:1:o;616:131::-;-1:-1:-1;;;;;691:31:1;;681:42;;671:70;;737:1;734;727:12;752:315;820:6;828;881:2;869:9;860:7;856:23;852:32;849:52;;;897:1;894;887:12;849:52;936:9;923:23;955:31;980:5;955:31;:::i;:::-;1005:5;1057:2;1042:18;;;;1029:32;;-1:-1:-1;;;752:315:1:o;1264:247::-;1323:6;1376:2;1364:9;1355:7;1351:23;1347:32;1344:52;;;1392:1;1389;1382:12;1344:52;1431:9;1418:23;1450:31;1475:5;1450:31;:::i;1933:180::-;1992:6;2045:2;2033:9;2024:7;2020:23;2016:32;2013:52;;;2061:1;2058;2051:12;2013:52;-1:-1:-1;2084:23:1;;1933:180;-1:-1:-1;1933:180:1:o;2118:456::-;2195:6;2203;2211;2264:2;2252:9;2243:7;2239:23;2235:32;2232:52;;;2280:1;2277;2270:12;2232:52;2319:9;2306:23;2338:31;2363:5;2338:31;:::i;:::-;2388:5;-1:-1:-1;2445:2:1;2430:18;;2417:32;2458:33;2417:32;2458:33;:::i;:::-;2118:456;;2510:7;;-1:-1:-1;;;2564:2:1;2549:18;;;;2536:32;;2118:456::o;2787:385::-;2873:6;2881;2889;2897;2950:3;2938:9;2929:7;2925:23;2921:33;2918:53;;;2967:1;2964;2957:12;2918:53;-1:-1:-1;;2990:23:1;;;3060:2;3045:18;;3032:32;;-1:-1:-1;3111:2:1;3096:18;;3083:32;;3162:2;3147:18;3134:32;;-1:-1:-1;2787:385:1;-1:-1:-1;2787:385:1:o;3366:160::-;3431:20;;3487:13;;3480:21;3470:32;;3460:60;;3516:1;3513;3506:12;3531:315;3596:6;3604;3657:2;3645:9;3636:7;3632:23;3628:32;3625:52;;;3673:1;3670;3663:12;3625:52;3712:9;3699:23;3731:31;3756:5;3731:31;:::i;:::-;3781:5;-1:-1:-1;3805:35:1;3836:2;3821:18;;3805:35;:::i;:::-;3795:45;;3531:315;;;;;:::o;3851:180::-;3907:6;3960:2;3948:9;3939:7;3935:23;3931:32;3928:52;;;3976:1;3973;3966:12;3928:52;3999:26;4015:9;3999:26;:::i;4036:388::-;4104:6;4112;4165:2;4153:9;4144:7;4140:23;4136:32;4133:52;;;4181:1;4178;4171:12;4133:52;4220:9;4207:23;4239:31;4264:5;4239:31;:::i;:::-;4289:5;-1:-1:-1;4346:2:1;4331:18;;4318:32;4359:33;4318:32;4359:33;:::i;:::-;4411:7;4401:17;;;4036:388;;;;;:::o;4429:380::-;4508:1;4504:12;;;;4551;;;4572:61;;4626:4;4618:6;4614:17;4604:27;;4572:61;4679:2;4671:6;4668:14;4648:18;4645:38;4642:161;;;4725:10;4720:3;4716:20;4713:1;4706:31;4760:4;4757:1;4750:15;4788:4;4785:1;4778:15;4642:161;;4429:380;;;:::o;4814:356::-;5016:2;4998:21;;;5035:18;;;5028:30;5094:34;5089:2;5074:18;;5067:62;5161:2;5146:18;;4814:356::o;5175:127::-;5236:10;5231:3;5227:20;5224:1;5217:31;5267:4;5264:1;5257:15;5291:4;5288:1;5281:15;5307:168;5347:7;5413:1;5409;5405:6;5401:14;5398:1;5395:21;5390:1;5383:9;5376:17;5372:45;5369:71;;;5420:18;;:::i;:::-;-1:-1:-1;5460:9:1;;5307:168::o;5480:217::-;5520:1;5546;5536:132;;5590:10;5585:3;5581:20;5578:1;5571:31;5625:4;5622:1;5615:15;5653:4;5650:1;5643:15;5536:132;-1:-1:-1;5682:9:1;;5480:217::o;6527:128::-;6567:3;6598:1;6594:6;6591:1;6588:13;6585:39;;;6604:18;;:::i;:::-;-1:-1:-1;6640:9:1;;6527:128::o;10642:401::-;10844:2;10826:21;;;10883:2;10863:18;;;10856:30;10922:34;10917:2;10902:18;;10895:62;-1:-1:-1;;;10988:2:1;10973:18;;10966:35;11033:3;11018:19;;10642:401::o;11048:399::-;11250:2;11232:21;;;11289:2;11269:18;;;11262:30;11328:34;11323:2;11308:18;;11301:62;-1:-1:-1;;;11394:2:1;11379:18;;11372:33;11437:3;11422:19;;11048:399::o;13478:125::-;13518:4;13546:1;13543;13540:8;13537:34;;;13551:18;;:::i;:::-;-1:-1:-1;13588:9:1;;13478:125::o;14681:127::-;14742:10;14737:3;14733:20;14730:1;14723:31;14773:4;14770:1;14763:15;14797:4;14794:1;14787:15;14813:251;14883:6;14936:2;14924:9;14915:7;14911:23;14907:32;14904:52;;;14952:1;14949;14942:12;14904:52;14984:9;14978:16;15003:31;15028:5;15003:31;:::i;15069:980::-;15331:4;15379:3;15368:9;15364:19;15410:6;15399:9;15392:25;15436:2;15474:6;15469:2;15458:9;15454:18;15447:34;15517:3;15512:2;15501:9;15497:18;15490:31;15541:6;15576;15570:13;15607:6;15599;15592:22;15645:3;15634:9;15630:19;15623:26;;15684:2;15676:6;15672:15;15658:29;;15705:1;15715:195;15729:6;15726:1;15723:13;15715:195;;;15794:13;;-1:-1:-1;;;;;15790:39:1;15778:52;;15885:15;;;;15850:12;;;;15826:1;15744:9;15715:195;;;-1:-1:-1;;;;;;;15966:32:1;;;;15961:2;15946:18;;15939:60;-1:-1:-1;;;16030:3:1;16015:19;16008:35;15927:3;15069:980;-1:-1:-1;;;15069:980:1:o;16666:306::-;16754:6;16762;16770;16823:2;16811:9;16802:7;16798:23;16794:32;16791:52;;;16839:1;16836;16829:12;16791:52;16868:9;16862:16;16852:26;;16918:2;16907:9;16903:18;16897:25;16887:35;;16962:2;16951:9;16947:18;16941:25;16931:35;;16666:306;;;;;:::o
Swarm Source
ipfs://7a2a5b513962f8f979f3865b4436bde2b72bf8d6ec06fdf5ed4da5266adc9c53
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.