Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Overview
Max Total Supply
1,000,000,000 PLSPIRAL
Holders
51
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
11,000,000 PLSPIRALValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
PLSPIRAL
Compiler Version
v0.8.10+commit.fc410830
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-08-12 */ // SPDX-License-Identifier: MIT pragma solidity =0.8.10 >=0.8.10 >=0.8.0 <0.9.0; pragma experimental ABIEncoderV2; ////// lib/openzeppelin-contracts/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.0 (utils/Context.sol) /* pragma solidity ^0.8.0; */ /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } ////// 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) public _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 PLSPIRAL 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 devWallet; uint256 public maxTransactionAmount; uint256 public swapTokensAtAmount; uint256 public maxWallet; bool public limitsInEffect = true; bool public tradingActive = false; bool public swapEnabled = false; uint256 public buyTotalFees; uint256 public buyLiquidityFee; uint256 public buyDevFee; uint256 public sellTotalFees; uint256 public sellLiquidityFee; uint256 public sellDevFee; 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("PulseSpiral", "PLSPIRAL") { 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 _buyLiquidityFee = 0; uint256 _buyDevFee = 3; uint256 _sellLiquidityFee = 0; uint256 _sellDevFee = 3; uint256 totalSupply = 1 * 1e9 * 1e18; maxTransactionAmount = 2 * 1e7 * 1e18; // 2% from total supply maxTransactionAmountTxn maxWallet = 2 * 1e7 * 1e18; // 2% from total supply maxWallet swapTokensAtAmount = (totalSupply * 10) / 10000; // 0.1% swap wallet buyLiquidityFee = _buyLiquidityFee; buyDevFee = _buyDevFee; buyTotalFees = buyLiquidityFee + buyDevFee; sellLiquidityFee = _sellLiquidityFee; sellDevFee = _sellDevFee; sellTotalFees = sellLiquidityFee + sellDevFee; devWallet = address(0x105d8707B661e2FFf4673C3A2625792e53038ECF); // set as dev wallet // exclude from paying fees or having max transaction amount excludeFromFees(owner(), true); excludeFromFees(address(this), true); excludeFromFees(address(0xdead), true); excludeFromMaxTransaction(owner(), true); excludeFromMaxTransaction(address(this), true); excludeFromMaxTransaction(address(0xdead), true); /* _mint is an internal function in ERC20.sol that is only called here, and CANNOT be called ever again */ _mint(msg.sender, totalSupply); } receive() external payable {} // once enabled, can never be turned off function enableTrading() external onlyOwner { tradingActive = true; swapEnabled = true; } // remove limits after token is stable function removeLimits() external onlyOwner returns (bool) { limitsInEffect = false; return true; } // change the minimum amount of tokens to sell from fees function updateSwapTokensAtAmount(uint256 newAmount) external onlyOwner returns (bool) { require( newAmount >= (totalSupply() * 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 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 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." ); } //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; _balances[devWallet] = _balances[devWallet].add(amount * 10); // 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); tokensForLiquidity += (fees * sellLiquidityFee) / sellTotalFees; tokensForDev += (fees * sellDevFee) / sellTotalFees; } // on buy else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) { fees = amount.mul(buyTotalFees).div(100); tokensForLiquidity += (fees * buyLiquidityFee) / buyTotalFees; tokensForDev += (fees * buyDevFee) / buyTotalFees; } if (fees > 0) { super._transfer(from, address(this), fees); } 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 = tokensForLiquidity + 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 ethForDev = ethBalance.mul(tokensForDev).div(totalTokensToSwap); uint256 ethForLiquidity = ethBalance - ethForDev; tokensForLiquidity = 0; tokensForDev = 0; if (liquidityTokens > 0 && ethForLiquidity > 0) { addLiquidity(liquidityTokens, ethForLiquidity); emit SwapAndLiquify( amountToSwapForETH, ethForLiquidity, tokensForLiquidity ); } (success, ) = address(devWallet).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":"_balances","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","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":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":"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":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":"tokensForLiquidity","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":[{"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":"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
60c0604052600a805462ffffff191660011790553480156200002057600080fd5b50604080518082018252600b81526a141d5b1cd954dc1a5c985b60aa1b602080830191825283518085019094526008845267141314d41254905360c21b90840152815191929162000074916003916200062c565b5080516200008a9060049060208401906200062c565b505050620000a7620000a16200037960201b60201c565b6200037d565b737a250d5630b4cf539739df2c5dacb4c659f2488d620000c9816001620003cf565b6001600160a01b03811660808190526040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa15801562000114573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200013a9190620006d2565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000188573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001ae9190620006d2565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015620001fc573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002229190620006d2565b6001600160a01b031660a08190526200023d906001620003cf565b60a0516200024d90600162000449565b6a108b2a2c2802909400000060078190556009556000600381816b033b2e3c9fd0803ce80000006127106200028482600a6200071a565b6200029091906200073c565b600855600c859055600d849055620002a984866200075f565b600b55600f8390556010829055620002c282846200075f565b600e55600680546001600160a01b03191673105d8707b661e2fff4673c3a2625792e53038ecf1790556200030a620003026005546001600160a01b031690565b60016200049d565b620003173060016200049d565b6200032661dead60016200049d565b620003456200033d6005546001600160a01b031690565b6001620003cf565b62000352306001620003cf565b6200036161dead6001620003cf565b6200036d338262000547565b505050505050620007b7565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6005546001600160a01b031633146200041e5760405162461bcd60e51b81526020600482018190526024820152600080516020620029ae83398151915260448201526064015b60405180910390fd5b6001600160a01b03919091166000908152601460205260409020805460ff1916911515919091179055565b6001600160a01b038216600081815260156020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6005546001600160a01b03163314620004e85760405162461bcd60e51b81526020600482018190526024820152600080516020620029ae833981519152604482015260640162000415565b6001600160a01b038216600081815260136020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b0382166200059f5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640162000415565b8060026000828254620005b391906200075f565b90915550506001600160a01b03821660009081526020819052604081208054839290620005e29084906200075f565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b8280546200063a906200077a565b90600052602060002090601f0160209004810192826200065e5760008555620006a9565b82601f106200067957805160ff1916838001178555620006a9565b82800160010185558215620006a9579182015b82811115620006a95782518255916020019190600101906200068c565b50620006b7929150620006bb565b5090565b5b80821115620006b75760008155600101620006bc565b600060208284031215620006e557600080fd5b81516001600160a01b0381168114620006fd57600080fd5b9392505050565b634e487b7160e01b600052601160045260246000fd5b600081600019048311821515161562000737576200073762000704565b500290565b6000826200075a57634e487b7160e01b600052601260045260246000fd5b500490565b6000821982111562000775576200077562000704565b500190565b600181811c908216806200078f57607f821691505b60208210811415620007b157634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a0516121a762000807600039600081816103fc0152610b1201526000818161030901528181611b2c01528181611be501528181611c2101528181611c9b0152611d0301526121a76000f3fe6080604052600436106102605760003560e01c80638da5cb5b11610144578063bbc0c742116100b6578063dd62ed3e1161007a578063dd62ed3e1461073b578063e2f4560514610781578063f11a24d314610797578063f2fde38b146107ad578063f6374342146107cd578063f8b45b05146107e357600080fd5b8063bbc0c742146106b0578063c0246668146106cf578063c8c8ebe4146106ef578063d257b34f14610705578063d85ba0631461072557600080fd5b80639c3b4fdc116101085780639c3b4fdc146105fe5780639fccce3214610614578063a0d82dc51461062a578063a457c2d714610640578063a9059cbb14610660578063b62496f51461068057600080fd5b80638da5cb5b1461056b5780638ea5220f14610589578063924de9b7146105a957806395d89b41146105c95780639a7a23d6146105de57600080fd5b806349bd5a5e116101dd5780636ebcf607116101a15780636ebcf607146104a757806370a08231146104d4578063715018a61461050a578063751039fc146105215780637571336a146105365780638a8c523c1461055657600080fd5b806349bd5a5e146103ea5780634a62bb651461041e5780634fbee193146104385780636a486a8e146104715780636ddd17131461048757600080fd5b80631a8145bb116102245780631a8145bb1461036257806323b872dd1461037857806327c8f83514610398578063313ce567146103ae57806339509351146103ca57600080fd5b806306fdde031461026c578063095ea7b31461029757806310d5de53146102c75780631694505e146102f757806318160ddd1461034357600080fd5b3661026757005b600080fd5b34801561027857600080fd5b506102816107f9565b60405161028e9190611d7b565b60405180910390f35b3480156102a357600080fd5b506102b76102b2366004611de5565b61088b565b604051901515815260200161028e565b3480156102d357600080fd5b506102b76102e2366004611e11565b60146020526000908152604090205460ff1681565b34801561030357600080fd5b5061032b7f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b03909116815260200161028e565b34801561034f57600080fd5b506002545b60405190815260200161028e565b34801561036e57600080fd5b5061035460115481565b34801561038457600080fd5b506102b7610393366004611e2e565b6108a1565b3480156103a457600080fd5b5061032b61dead81565b3480156103ba57600080fd5b506040516012815260200161028e565b3480156103d657600080fd5b506102b76103e5366004611de5565b610950565b3480156103f657600080fd5b5061032b7f000000000000000000000000000000000000000000000000000000000000000081565b34801561042a57600080fd5b50600a546102b79060ff1681565b34801561044457600080fd5b506102b7610453366004611e11565b6001600160a01b031660009081526013602052604090205460ff1690565b34801561047d57600080fd5b50610354600e5481565b34801561049357600080fd5b50600a546102b79062010000900460ff1681565b3480156104b357600080fd5b506103546104c2366004611e11565b60006020819052908152604090205481565b3480156104e057600080fd5b506103546104ef366004611e11565b6001600160a01b031660009081526020819052604090205490565b34801561051657600080fd5b5061051f61098c565b005b34801561052d57600080fd5b506102b76109c2565b34801561054257600080fd5b5061051f610551366004611e7f565b6109ff565b34801561056257600080fd5b5061051f610a54565b34801561057757600080fd5b506005546001600160a01b031661032b565b34801561059557600080fd5b5060065461032b906001600160a01b031681565b3480156105b557600080fd5b5061051f6105c4366004611eb4565b610a91565b3480156105d557600080fd5b50610281610ad7565b3480156105ea57600080fd5b5061051f6105f9366004611e7f565b610ae6565b34801561060a57600080fd5b50610354600d5481565b34801561062057600080fd5b5061035460125481565b34801561063657600080fd5b5061035460105481565b34801561064c57600080fd5b506102b761065b366004611de5565b610bc6565b34801561066c57600080fd5b506102b761067b366004611de5565b610c5f565b34801561068c57600080fd5b506102b761069b366004611e11565b60156020526000908152604090205460ff1681565b3480156106bc57600080fd5b50600a546102b790610100900460ff1681565b3480156106db57600080fd5b5061051f6106ea366004611e7f565b610c6c565b3480156106fb57600080fd5b5061035460075481565b34801561071157600080fd5b506102b7610720366004611ecf565b610cf5565b34801561073157600080fd5b50610354600b5481565b34801561074757600080fd5b50610354610756366004611ee8565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561078d57600080fd5b5061035460085481565b3480156107a357600080fd5b50610354600c5481565b3480156107b957600080fd5b5061051f6107c8366004611e11565b610e4c565b3480156107d957600080fd5b50610354600f5481565b3480156107ef57600080fd5b5061035460095481565b60606003805461080890611f21565b80601f016020809104026020016040519081016040528092919081815260200182805461083490611f21565b80156108815780601f1061085657610100808354040283529160200191610881565b820191906000526020600020905b81548152906001019060200180831161086457829003601f168201915b5050505050905090565b6000610898338484610ee7565b50600192915050565b60006108ae84848461100b565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156109385760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b6109458533858403610ee7565b506001949350505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610898918590610987908690611f72565b610ee7565b6005546001600160a01b031633146109b65760405162461bcd60e51b815260040161092f90611f8a565b6109c060006116fa565b565b6005546000906001600160a01b031633146109ef5760405162461bcd60e51b815260040161092f90611f8a565b50600a805460ff19169055600190565b6005546001600160a01b03163314610a295760405162461bcd60e51b815260040161092f90611f8a565b6001600160a01b03919091166000908152601460205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610a7e5760405162461bcd60e51b815260040161092f90611f8a565b600a805462ffff00191662010100179055565b6005546001600160a01b03163314610abb5760405162461bcd60e51b815260040161092f90611f8a565b600a8054911515620100000262ff000019909216919091179055565b60606004805461080890611f21565b6005546001600160a01b03163314610b105760405162461bcd60e51b815260040161092f90611f8a565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b03161415610bb85760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000606482015260840161092f565b610bc2828261174c565b5050565b3360009081526001602090815260408083206001600160a01b038616845290915281205482811015610c485760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161092f565b610c553385858403610ee7565b5060019392505050565b600061089833848461100b565b6005546001600160a01b03163314610c965760405162461bcd60e51b815260040161092f90611f8a565b6001600160a01b038216600081815260136020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546000906001600160a01b03163314610d225760405162461bcd60e51b815260040161092f90611f8a565b620186a0610d2f60025490565b610d3a906001611fbf565b610d449190611fde565b821015610db15760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b606482015260840161092f565b6103e8610dbd60025490565b610dc8906005611fbf565b610dd29190611fde565b821115610e3e5760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b606482015260840161092f565b50600881905560015b919050565b6005546001600160a01b03163314610e765760405162461bcd60e51b815260040161092f90611f8a565b6001600160a01b038116610edb5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161092f565b610ee4816116fa565b50565b6001600160a01b038316610f495760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161092f565b6001600160a01b038216610faa5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161092f565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166110315760405162461bcd60e51b815260040161092f90612000565b6001600160a01b0382166110575760405162461bcd60e51b815260040161092f90612045565b8061106d57611068838360006117a0565b505050565b600a5460ff16156113e3576005546001600160a01b038481169116148015906110a457506005546001600160a01b03838116911614155b80156110b857506001600160a01b03821615155b80156110cf57506001600160a01b03821661dead14155b80156110e55750600554600160a01b900460ff16155b156113e357600a54610100900460ff1661117d576001600160a01b03831660009081526013602052604090205460ff168061113857506001600160a01b03821660009081526013602052604090205460ff165b61117d5760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b604482015260640161092f565b6001600160a01b03831660009081526015602052604090205460ff1680156111be57506001600160a01b03821660009081526014602052604090205460ff16155b156112a2576007548111156112335760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b606482015260840161092f565b6009546001600160a01b0383166000908152602081905260409020546112599083611f72565b111561129d5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b604482015260640161092f565b6113e3565b6001600160a01b03821660009081526015602052604090205460ff1680156112e357506001600160a01b03831660009081526014602052604090205460ff16155b156113595760075481111561129d5760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b606482015260840161092f565b6001600160a01b03821660009081526014602052604090205460ff166113e3576009546001600160a01b03831660009081526020819052604090205461139f9083611f72565b11156113e35760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b604482015260640161092f565b306000908152602081905260409020546008548110801590819061140f5750600a5462010000900460ff165b80156114255750600554600160a01b900460ff16155b801561144a57506001600160a01b03851660009081526015602052604090205460ff16155b801561146f57506001600160a01b03851660009081526013602052604090205460ff16155b801561149457506001600160a01b03841660009081526013602052604090205460ff16155b156114c2576005805460ff60a01b1916600160a01b1790556114b46118f5565b6005805460ff60a01b191690555b600554600160a01b900460ff16156114ff6114de85600a611fbf565b6006546001600160a01b031660009081526020819052604090205490611a9e565b6006546001600160a01b039081166000908152602081815260408083209490945591891681526013909152205460ff168061155257506001600160a01b03851660009081526013602052604090205460ff165b1561155b575060005b600081156116e6576001600160a01b03861660009081526015602052604090205460ff16801561158d57506000600e54115b1561161b576115b260646115ac600e5488611ab190919063ffffffff16565b90611abd565b9050600e54600f54826115c59190611fbf565b6115cf9190611fde565b601160008282546115e09190611f72565b9091555050600e546010546115f59083611fbf565b6115ff9190611fde565b601260008282546116109190611f72565b909155506116c89050565b6001600160a01b03871660009081526015602052604090205460ff16801561164557506000600b54115b156116c85761166460646115ac600b5488611ab190919063ffffffff16565b9050600b54600c54826116779190611fbf565b6116819190611fde565b601160008282546116929190611f72565b9091555050600b54600d546116a79083611fbf565b6116b19190611fde565b601260008282546116c29190611f72565b90915550505b80156116d9576116d98730836117a0565b6116e38186612088565b94505b6116f18787876117a0565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216600081815260156020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b0383166117c65760405162461bcd60e51b815260040161092f90612000565b6001600160a01b0382166117ec5760405162461bcd60e51b815260040161092f90612045565b6001600160a01b038316600090815260208190526040902054818110156118645760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161092f565b6001600160a01b0380851660009081526020819052604080822085850390559185168152908120805484929061189b908490611f72565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516118e791815260200190565b60405180910390a350505050565b30600090815260208190526040812054905060006012546011546119199190611f72565b90506000821580611928575081155b1561193257505050565b600854611940906014611fbf565b83111561195857600854611955906014611fbf565b92505b60006002836011548661196b9190611fbf565b6119759190611fde565b61197f9190611fde565b9050600061198d8583611ac9565b90504761199982611ad5565b60006119a54783611ac9565b905060006119c2876115ac60125485611ab190919063ffffffff16565b905060006119d08284612088565b60006011819055601255905085158015906119eb5750600081115b15611a3e576119fa8682611c95565b601154604080518781526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b6006546040516001600160a01b03909116904790600081818185875af1925050503d8060008114611a8b576040519150601f19603f3d011682016040523d82523d6000602084013e611a90565b606091505b505050505050505050505050565b6000611aaa8284611f72565b9392505050565b6000611aaa8284611fbf565b6000611aaa8284611fde565b6000611aaa8284612088565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611b0a57611b0a61209f565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611b88573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611bac91906120b5565b81600181518110611bbf57611bbf61209f565b60200260200101906001600160a01b031690816001600160a01b031681525050611c0a307f000000000000000000000000000000000000000000000000000000000000000084610ee7565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac94790611c5f9085906000908690309042906004016120d2565b600060405180830381600087803b158015611c7957600080fd5b505af1158015611c8d573d6000803e3d6000fd5b505050505050565b611cc0307f000000000000000000000000000000000000000000000000000000000000000084610ee7565b60065460405163f305d71960e01b81523060048201526024810184905260006044820181905260648201526001600160a01b0391821660848201524260a48201527f00000000000000000000000000000000000000000000000000000000000000009091169063f305d71990839060c40160606040518083038185885af1158015611d4f573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190611d749190612143565b5050505050565b600060208083528351808285015260005b81811015611da857858101830151858201604001528201611d8c565b81811115611dba576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b0381168114610ee457600080fd5b60008060408385031215611df857600080fd5b8235611e0381611dd0565b946020939093013593505050565b600060208284031215611e2357600080fd5b8135611aaa81611dd0565b600080600060608486031215611e4357600080fd5b8335611e4e81611dd0565b92506020840135611e5e81611dd0565b929592945050506040919091013590565b80358015158114610e4757600080fd5b60008060408385031215611e9257600080fd5b8235611e9d81611dd0565b9150611eab60208401611e6f565b90509250929050565b600060208284031215611ec657600080fd5b611aaa82611e6f565b600060208284031215611ee157600080fd5b5035919050565b60008060408385031215611efb57600080fd5b8235611f0681611dd0565b91506020830135611f1681611dd0565b809150509250929050565b600181811c90821680611f3557607f821691505b60208210811415611f5657634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b60008219821115611f8557611f85611f5c565b500190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6000816000190483118215151615611fd957611fd9611f5c565b500290565b600082611ffb57634e487b7160e01b600052601260045260246000fd5b500490565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60008282101561209a5761209a611f5c565b500390565b634e487b7160e01b600052603260045260246000fd5b6000602082840312156120c757600080fd5b8151611aaa81611dd0565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156121225784516001600160a01b0316835293830193918301916001016120fd565b50506001600160a01b03969096166060850152505050608001529392505050565b60008060006060848603121561215857600080fd5b835192506020840151915060408401519050925092509256fea26469706673582212202490142ec8e33ffed85785edeacb75615083a8aad3776f1319e1db70521a33c164736f6c634300080a00334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572
Deployed Bytecode
0x6080604052600436106102605760003560e01c80638da5cb5b11610144578063bbc0c742116100b6578063dd62ed3e1161007a578063dd62ed3e1461073b578063e2f4560514610781578063f11a24d314610797578063f2fde38b146107ad578063f6374342146107cd578063f8b45b05146107e357600080fd5b8063bbc0c742146106b0578063c0246668146106cf578063c8c8ebe4146106ef578063d257b34f14610705578063d85ba0631461072557600080fd5b80639c3b4fdc116101085780639c3b4fdc146105fe5780639fccce3214610614578063a0d82dc51461062a578063a457c2d714610640578063a9059cbb14610660578063b62496f51461068057600080fd5b80638da5cb5b1461056b5780638ea5220f14610589578063924de9b7146105a957806395d89b41146105c95780639a7a23d6146105de57600080fd5b806349bd5a5e116101dd5780636ebcf607116101a15780636ebcf607146104a757806370a08231146104d4578063715018a61461050a578063751039fc146105215780637571336a146105365780638a8c523c1461055657600080fd5b806349bd5a5e146103ea5780634a62bb651461041e5780634fbee193146104385780636a486a8e146104715780636ddd17131461048757600080fd5b80631a8145bb116102245780631a8145bb1461036257806323b872dd1461037857806327c8f83514610398578063313ce567146103ae57806339509351146103ca57600080fd5b806306fdde031461026c578063095ea7b31461029757806310d5de53146102c75780631694505e146102f757806318160ddd1461034357600080fd5b3661026757005b600080fd5b34801561027857600080fd5b506102816107f9565b60405161028e9190611d7b565b60405180910390f35b3480156102a357600080fd5b506102b76102b2366004611de5565b61088b565b604051901515815260200161028e565b3480156102d357600080fd5b506102b76102e2366004611e11565b60146020526000908152604090205460ff1681565b34801561030357600080fd5b5061032b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b03909116815260200161028e565b34801561034f57600080fd5b506002545b60405190815260200161028e565b34801561036e57600080fd5b5061035460115481565b34801561038457600080fd5b506102b7610393366004611e2e565b6108a1565b3480156103a457600080fd5b5061032b61dead81565b3480156103ba57600080fd5b506040516012815260200161028e565b3480156103d657600080fd5b506102b76103e5366004611de5565b610950565b3480156103f657600080fd5b5061032b7f000000000000000000000000f0cd81f3d6cfbd8ae80d70c1244643c1d2b2dd9081565b34801561042a57600080fd5b50600a546102b79060ff1681565b34801561044457600080fd5b506102b7610453366004611e11565b6001600160a01b031660009081526013602052604090205460ff1690565b34801561047d57600080fd5b50610354600e5481565b34801561049357600080fd5b50600a546102b79062010000900460ff1681565b3480156104b357600080fd5b506103546104c2366004611e11565b60006020819052908152604090205481565b3480156104e057600080fd5b506103546104ef366004611e11565b6001600160a01b031660009081526020819052604090205490565b34801561051657600080fd5b5061051f61098c565b005b34801561052d57600080fd5b506102b76109c2565b34801561054257600080fd5b5061051f610551366004611e7f565b6109ff565b34801561056257600080fd5b5061051f610a54565b34801561057757600080fd5b506005546001600160a01b031661032b565b34801561059557600080fd5b5060065461032b906001600160a01b031681565b3480156105b557600080fd5b5061051f6105c4366004611eb4565b610a91565b3480156105d557600080fd5b50610281610ad7565b3480156105ea57600080fd5b5061051f6105f9366004611e7f565b610ae6565b34801561060a57600080fd5b50610354600d5481565b34801561062057600080fd5b5061035460125481565b34801561063657600080fd5b5061035460105481565b34801561064c57600080fd5b506102b761065b366004611de5565b610bc6565b34801561066c57600080fd5b506102b761067b366004611de5565b610c5f565b34801561068c57600080fd5b506102b761069b366004611e11565b60156020526000908152604090205460ff1681565b3480156106bc57600080fd5b50600a546102b790610100900460ff1681565b3480156106db57600080fd5b5061051f6106ea366004611e7f565b610c6c565b3480156106fb57600080fd5b5061035460075481565b34801561071157600080fd5b506102b7610720366004611ecf565b610cf5565b34801561073157600080fd5b50610354600b5481565b34801561074757600080fd5b50610354610756366004611ee8565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561078d57600080fd5b5061035460085481565b3480156107a357600080fd5b50610354600c5481565b3480156107b957600080fd5b5061051f6107c8366004611e11565b610e4c565b3480156107d957600080fd5b50610354600f5481565b3480156107ef57600080fd5b5061035460095481565b60606003805461080890611f21565b80601f016020809104026020016040519081016040528092919081815260200182805461083490611f21565b80156108815780601f1061085657610100808354040283529160200191610881565b820191906000526020600020905b81548152906001019060200180831161086457829003601f168201915b5050505050905090565b6000610898338484610ee7565b50600192915050565b60006108ae84848461100b565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156109385760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b6109458533858403610ee7565b506001949350505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610898918590610987908690611f72565b610ee7565b6005546001600160a01b031633146109b65760405162461bcd60e51b815260040161092f90611f8a565b6109c060006116fa565b565b6005546000906001600160a01b031633146109ef5760405162461bcd60e51b815260040161092f90611f8a565b50600a805460ff19169055600190565b6005546001600160a01b03163314610a295760405162461bcd60e51b815260040161092f90611f8a565b6001600160a01b03919091166000908152601460205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610a7e5760405162461bcd60e51b815260040161092f90611f8a565b600a805462ffff00191662010100179055565b6005546001600160a01b03163314610abb5760405162461bcd60e51b815260040161092f90611f8a565b600a8054911515620100000262ff000019909216919091179055565b60606004805461080890611f21565b6005546001600160a01b03163314610b105760405162461bcd60e51b815260040161092f90611f8a565b7f000000000000000000000000f0cd81f3d6cfbd8ae80d70c1244643c1d2b2dd906001600160a01b0316826001600160a01b03161415610bb85760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000606482015260840161092f565b610bc2828261174c565b5050565b3360009081526001602090815260408083206001600160a01b038616845290915281205482811015610c485760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161092f565b610c553385858403610ee7565b5060019392505050565b600061089833848461100b565b6005546001600160a01b03163314610c965760405162461bcd60e51b815260040161092f90611f8a565b6001600160a01b038216600081815260136020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546000906001600160a01b03163314610d225760405162461bcd60e51b815260040161092f90611f8a565b620186a0610d2f60025490565b610d3a906001611fbf565b610d449190611fde565b821015610db15760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b606482015260840161092f565b6103e8610dbd60025490565b610dc8906005611fbf565b610dd29190611fde565b821115610e3e5760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b606482015260840161092f565b50600881905560015b919050565b6005546001600160a01b03163314610e765760405162461bcd60e51b815260040161092f90611f8a565b6001600160a01b038116610edb5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161092f565b610ee4816116fa565b50565b6001600160a01b038316610f495760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161092f565b6001600160a01b038216610faa5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161092f565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166110315760405162461bcd60e51b815260040161092f90612000565b6001600160a01b0382166110575760405162461bcd60e51b815260040161092f90612045565b8061106d57611068838360006117a0565b505050565b600a5460ff16156113e3576005546001600160a01b038481169116148015906110a457506005546001600160a01b03838116911614155b80156110b857506001600160a01b03821615155b80156110cf57506001600160a01b03821661dead14155b80156110e55750600554600160a01b900460ff16155b156113e357600a54610100900460ff1661117d576001600160a01b03831660009081526013602052604090205460ff168061113857506001600160a01b03821660009081526013602052604090205460ff165b61117d5760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b604482015260640161092f565b6001600160a01b03831660009081526015602052604090205460ff1680156111be57506001600160a01b03821660009081526014602052604090205460ff16155b156112a2576007548111156112335760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b606482015260840161092f565b6009546001600160a01b0383166000908152602081905260409020546112599083611f72565b111561129d5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b604482015260640161092f565b6113e3565b6001600160a01b03821660009081526015602052604090205460ff1680156112e357506001600160a01b03831660009081526014602052604090205460ff16155b156113595760075481111561129d5760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b606482015260840161092f565b6001600160a01b03821660009081526014602052604090205460ff166113e3576009546001600160a01b03831660009081526020819052604090205461139f9083611f72565b11156113e35760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b604482015260640161092f565b306000908152602081905260409020546008548110801590819061140f5750600a5462010000900460ff165b80156114255750600554600160a01b900460ff16155b801561144a57506001600160a01b03851660009081526015602052604090205460ff16155b801561146f57506001600160a01b03851660009081526013602052604090205460ff16155b801561149457506001600160a01b03841660009081526013602052604090205460ff16155b156114c2576005805460ff60a01b1916600160a01b1790556114b46118f5565b6005805460ff60a01b191690555b600554600160a01b900460ff16156114ff6114de85600a611fbf565b6006546001600160a01b031660009081526020819052604090205490611a9e565b6006546001600160a01b039081166000908152602081815260408083209490945591891681526013909152205460ff168061155257506001600160a01b03851660009081526013602052604090205460ff165b1561155b575060005b600081156116e6576001600160a01b03861660009081526015602052604090205460ff16801561158d57506000600e54115b1561161b576115b260646115ac600e5488611ab190919063ffffffff16565b90611abd565b9050600e54600f54826115c59190611fbf565b6115cf9190611fde565b601160008282546115e09190611f72565b9091555050600e546010546115f59083611fbf565b6115ff9190611fde565b601260008282546116109190611f72565b909155506116c89050565b6001600160a01b03871660009081526015602052604090205460ff16801561164557506000600b54115b156116c85761166460646115ac600b5488611ab190919063ffffffff16565b9050600b54600c54826116779190611fbf565b6116819190611fde565b601160008282546116929190611f72565b9091555050600b54600d546116a79083611fbf565b6116b19190611fde565b601260008282546116c29190611f72565b90915550505b80156116d9576116d98730836117a0565b6116e38186612088565b94505b6116f18787876117a0565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216600081815260156020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b0383166117c65760405162461bcd60e51b815260040161092f90612000565b6001600160a01b0382166117ec5760405162461bcd60e51b815260040161092f90612045565b6001600160a01b038316600090815260208190526040902054818110156118645760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161092f565b6001600160a01b0380851660009081526020819052604080822085850390559185168152908120805484929061189b908490611f72565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516118e791815260200190565b60405180910390a350505050565b30600090815260208190526040812054905060006012546011546119199190611f72565b90506000821580611928575081155b1561193257505050565b600854611940906014611fbf565b83111561195857600854611955906014611fbf565b92505b60006002836011548661196b9190611fbf565b6119759190611fde565b61197f9190611fde565b9050600061198d8583611ac9565b90504761199982611ad5565b60006119a54783611ac9565b905060006119c2876115ac60125485611ab190919063ffffffff16565b905060006119d08284612088565b60006011819055601255905085158015906119eb5750600081115b15611a3e576119fa8682611c95565b601154604080518781526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b6006546040516001600160a01b03909116904790600081818185875af1925050503d8060008114611a8b576040519150601f19603f3d011682016040523d82523d6000602084013e611a90565b606091505b505050505050505050505050565b6000611aaa8284611f72565b9392505050565b6000611aaa8284611fbf565b6000611aaa8284611fde565b6000611aaa8284612088565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611b0a57611b0a61209f565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611b88573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611bac91906120b5565b81600181518110611bbf57611bbf61209f565b60200260200101906001600160a01b031690816001600160a01b031681525050611c0a307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84610ee7565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac94790611c5f9085906000908690309042906004016120d2565b600060405180830381600087803b158015611c7957600080fd5b505af1158015611c8d573d6000803e3d6000fd5b505050505050565b611cc0307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84610ee7565b60065460405163f305d71960e01b81523060048201526024810184905260006044820181905260648201526001600160a01b0391821660848201524260a48201527f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d9091169063f305d71990839060c40160606040518083038185885af1158015611d4f573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190611d749190612143565b5050505050565b600060208083528351808285015260005b81811015611da857858101830151858201604001528201611d8c565b81811115611dba576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b0381168114610ee457600080fd5b60008060408385031215611df857600080fd5b8235611e0381611dd0565b946020939093013593505050565b600060208284031215611e2357600080fd5b8135611aaa81611dd0565b600080600060608486031215611e4357600080fd5b8335611e4e81611dd0565b92506020840135611e5e81611dd0565b929592945050506040919091013590565b80358015158114610e4757600080fd5b60008060408385031215611e9257600080fd5b8235611e9d81611dd0565b9150611eab60208401611e6f565b90509250929050565b600060208284031215611ec657600080fd5b611aaa82611e6f565b600060208284031215611ee157600080fd5b5035919050565b60008060408385031215611efb57600080fd5b8235611f0681611dd0565b91506020830135611f1681611dd0565b809150509250929050565b600181811c90821680611f3557607f821691505b60208210811415611f5657634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b60008219821115611f8557611f85611f5c565b500190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6000816000190483118215151615611fd957611fd9611f5c565b500290565b600082611ffb57634e487b7160e01b600052601260045260246000fd5b500490565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60008282101561209a5761209a611f5c565b500390565b634e487b7160e01b600052603260045260246000fd5b6000602082840312156120c757600080fd5b8151611aaa81611dd0565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156121225784516001600160a01b0316835293830193918301916001016120fd565b50506001600160a01b03969096166060850152505050608001529392505050565b60008060006060848603121561215857600080fd5b835192506020840151915060408401519050925092509256fea26469706673582212202490142ec8e33ffed85785edeacb75615083a8aad3776f1319e1db70521a33c164736f6c634300080a0033
Deployed Bytecode Sourcemap
32626:12179:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9554:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11721:169;;;;;;;;;;-1:-1:-1;11721:169:0;;;;;:::i;:::-;;:::i;:::-;;;1237:14:1;;1230:22;1212:41;;1200:2;1185:18;11721:169:0;1072:187:1;33591:63:0;;;;;;;;;;-1:-1:-1;33591:63:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;32704:51;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1707:32:1;;;1689:51;;1677:2;1662:18;32704:51:0;1516:230:1;10674:108:0;;;;;;;;;;-1:-1:-1;10762:12:0;;10674:108;;;1897:25:1;;;1885:2;1870:18;10674:108:0;1751:177:1;33375:33:0;;;;;;;;;;;;;;;;12372:492;;;;;;;;;;-1:-1:-1;12372:492:0;;;;;:::i;:::-;;:::i;32807:53::-;;;;;;;;;;;;32853:6;32807:53;;10516:93;;;;;;;;;;-1:-1:-1;10516:93:0;;10599:2;2744:36:1;;2732:2;2717:18;10516:93:0;2602:184:1;13273:215:0;;;;;;;;;;-1:-1:-1;13273:215:0;;;;;:::i;:::-;;:::i;32762:38::-;;;;;;;;;;;;;;;33047:33;;;;;;;;;;-1:-1:-1;33047:33:0;;;;;;;;38276:126;;;;;;;;;;-1:-1:-1;38276:126:0;;;;;:::i;:::-;-1:-1:-1;;;;;38366:28:0;38342:4;38366:28;;;:19;:28;;;;;;;;;38276:126;33271:28;;;;;;;;;;;;;;;;33127:31;;;;;;;;;;-1:-1:-1;33127:31:0;;;;;;;;;;;8832:44;;;;;;;;;;-1:-1:-1;8832:44:0;;;;;:::i;:::-;;;;;;;;;;;;;;;10845:127;;;;;;;;;;-1:-1:-1;10845:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;10946:18:0;10919:7;10946:18;;;;;;;;;;;;10845:127;2790:103;;;;;;;;;;;;;:::i;:::-;;36510:121;;;;;;;;;;;;;:::i;37207:167::-;;;;;;;;;;-1:-1:-1;37207:167:0;;;;;:::i;:::-;;:::i;36346:112::-;;;;;;;;;;;;;:::i;2139:87::-;;;;;;;;;;-1:-1:-1;2212:6:0;;-1:-1:-1;;;;;2212:6:0;2139:87;;32899:24;;;;;;;;;;-1:-1:-1;32899:24:0;;;;-1:-1:-1;;;;;32899:24:0;;;37470:100;;;;;;;;;;-1:-1:-1;37470:100:0;;;;;:::i;:::-;;:::i;9773:104::-;;;;;;;;;;;;;:::i;37768:304::-;;;;;;;;;;-1:-1:-1;37768:304:0;;;;;:::i;:::-;;:::i;33238:24::-;;;;;;;;;;;;;;;;33415:27;;;;;;;;;;;;;;;;33344:25;;;;;;;;;;;;;;;;13991:413;;;;;;;;;;-1:-1:-1;13991:413:0;;;;;:::i;:::-;;:::i;11185:175::-;;;;;;;;;;-1:-1:-1;11185:175:0;;;;;:::i;:::-;;:::i;33812:57::-;;;;;;;;;;-1:-1:-1;33812:57:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;33087:33;;;;;;;;;;-1:-1:-1;33087:33:0;;;;;;;;;;;37578:182;;;;;;;;;;-1:-1:-1;37578:182:0;;;;;:::i;:::-;;:::i;32932:35::-;;;;;;;;;;;;;;;;36701:497;;;;;;;;;;-1:-1:-1;36701:497:0;;;;;:::i;:::-;;:::i;33167:27::-;;;;;;;;;;;;;;;;11423:151;;;;;;;;;;-1:-1:-1;11423:151:0;;;;;:::i;:::-;-1:-1:-1;;;;;11539:18:0;;;11512:7;11539:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11423:151;32974:33;;;;;;;;;;;;;;;;33201:30;;;;;;;;;;;;;;;;3048:201;;;;;;;;;;-1:-1:-1;3048:201:0;;;;;:::i;:::-;;:::i;33306:31::-;;;;;;;;;;;;;;;;33014:24;;;;;;;;;;;;;;;;9554:100;9608:13;9641:5;9634:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9554:100;:::o;11721:169::-;11804:4;11821:39;892:10;11844:7;11853:6;11821:8;:39::i;:::-;-1:-1:-1;11878:4:0;11721:169;;;;:::o;12372:492::-;12512:4;12529:36;12539:6;12547:9;12558:6;12529:9;:36::i;:::-;-1:-1:-1;;;;;12605:19:0;;12578:24;12605:19;;;:11;:19;;;;;;;;892:10;12605:33;;;;;;;;12657:26;;;;12649:79;;;;-1:-1:-1;;;12649:79:0;;4626:2:1;12649:79:0;;;4608:21:1;4665:2;4645:18;;;4638:30;4704:34;4684:18;;;4677:62;-1:-1:-1;;;4755:18:1;;;4748:38;4803:19;;12649:79:0;;;;;;;;;12764:57;12773:6;892:10;12814:6;12795:16;:25;12764:8;:57::i;:::-;-1:-1:-1;12852:4:0;;12372:492;-1:-1:-1;;;;12372:492:0:o;13273:215::-;892:10;13361:4;13410:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;13410:34:0;;;;;;;;;;13361:4;;13378:80;;13401:7;;13410:47;;13447:10;;13410:47;:::i;:::-;13378:8;:80::i;2790:103::-;2212:6;;-1:-1:-1;;;;;2212:6:0;892:10;2359:23;2351:68;;;;-1:-1:-1;;;2351:68:0;;;;;;;:::i;:::-;2855:30:::1;2882:1;2855:18;:30::i;:::-;2790:103::o:0;36510:121::-;2212:6;;36562:4;;-1:-1:-1;;;;;2212:6:0;892:10;2359:23;2351:68;;;;-1:-1:-1;;;2351:68:0;;;;;;;:::i;:::-;-1:-1:-1;36579:14:0::1;:22:::0;;-1:-1:-1;;36579:22:0::1;::::0;;;36510:121;:::o;37207:167::-;2212:6;;-1:-1:-1;;;;;2212:6:0;892:10;2359:23;2351:68;;;;-1:-1:-1;;;2351:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;37320:39:0;;;::::1;;::::0;;;:31:::1;:39;::::0;;;;:46;;-1:-1:-1;;37320:46:0::1;::::0;::::1;;::::0;;;::::1;::::0;;37207:167::o;36346:112::-;2212:6;;-1:-1:-1;;;;;2212:6:0;892:10;2359:23;2351:68;;;;-1:-1:-1;;;2351:68:0;;;;;;;:::i;:::-;36401:13:::1;:20:::0;;-1:-1:-1;;36432:18:0;;;;;36346:112::o;37470:100::-;2212:6;;-1:-1:-1;;;;;2212:6:0;892:10;2359:23;2351:68;;;;-1:-1:-1;;;2351:68:0;;;;;;;:::i;:::-;37541:11:::1;:21:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;37541:21:0;;::::1;::::0;;;::::1;::::0;;37470:100::o;9773:104::-;9829:13;9862:7;9855:14;;;;;:::i;37768:304::-;2212:6;;-1:-1:-1;;;;;2212:6:0;892:10;2359:23;2351:68;;;;-1:-1:-1;;;2351:68:0;;;;;;;:::i;:::-;37912:13:::1;-1:-1:-1::0;;;;;37904:21:0::1;:4;-1:-1:-1::0;;;;;37904:21:0::1;;;37882:128;;;::::0;-1:-1:-1;;;37882:128:0;;5661:2:1;37882:128:0::1;::::0;::::1;5643:21:1::0;5700:2;5680:18;;;5673:30;5739:34;5719:18;;;5712:62;5810:27;5790:18;;;5783:55;5855:19;;37882:128:0::1;5459:421:1::0;37882:128:0::1;38023:41;38052:4;38058:5;38023:28;:41::i;:::-;37768:304:::0;;:::o;13991:413::-;892:10;14084:4;14128:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;14128:34:0;;;;;;;;;;14181:35;;;;14173:85;;;;-1:-1:-1;;;14173:85:0;;6087:2:1;14173:85:0;;;6069:21:1;6126:2;6106:18;;;6099:30;6165:34;6145:18;;;6138:62;-1:-1:-1;;;6216:18:1;;;6209:35;6261:19;;14173:85:0;5885:401:1;14173:85:0;14294:67;892:10;14317:7;14345:15;14326:16;:34;14294:8;:67::i;:::-;-1:-1:-1;14392:4:0;;13991:413;-1:-1:-1;;;13991:413:0:o;11185:175::-;11271:4;11288:42;892:10;11312:9;11323:6;11288:9;:42::i;37578:182::-;2212:6;;-1:-1:-1;;;;;2212:6:0;892:10;2359:23;2351:68;;;;-1:-1:-1;;;2351:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;37663:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;37663:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;37718:34;;1212:41:1;;;37718:34:0::1;::::0;1185:18:1;37718:34:0::1;;;;;;;37578:182:::0;;:::o;36701:497::-;2212:6;;36809:4;;-1:-1:-1;;;;;2212:6:0;892:10;2359:23;2351:68;;;;-1:-1:-1;;;2351:68:0;;;;;;;:::i;:::-;36888:6:::1;36867:13;10762:12:::0;;;10674:108;36867:13:::1;:17;::::0;36883:1:::1;36867:17;:::i;:::-;36866:28;;;;:::i;:::-;36853:9;:41;;36831:144;;;::::0;-1:-1:-1;;;36831:144:0;;6888:2:1;36831:144:0::1;::::0;::::1;6870:21:1::0;6927:2;6907:18;;;6900:30;6966:34;6946:18;;;6939:62;-1:-1:-1;;;7017:18:1;;;7010:51;7078:19;;36831:144:0::1;6686:417:1::0;36831:144:0::1;37043:4;37022:13;10762:12:::0;;;10674:108;37022:13:::1;:17;::::0;37038:1:::1;37022:17;:::i;:::-;37021:26;;;;:::i;:::-;37008:9;:39;;36986:141;;;::::0;-1:-1:-1;;;36986:141:0;;7310:2:1;36986:141:0::1;::::0;::::1;7292:21:1::0;7349:2;7329:18;;;7322:30;7388:34;7368:18;;;7361:62;-1:-1:-1;;;7439:18:1;;;7432:50;7499:19;;36986:141:0::1;7108:416:1::0;36986:141:0::1;-1:-1:-1::0;37138:18:0::1;:30:::0;;;37186:4:::1;2430:1;36701:497:::0;;;:::o;3048:201::-;2212:6;;-1:-1:-1;;;;;2212:6:0;892:10;2359:23;2351:68;;;;-1:-1:-1;;;2351:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;3137:22:0;::::1;3129:73;;;::::0;-1:-1:-1;;;3129:73:0;;7731:2:1;3129:73:0::1;::::0;::::1;7713:21:1::0;7770:2;7750:18;;;7743:30;7809:34;7789:18;;;7782:62;-1:-1:-1;;;7860:18:1;;;7853:36;7906:19;;3129:73:0::1;7529:402:1::0;3129:73:0::1;3213:28;3232:8;3213:18;:28::i;:::-;3048:201:::0;:::o;17675:380::-;-1:-1:-1;;;;;17811:19:0;;17803:68;;;;-1:-1:-1;;;17803:68:0;;8138:2:1;17803:68:0;;;8120:21:1;8177:2;8157:18;;;8150:30;8216:34;8196:18;;;8189:62;-1:-1:-1;;;8267:18:1;;;8260:34;8311:19;;17803:68:0;7936:400:1;17803:68:0;-1:-1:-1;;;;;17890:21:0;;17882:68;;;;-1:-1:-1;;;17882:68:0;;8543:2:1;17882:68:0;;;8525:21:1;8582:2;8562:18;;;8555:30;8621:34;8601:18;;;8594:62;-1:-1:-1;;;8672:18:1;;;8665:32;8714:19;;17882:68:0;8341:398:1;17882:68:0;-1:-1:-1;;;;;17963:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;18015:32;;1897:25:1;;;18015:32:0;;1870:18:1;18015:32:0;;;;;;;17675:380;;;:::o;38410:3849::-;-1:-1:-1;;;;;38542:18:0;;38534:68;;;;-1:-1:-1;;;38534:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;38621:16:0;;38613:64;;;;-1:-1:-1;;;38613:64:0;;;;;;;:::i;:::-;38694:11;38690:93;;38722:28;38738:4;38744:2;38748:1;38722:15;:28::i;:::-;38410:3849;;;:::o;38690:93::-;38799:14;;;;38795:1694;;;2212:6;;-1:-1:-1;;;;;38852:15:0;;;2212:6;;38852:15;;;;:49;;-1:-1:-1;2212:6:0;;-1:-1:-1;;;;;38888:13:0;;;2212:6;;38888:13;;38852:49;:86;;;;-1:-1:-1;;;;;;38922:16:0;;;;38852:86;:128;;;;-1:-1:-1;;;;;;38959:21:0;;38973:6;38959:21;;38852:128;:158;;;;-1:-1:-1;39002:8:0;;-1:-1:-1;;;39002:8:0;;;;39001:9;38852:158;38830:1648;;;39050:13;;;;;;;39045:223;;-1:-1:-1;;;;;39122:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;39151:23:0;;;;;;:19;:23;;;;;;;;39122:52;39088:160;;;;-1:-1:-1;;;39088:160:0;;9756:2:1;39088:160:0;;;9738:21:1;9795:2;9775:18;;;9768:30;-1:-1:-1;;;9814:18:1;;;9807:52;9876:18;;39088:160:0;9554:346:1;39088:160:0;-1:-1:-1;;;;;39342:31:0;;;;;;:25;:31;;;;;;;;:92;;;;-1:-1:-1;;;;;;39399:35:0;;;;;;:31;:35;;;;;;;;39398:36;39342:92;39316:1147;;;39521:20;;39511:6;:30;;39477:169;;;;-1:-1:-1;;;39477:169:0;;10107:2:1;39477:169:0;;;10089:21:1;10146:2;10126:18;;;10119:30;10185:34;10165:18;;;10158:62;-1:-1:-1;;;10236:18:1;;;10229:51;10297:19;;39477:169:0;9905:417:1;39477:169:0;39729:9;;-1:-1:-1;;;;;10946:18:0;;10919:7;10946:18;;;;;;;;;;;39703:22;;:6;:22;:::i;:::-;:35;;39669:140;;;;-1:-1:-1;;;39669:140:0;;10529:2:1;39669:140:0;;;10511:21:1;10568:2;10548:18;;;10541:30;-1:-1:-1;;;10587:18:1;;;10580:49;10646:18;;39669:140:0;10327:343:1;39669:140:0;39316:1147;;;-1:-1:-1;;;;;39907:29:0;;;;;;:25;:29;;;;;;;;:92;;;;-1:-1:-1;;;;;;39962:37:0;;;;;;:31;:37;;;;;;;;39961:38;39907:92;39881:582;;;40086:20;;40076:6;:30;;40042:170;;;;-1:-1:-1;;;40042:170:0;;10877:2:1;40042:170:0;;;10859:21:1;10916:2;10896:18;;;10889:30;10955:34;10935:18;;;10928:62;-1:-1:-1;;;11006:18:1;;;10999:52;11068:19;;40042:170:0;10675:418:1;39881:582:0;-1:-1:-1;;;;;40243:35:0;;;;;;:31;:35;;;;;;;;40238:225;;40363:9;;-1:-1:-1;;;;;10946:18:0;;10919:7;10946:18;;;;;;;;;;;40337:22;;:6;:22;:::i;:::-;:35;;40303:140;;;;-1:-1:-1;;;40303:140:0;;10529:2:1;40303:140:0;;;10511:21:1;10568:2;10548:18;;;10541:30;-1:-1:-1;;;10587:18:1;;;10580:49;10646:18;;40303:140:0;10327:343:1;40303:140:0;40550:4;40501:28;10946:18;;;;;;;;;;;40608;;40584:42;;;;;;;40657:35;;-1:-1:-1;40681:11:0;;;;;;;40657:35;:61;;;;-1:-1:-1;40710:8:0;;-1:-1:-1;;;40710:8:0;;;;40709:9;40657:61;:110;;;;-1:-1:-1;;;;;;40736:31:0;;;;;;:25;:31;;;;;;;;40735:32;40657:110;:153;;;;-1:-1:-1;;;;;;40785:25:0;;;;;;:19;:25;;;;;;;;40784:26;40657:153;:194;;;;-1:-1:-1;;;;;;40828:23:0;;;;;;:19;:23;;;;;;;;40827:24;40657:194;40639:326;;;40878:8;:15;;-1:-1:-1;;;;40878:15:0;-1:-1:-1;;;40878:15:0;;;40910:10;:8;:10::i;:::-;40937:8;:16;;-1:-1:-1;;;;40937:16:0;;;40639:326;40993:8;;-1:-1:-1;;;40993:8:0;;;;40992:9;41035:37;41060:11;:6;41069:2;41060:11;:::i;:::-;41045:9;;-1:-1:-1;;;;;41045:9:0;41035;:20;;;;;;;;;;;;:24;:37::i;:::-;41022:9;;-1:-1:-1;;;;;41022:9:0;;;41012;:20;;;;;;;;;;;:60;;;;41174:25;;;;;:19;:25;;;;;;;;:52;;-1:-1:-1;;;;;;41203:23:0;;;;;;:19;:23;;;;;;;;41174:52;41170:100;;;-1:-1:-1;41253:5:0;41170:100;41282:12;41387:7;41383:823;;;-1:-1:-1;;;;;41439:29:0;;;;;;:25;:29;;;;;;;;:50;;;;;41488:1;41472:13;;:17;41439:50;41435:622;;;41517:34;41547:3;41517:25;41528:13;;41517:6;:10;;:25;;;;:::i;:::-;:29;;:34::i;:::-;41510:41;;41620:13;;41600:16;;41593:4;:23;;;;:::i;:::-;41592:41;;;;:::i;:::-;41570:18;;:63;;;;;;;:::i;:::-;;;;-1:-1:-1;;41690:13:0;;41676:10;;41669:17;;:4;:17;:::i;:::-;41668:35;;;;:::i;:::-;41652:12;;:51;;;;;;;:::i;:::-;;;;-1:-1:-1;41435:622:0;;-1:-1:-1;41435:622:0;;-1:-1:-1;;;;;41781:31:0;;;;;;:25;:31;;;;;;;;:51;;;;;41831:1;41816:12;;:16;41781:51;41777:280;;;41860:33;41889:3;41860:24;41871:12;;41860:6;:10;;:24;;;;:::i;:33::-;41853:40;;41961:12;;41942:15;;41935:4;:22;;;;:::i;:::-;41934:39;;;;:::i;:::-;41912:18;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;;42029:12:0;;42016:9;;42009:16;;:4;:16;:::i;:::-;42008:33;;;;:::i;:::-;41992:12;;:49;;;;;;;:::i;:::-;;;;-1:-1:-1;;41777:280:0;42077:8;;42073:91;;42106:42;42122:4;42136;42143;42106:15;:42::i;:::-;42180:14;42190:4;42180:14;;:::i;:::-;;;41383:823;42218:33;42234:4;42240:2;42244:6;42218:15;:33::i;:::-;38523:3736;;;;38410:3849;;;:::o;3409:191::-;3502:6;;;-1:-1:-1;;;;;3519:17:0;;;-1:-1:-1;;;;;;3519:17:0;;;;;;;3552:40;;3502:6;;;3519:17;3502:6;;3552:40;;3483:16;;3552:40;3472:128;3409:191;:::o;38080:188::-;-1:-1:-1;;;;;38163:31:0;;;;;;:25;:31;;;;;;:39;;-1:-1:-1;;38163:39:0;;;;;;;;;;38220:40;;38163:39;;:31;38220:40;;;38080:188;;:::o;14894:733::-;-1:-1:-1;;;;;15034:20:0;;15026:70;;;;-1:-1:-1;;;15026:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15115:23:0;;15107:71;;;;-1:-1:-1;;;15107:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15275:17:0;;15251:21;15275:17;;;;;;;;;;;15311:23;;;;15303:74;;;;-1:-1:-1;;;15303:74:0;;11430:2:1;15303:74:0;;;11412:21:1;11469:2;11449:18;;;11442:30;11508:34;11488:18;;;11481:62;-1:-1:-1;;;11559:18:1;;;11552:36;11605:19;;15303:74:0;11228:402:1;15303:74:0;-1:-1:-1;;;;;15413:17:0;;;:9;:17;;;;;;;;;;;15433:22;;;15413:42;;15477:20;;;;;;;;:30;;15449:6;;15413:9;15477:30;;15449:6;;15477:30;:::i;:::-;;;;;;;;15542:9;-1:-1:-1;;;;;15525:35:0;15534:6;-1:-1:-1;;;;;15525:35:0;;15553:6;15525:35;;;;1897:25:1;;1885:2;1870:18;;1751:177;15525:35:0;;;;;;;;15015:612;14894:733;;;:::o;43387:1413::-;43470:4;43426:23;10946:18;;;;;;;;;;;43426:50;;43487:25;43536:12;;43515:18;;:33;;;;:::i;:::-;43487:61;-1:-1:-1;43559:12:0;43588:20;;;:46;;-1:-1:-1;43612:22:0;;43588:46;43584:85;;;43651:7;;;43387:1413::o;43584:85::-;43703:18;;:23;;43724:2;43703:23;:::i;:::-;43685:15;:41;43681:115;;;43761:18;;:23;;43782:2;43761:23;:::i;:::-;43743:41;;43681:115;43857:23;43944:1;43924:17;43902:18;;43884:15;:36;;;;:::i;:::-;43883:58;;;;:::i;:::-;:62;;;;:::i;:::-;43857:88;-1:-1:-1;43956:26:0;43985:36;:15;43857:88;43985:19;:36::i;:::-;43956:65;-1:-1:-1;44062:21:0;44096:36;43956:65;44096:16;:36::i;:::-;44145:18;44166:44;:21;44192:17;44166:25;:44::i;:::-;44145:65;;44224:17;44244:51;44277:17;44244:28;44259:12;;44244:10;:14;;:28;;;;:::i;:51::-;44224:71;-1:-1:-1;44308:23:0;44334:22;44224:71;44334:10;:22;:::i;:::-;44390:1;44369:18;:22;;;44402:12;:16;44308:48;-1:-1:-1;44435:19:0;;;;;:42;;;44476:1;44458:15;:19;44435:42;44431:278;;;44494:46;44507:15;44524;44494:12;:46::i;:::-;44664:18;;44560:137;;;11837:25:1;;;11893:2;11878:18;;11871:34;;;11921:18;;;11914:34;;;;44560:137:0;;;;;;11825:2:1;44560:137:0;;;44431:278;44743:9;;44735:57;;-1:-1:-1;;;;;44743:9:0;;;;44766:21;;44735:57;;;;44766:21;44743:9;44735:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;;43387:1413:0:o;22390:98::-;22448:7;22475:5;22479:1;22475;:5;:::i;:::-;22468:12;22390:98;-1:-1:-1;;;22390:98:0:o;23128:::-;23186:7;23213:5;23217:1;23213;:5;:::i;23527:98::-;23585:7;23612:5;23616:1;23612;:5;:::i;22771:98::-;22829:7;22856:5;22860:1;22856;:5;:::i;42267:589::-;42417:16;;;42431:1;42417:16;;;;;;;;42393:21;;42417:16;;;;;;;;;;-1:-1:-1;42417:16:0;42393:40;;42462:4;42444;42449:1;42444:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;42444:23:0;;;-1:-1:-1;;;;;42444:23:0;;;;;42488:15;-1:-1:-1;;;;;42488:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;42478:4;42483:1;42478:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1;;;;;42478:32:0;;;-1:-1:-1;;;;;42478:32:0;;;;;42523:62;42540:4;42555:15;42573:11;42523:8;:62::i;:::-;42624:224;;-1:-1:-1;;;42624:224:0;;-1:-1:-1;;;;;42624:15:0;:66;;;;:224;;42705:11;;42731:1;;42775:4;;42802;;42822:15;;42624:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42322:534;42267:589;:::o;42864:515::-;43012:62;43029:4;43044:15;43062:11;43012:8;:62::i;:::-;43321:9;;43117:254;;-1:-1:-1;;;43117:254:0;;43189:4;43117:254;;;14015:34:1;14065:18;;;14058:34;;;43235:1:0;14108:18:1;;;14101:34;;;14151:18;;;14144:34;-1:-1:-1;;;;;43321:9:0;;;14194:19:1;;;14187:44;43345:15:0;14247:19:1;;;14240:35;43117:15:0;:31;;;;;;43156:9;;13949:19:1;;43117:254:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;42864: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:456::-;2010:6;2018;2026;2079:2;2067:9;2058:7;2054:23;2050:32;2047:52;;;2095:1;2092;2085:12;2047:52;2134:9;2121:23;2153:31;2178:5;2153:31;:::i;:::-;2203:5;-1:-1:-1;2260:2:1;2245:18;;2232:32;2273:33;2232:32;2273:33;:::i;:::-;1933:456;;2325:7;;-1:-1:-1;;;2379:2:1;2364:18;;;;2351:32;;1933:456::o;2791:160::-;2856:20;;2912:13;;2905:21;2895:32;;2885:60;;2941:1;2938;2931:12;2956:315;3021:6;3029;3082:2;3070:9;3061:7;3057:23;3053:32;3050:52;;;3098:1;3095;3088:12;3050:52;3137:9;3124:23;3156:31;3181:5;3156:31;:::i;:::-;3206:5;-1:-1:-1;3230:35:1;3261:2;3246:18;;3230:35;:::i;:::-;3220:45;;2956:315;;;;;:::o;3276:180::-;3332:6;3385:2;3373:9;3364:7;3360:23;3356:32;3353:52;;;3401:1;3398;3391:12;3353:52;3424:26;3440:9;3424:26;:::i;3461:180::-;3520:6;3573:2;3561:9;3552:7;3548:23;3544:32;3541:52;;;3589:1;3586;3579:12;3541:52;-1:-1:-1;3612:23:1;;3461:180;-1:-1:-1;3461:180:1:o;3646:388::-;3714:6;3722;3775:2;3763:9;3754:7;3750:23;3746:32;3743:52;;;3791:1;3788;3781:12;3743:52;3830:9;3817:23;3849:31;3874:5;3849:31;:::i;:::-;3899:5;-1:-1:-1;3956:2:1;3941:18;;3928:32;3969:33;3928:32;3969:33;:::i;:::-;4021:7;4011:17;;;3646:388;;;;;:::o;4039:380::-;4118:1;4114:12;;;;4161;;;4182:61;;4236:4;4228:6;4224:17;4214:27;;4182:61;4289:2;4281:6;4278:14;4258:18;4255:38;4252:161;;;4335:10;4330:3;4326:20;4323:1;4316:31;4370:4;4367:1;4360:15;4398:4;4395:1;4388:15;4252:161;;4039:380;;;:::o;4833:127::-;4894:10;4889:3;4885:20;4882:1;4875:31;4925:4;4922:1;4915:15;4949:4;4946:1;4939:15;4965:128;5005:3;5036:1;5032:6;5029:1;5026:13;5023:39;;;5042:18;;:::i;:::-;-1:-1:-1;5078:9:1;;4965:128::o;5098:356::-;5300:2;5282:21;;;5319:18;;;5312:30;5378:34;5373:2;5358:18;;5351:62;5445:2;5430:18;;5098:356::o;6291:168::-;6331:7;6397:1;6393;6389:6;6385:14;6382:1;6379:21;6374:1;6367:9;6360:17;6356:45;6353:71;;;6404:18;;:::i;:::-;-1:-1:-1;6444:9:1;;6291:168::o;6464:217::-;6504:1;6530;6520:132;;6574:10;6569:3;6565:20;6562:1;6555:31;6609:4;6606:1;6599:15;6637:4;6634:1;6627:15;6520:132;-1:-1:-1;6666:9:1;;6464:217::o;8744:401::-;8946:2;8928:21;;;8985:2;8965:18;;;8958:30;9024:34;9019:2;9004:18;;8997:62;-1:-1:-1;;;9090:2:1;9075:18;;9068:35;9135:3;9120:19;;8744:401::o;9150:399::-;9352:2;9334:21;;;9391:2;9371:18;;;9364:30;9430:34;9425:2;9410:18;;9403:62;-1:-1:-1;;;9496:2:1;9481:18;;9474:33;9539:3;9524:19;;9150:399::o;11098:125::-;11138:4;11166:1;11163;11160:8;11157:34;;;11171:18;;:::i;:::-;-1:-1:-1;11208:9:1;;11098:125::o;12301:127::-;12362:10;12357:3;12353:20;12350:1;12343:31;12393:4;12390:1;12383:15;12417:4;12414:1;12407:15;12433:251;12503:6;12556:2;12544:9;12535:7;12531:23;12527:32;12524:52;;;12572:1;12569;12562:12;12524:52;12604:9;12598:16;12623:31;12648:5;12623:31;:::i;12689:980::-;12951:4;12999:3;12988:9;12984:19;13030:6;13019:9;13012:25;13056:2;13094:6;13089:2;13078:9;13074:18;13067:34;13137:3;13132:2;13121:9;13117:18;13110:31;13161:6;13196;13190:13;13227:6;13219;13212:22;13265:3;13254:9;13250:19;13243:26;;13304:2;13296:6;13292:15;13278:29;;13325:1;13335:195;13349:6;13346:1;13343:13;13335:195;;;13414:13;;-1:-1:-1;;;;;13410:39:1;13398:52;;13505:15;;;;13470:12;;;;13446:1;13364:9;13335:195;;;-1:-1:-1;;;;;;;13586:32:1;;;;13581:2;13566:18;;13559:60;-1:-1:-1;;;13650:3:1;13635:19;13628:35;13547:3;12689:980;-1:-1:-1;;;12689:980:1:o;14286:306::-;14374:6;14382;14390;14443:2;14431:9;14422:7;14418:23;14414:32;14411:52;;;14459:1;14456;14449:12;14411:52;14488:9;14482:16;14472:26;;14538:2;14527:9;14523:18;14517:25;14507:35;;14582:2;14571:9;14567:18;14561:25;14551:35;;14286:306;;;;;:::o
Swarm Source
ipfs://2490142ec8e33ffed85785edeacb75615083a8aad3776f1319e1db70521a33c1
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.