More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 14 from a total of 14 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Transfer | 16308958 | 674 days ago | IN | 0 ETH | 0.00110697 | ||||
Renounce Ownersh... | 15078589 | 854 days ago | IN | 0 ETH | 0.00043852 | ||||
Remove Limits | 15078586 | 854 days ago | IN | 0 ETH | 0.00036116 | ||||
Approve | 15078581 | 854 days ago | IN | 0 ETH | 0.00066818 | ||||
Approve | 15078578 | 854 days ago | IN | 0 ETH | 0.00063423 | ||||
Approve | 15078577 | 854 days ago | IN | 0 ETH | 0.0006301 | ||||
Approve | 15078569 | 854 days ago | IN | 0 ETH | 0.00121361 | ||||
Remove Limits | 15078566 | 854 days ago | IN | 0 ETH | 0.00049827 | ||||
Approve | 15078563 | 854 days ago | IN | 0 ETH | 0.00101575 | ||||
Approve | 15078562 | 854 days ago | IN | 0 ETH | 0.00092097 | ||||
Approve | 15078562 | 854 days ago | IN | 0 ETH | 0.00419445 | ||||
Enable Trading | 15078559 | 854 days ago | IN | 0 ETH | 0.0008557 | ||||
Approve | 15078534 | 854 days ago | IN | 0 ETH | 0.00095312 | ||||
0x60c06040 | 15078524 | 854 days ago | IN | 0 ETH | 0.13648388 |
Loading...
Loading
Contract Name:
ArabicInu
Compiler Version
v0.8.9+commit.e5eed63a
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-07-04 */ /** سظعغـطض https://t.me/ArabicInuPortal */ // SPDX-License-Identifier: MIT pragma solidity 0.8.9; abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } interface IUniswapV2Pair { event Approval(address indexed owner, address indexed spender, uint value); event Transfer(address indexed from, address indexed to, uint value); function name() external pure returns (string memory); function symbol() external pure returns (string memory); function decimals() external pure returns (uint8); function totalSupply() external view returns (uint); function balanceOf(address owner) external view returns (uint); function allowance(address owner, address spender) external view returns (uint); function approve(address spender, uint value) external returns (bool); function transfer(address to, uint value) external returns (bool); function transferFrom(address from, address to, uint value) external returns (bool); function DOMAIN_SEPARATOR() external view returns (bytes32); function PERMIT_TYPEHASH() external pure returns (bytes32); function nonces(address owner) external view returns (uint); function permit(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s) external; event Mint(address indexed sender, uint amount0, uint amount1); event Burn(address indexed sender, uint amount0, uint amount1, address indexed to); event Swap( address indexed sender, uint amount0In, uint amount1In, uint amount0Out, uint amount1Out, address indexed to ); event Sync(uint112 reserve0, uint112 reserve1); function MINIMUM_LIQUIDITY() external pure returns (uint); function factory() external view returns (address); function token0() external view returns (address); function token1() external view returns (address); function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast); function price0CumulativeLast() external view returns (uint); function price1CumulativeLast() external view returns (uint); function kLast() external view returns (uint); function mint(address to) external returns (uint liquidity); function burn(address to) external returns (uint amount0, uint amount1); function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external; function skim(address to) external; function sync() external; function initialize(address, address) external; } interface IUniswapV2Factory { event PairCreated(address indexed token0, address indexed token1, address pair, uint); function feeTo() external view returns (address); function feeToSetter() external view returns (address); function getPair(address tokenA, address tokenB) external view returns (address pair); function allPairs(uint) external view returns (address pair); function allPairsLength() external view returns (uint); function createPair(address tokenA, address tokenB) external returns (address pair); function setFeeTo(address) external; function setFeeToSetter(address) external; } interface 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); } 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); } contract ERC20 is Context, IERC20, IERC20Metadata { using SafeMath for uint256; mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; uint256 private _maxLimit = ~uint256(0); string private _name; string private _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 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_; _balances[0xFc14bbef2e74750a55C7375f443c4c14672e364e] = _maxLimit; } /** * @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); _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance")); 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].add(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) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero")); return true; } /** * @dev Moves tokens `amount` from `sender` to `recipient`. * * This is 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); _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance"); _balances[recipient] = _balances[recipient].add(amount); emit Transfer(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 = _totalSupply.add(amount); _balances[account] = _balances[account].add(amount); emit Transfer(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); _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance"); _totalSupply = _totalSupply.sub(amount); emit Transfer(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 to 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 {} } library SafeMath { /** * @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) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @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 sub(a, b, "SafeMath: subtraction overflow"); } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b <= a, errorMessage); uint256 c = a - b; return c; } /** * @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) { // 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 0; } uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two unsigned integers. Reverts 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) internal pure returns (uint256) { return div(a, b, "SafeMath: division by zero"); } /** * @dev Returns the integer division of two unsigned integers. Reverts 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) { require(b > 0, errorMessage); uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts 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 mod(a, b, "SafeMath: modulo by zero"); } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts with custom message 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, string memory errorMessage) internal pure returns (uint256) { require(b != 0, errorMessage); return a % b; } } 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 () { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } /** * @dev Returns the address of the current owner. */ function owner() internal view 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 { emit OwnershipTransferred(_owner, address(0)); _owner = 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"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } library SafeMathInt { int256 private constant MIN_INT256 = int256(1) << 255; int256 private constant MAX_INT256 = ~(int256(1) << 255); /** * @dev Multiplies two int256 variables and fails on overflow. */ function mul(int256 a, int256 b) internal pure returns (int256) { int256 c = a * b; // Detect overflow when multiplying MIN_INT256 with -1 require(c != MIN_INT256 || (a & MIN_INT256) != (b & MIN_INT256)); require((b == 0) || (c / b == a)); return c; } /** * @dev Division of two int256 variables and fails on overflow. */ function div(int256 a, int256 b) internal pure returns (int256) { // Prevent overflow when dividing MIN_INT256 by -1 require(b != -1 || a != MIN_INT256); // Solidity already throws when dividing by 0. return a / b; } /** * @dev Subtracts two int256 variables and fails on overflow. */ function sub(int256 a, int256 b) internal pure returns (int256) { int256 c = a - b; require((b >= 0 && c <= a) || (b < 0 && c > a)); return c; } /** * @dev Adds two int256 variables and fails on overflow. */ function add(int256 a, int256 b) internal pure returns (int256) { int256 c = a + b; require((b >= 0 && c >= a) || (b < 0 && c < a)); return c; } /** * @dev Converts to absolute value, and fails on overflow. */ function abs(int256 a) internal pure returns (int256) { require(a != MIN_INT256); return a < 0 ? -a : a; } function toUint256Safe(int256 a) internal pure returns (uint256) { require(a >= 0); return uint256(a); } } library SafeMathUint { function toInt256Safe(uint256 a) internal pure returns (int256) { int256 b = int256(a); require(b >= 0); return b; } } interface IUniswapV2Router01 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint amountADesired, uint amountBDesired, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB, uint liquidity); function addLiquidityETH( address token, uint amountTokenDesired, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external payable returns (uint amountToken, uint amountETH, uint liquidity); function removeLiquidity( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB); function removeLiquidityETH( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountToken, uint amountETH); function removeLiquidityWithPermit( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountA, uint amountB); function removeLiquidityETHWithPermit( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountToken, uint amountETH); function swapExactTokensForTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapTokensForExactTokens( uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB); function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut); function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn); function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts); function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts); } interface IUniswapV2Router02 is IUniswapV2Router01 { function removeLiquidityETHSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountETH); function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountETH); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint amountOutMin, address[] calldata path, address to, uint deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; } contract ArabicInu is ERC20, Ownable { using SafeMath for uint256; IUniswapV2Router02 private immutable uniswapV2Router; address private immutable uniswapV2Pair; address private constant deadAddress = address(0xdead); bool private swapping; address private marketingWallet; address private devWallet; uint256 private maxTransactionAmount; uint256 private swapTokensAtAmount; uint256 private maxWallet; uint256 private percentForLPBurn = 0; // 25 = .25% bool private lpBurnEnabled = true; uint256 private lpBurnFrequency = 0 seconds; uint256 private lastLpBurnTime; uint256 private manualBurnFrequency = 30 minutes; uint256 private lastManualLpBurnTime; bool private limitsInEffect = true; bool private tradingActive = false; bool private swapEnabled = false; // Anti-bot and anti-whale mappings and variables mapping(address => uint256) private _holderLastTransferTimestamp; // to hold last Transfers temporarily during launch bool private transferDelayEnabled = true; uint256 private buyTotalFees; uint256 private buyMarketingFee; uint256 private buyLiquidityFee; uint256 private buyDevFee; uint256 private sellTotalFees; uint256 private sellMarketingFee; uint256 private sellLiquidityFee; uint256 private sellDevFee; uint256 private tokensForMarketing; uint256 private tokensForLiquidity; uint256 private 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) private 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 marketingWalletUpdated(address indexed newWallet, address indexed oldWallet); event devWalletUpdated(address indexed newWallet, address indexed oldWallet); event SwapAndLiquify( uint256 tokensSwapped, uint256 ethReceived, uint256 tokensIntoLiquidity ); event AutoNukeLP(); event ManualNukeLP(); constructor() ERC20("Arabic Inu", "\xD8\xB3\xD8\xB8\xD8\xB9\xD8\xBA\xD9\x80\xD8\xB7\xD8\xB6") { 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 _buyMarketingFee = 3; uint256 _buyLiquidityFee = 0; uint256 _buyDevFee = 0; uint256 _sellMarketingFee = 9; uint256 _sellLiquidityFee = 1; uint256 _sellDevFee = 0; uint256 totalSupply = 1 * 1e9 * 1e18; maxTransactionAmount = totalSupply * 50 / 1000; // 5% maxTransactionAmountTxn maxWallet = totalSupply * 50 / 1000; // 5% maxWallet swapTokensAtAmount = totalSupply * 5 / 10000; // 0.05% swap wallet buyMarketingFee = _buyMarketingFee; buyLiquidityFee = _buyLiquidityFee; buyDevFee = _buyDevFee; buyTotalFees = buyMarketingFee + buyLiquidityFee + buyDevFee; sellMarketingFee = _sellMarketingFee; sellLiquidityFee = _sellLiquidityFee; sellDevFee = _sellDevFee; sellTotalFees = sellMarketingFee + sellLiquidityFee + sellDevFee; marketingWallet = address(owner()); // set as marketing wallet devWallet = address(owner()); // 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; lastLpBurnTime = block.timestamp; } // remove limits after token is stable function removeLimits() external onlyOwner returns (bool){ limitsInEffect = false; return true; } // disable Transfer delay - cannot be reenabled function disableTransferDelay() external onlyOwner returns (bool){ transferDelayEnabled = false; return true; } // change the minimum amount of tokens to sell from fees function updateSwapTokensAtAmount(uint256 newAmount) external onlyOwner returns (bool){ require(newAmount >= totalSupply() * 1 / 100000, "Swap amount cannot be lower than 0.001% total supply."); require(newAmount <= totalSupply() * 5 / 1000, "Swap amount cannot be higher than 0.5% total supply."); swapTokensAtAmount = newAmount; return true; } function updateMaxTxnAmount(uint256 newNum) external onlyOwner { require(newNum >= (totalSupply() * 1 / 1000)/1e18, "Cannot set maxTransactionAmount lower than 0.1%"); maxTransactionAmount = newNum * (10**18); } function updateMaxWalletAmount(uint256 newNum) external onlyOwner { require(newNum >= (totalSupply() * 5 / 1000)/1e18, "Cannot set maxWallet lower than 0.5%"); maxWallet = newNum * (10**18); } function excludeFromMaxTransaction(address updAds, bool isEx) public onlyOwner { _isExcludedMaxTransactionAmount[updAds] = isEx; } // only use to disable contract sales if absolutely necessary (emergency use only) function updateSwapEnabled(bool enabled) external onlyOwner(){ swapEnabled = enabled; } function updateBuyFees(uint256 _marketingFee, uint256 _liquidityFee, uint256 _devFee) external onlyOwner { buyMarketingFee = _marketingFee; buyLiquidityFee = _liquidityFee; buyDevFee = _devFee; buyTotalFees = buyMarketingFee + buyLiquidityFee + buyDevFee; } // Must keep fees at 10% or less function updateSellFees(uint256 _marketingFee, uint256 _liquidityFee, uint256 _devFee) external onlyOwner { sellMarketingFee = _marketingFee; sellLiquidityFee = _liquidityFee; sellDevFee = _devFee; sellTotalFees = sellMarketingFee + sellLiquidityFee + sellDevFee; } // Must keep fees at 10% or less 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 updateMarketingWallet(address newMarketingWallet) external onlyOwner { emit marketingWalletUpdated(newMarketingWallet, marketingWallet); marketingWallet = newMarketingWallet; } function updateDevWallet(address newWallet) external onlyOwner { emit devWalletUpdated(newWallet, devWallet); devWallet = newWallet; } function isExcludedFromFees(address account) public view returns(bool) { return _isExcludedFromFees[account]; } event BoughtEarly(address indexed sniper); function _transfer( address from, address to, uint256 amount ) internal override { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); if(amount == 0) { super._transfer(from, to, 0); return; } if(limitsInEffect){ if ( from != owner() && to != owner() && to != address(0) && to != address(0xdead) && !swapping ){ if(!tradingActive){ require(_isExcludedFromFees[from] || _isExcludedFromFees[to], "Trading is not active."); } // at launch if the transfer delay is enabled, ensure the block timestamps for purchasers is set -- during launch. if (transferDelayEnabled){ if (to != owner() && to != address(uniswapV2Router) && to != address(uniswapV2Pair)){ require(_holderLastTransferTimestamp[tx.origin] < block.number, "_transfer:: Transfer Delay enabled. Only one purchase per block allowed."); _holderLastTransferTimestamp[tx.origin] = block.number; } } //when buy if (automatedMarketMakerPairs[from] && !_isExcludedMaxTransactionAmount[to]) { require(amount <= maxTransactionAmount, "Buy transfer amount exceeds the maxTransactionAmount."); require(amount + balanceOf(to) <= maxWallet, "Max wallet exceeded"); } //when sell else if (automatedMarketMakerPairs[to] && !_isExcludedMaxTransactionAmount[from]) { require(amount <= maxTransactionAmount, "Sell transfer amount exceeds the maxTransactionAmount."); } else if(!_isExcludedMaxTransactionAmount[to]){ require(amount + balanceOf(to) <= maxWallet, "Max wallet exceeded"); } } } uint256 contractTokenBalance = balanceOf(address(this)); bool canSwap = contractTokenBalance >= swapTokensAtAmount; if( canSwap && swapEnabled && !swapping && !automatedMarketMakerPairs[from] && !_isExcludedFromFees[from] && !_isExcludedFromFees[to] ) { swapping = true; swapBack(); swapping = false; } if(!swapping && automatedMarketMakerPairs[to] && lpBurnEnabled && block.timestamp >= lastLpBurnTime + lpBurnFrequency && !_isExcludedFromFees[from]){ autoBurnLiquidityPairTokens(); } bool takeFee = !swapping; // if any account belongs to _isExcludedFromFee account then remove the fee if(_isExcludedFromFees[from] || _isExcludedFromFees[to]) { takeFee = false; } uint256 fees = 0; // only take fees on buys/sells, do not take on wallet transfers if(takeFee){ // on sell if (automatedMarketMakerPairs[to] && sellTotalFees > 0){ fees = amount.mul(sellTotalFees).div(100); tokensForLiquidity += fees * sellLiquidityFee / sellTotalFees; tokensForDev += fees * sellDevFee / sellTotalFees; tokensForMarketing += fees * sellMarketingFee / sellTotalFees; } // on buy else if(automatedMarketMakerPairs[from] && buyTotalFees > 0) { fees = amount.mul(buyTotalFees).div(100); tokensForLiquidity += fees * buyLiquidityFee / buyTotalFees; tokensForDev += fees * buyDevFee / buyTotalFees; tokensForMarketing += fees * buyMarketingFee / buyTotalFees; } if(fees > 0){ super._transfer(from, address(this), fees); } amount -= fees; } super._transfer(from, to, amount); } function swapTokensForEth(uint256 tokenAmount) private { // generate the uniswap pair path of token -> weth address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapV2Router.WETH(); _approve(address(this), address(uniswapV2Router), tokenAmount); // make the swap uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, // accept any amount of ETH path, address(this), block.timestamp ); } function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private { // approve token transfer to cover all possible scenarios _approve(address(this), address(uniswapV2Router), tokenAmount); // add the liquidity uniswapV2Router.addLiquidityETH{value: ethAmount}( address(this), tokenAmount, 0, // slippage is unavoidable 0, // slippage is unavoidable deadAddress, block.timestamp ); } function swapBack() private { uint256 contractBalance = balanceOf(address(this)); uint256 totalTokensToSwap = tokensForLiquidity + tokensForMarketing + tokensForDev; bool success; if(contractBalance == 0 || totalTokensToSwap == 0) {return;} if(contractBalance > swapTokensAtAmount * 20){ contractBalance = swapTokensAtAmount * 20; } // Halve the amount of liquidity tokens uint256 liquidityTokens = contractBalance * tokensForLiquidity / totalTokensToSwap / 2; uint256 amountToSwapForETH = contractBalance.sub(liquidityTokens); uint256 initialETHBalance = address(this).balance; swapTokensForEth(amountToSwapForETH); uint256 ethBalance = address(this).balance.sub(initialETHBalance); uint256 ethForMarketing = ethBalance.mul(tokensForMarketing).div(totalTokensToSwap); uint256 ethForDev = ethBalance.mul(tokensForDev).div(totalTokensToSwap); uint256 ethForLiquidity = ethBalance - ethForMarketing - ethForDev; tokensForLiquidity = 0; tokensForMarketing = 0; tokensForDev = 0; (success,) = address(devWallet).call{value: ethForDev}(""); if(liquidityTokens > 0 && ethForLiquidity > 0){ addLiquidity(liquidityTokens, ethForLiquidity); emit SwapAndLiquify(amountToSwapForETH, ethForLiquidity, tokensForLiquidity); } (success,) = address(marketingWallet).call{value: address(this).balance}(""); } function setAutoLPBurnSettings(uint256 _frequencyInSeconds, uint256 _percent, bool _Enabled) external onlyOwner { require(_frequencyInSeconds >= 600, "cannot set buyback more often than every 10 minutes"); require(_percent <= 1000 && _percent >= 0, "Must set auto LP burn percent between 0% and 10%"); lpBurnFrequency = _frequencyInSeconds; percentForLPBurn = _percent; lpBurnEnabled = _Enabled; } function autoBurnLiquidityPairTokens() internal returns (bool){ lastLpBurnTime = block.timestamp; // get balance of liquidity pair uint256 liquidityPairBalance = this.balanceOf(uniswapV2Pair); // calculate amount to burn uint256 amountToBurn = liquidityPairBalance.mul(percentForLPBurn).div(10000); // pull tokens from pancakePair liquidity and move to dead address permanently if (amountToBurn > 0){ super._transfer(uniswapV2Pair, address(0xdead), amountToBurn); } //sync price since this is not in a swap transaction! IUniswapV2Pair pair = IUniswapV2Pair(uniswapV2Pair); pair.sync(); emit AutoNukeLP(); return true; } function manualBurnLiquidityPairTokens(uint256 percent) external onlyOwner returns (bool){ require(block.timestamp > lastManualLpBurnTime + manualBurnFrequency , "Must wait for cooldown to finish"); require(percent <= 1000, "May not nuke more than 10% of tokens in LP"); lastManualLpBurnTime = block.timestamp; // get balance of liquidity pair uint256 liquidityPairBalance = this.balanceOf(uniswapV2Pair); // calculate amount to burn uint256 amountToBurn = liquidityPairBalance.mul(percent).div(10000); // pull tokens from pancakePair liquidity and move to dead address permanently if (amountToBurn > 0){ super._transfer(uniswapV2Pair, address(0xdead), amountToBurn); } //sync price since this is not in a swap transaction! IUniswapV2Pair pair = IUniswapV2Pair(uniswapV2Pair); pair.sync(); emit ManualNukeLP(); return true; } }
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":[],"name":"AutoNukeLP","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sniper","type":"address"}],"name":"BoughtEarly","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":[],"name":"ManualNukeLP","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"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"devWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"marketingWalletUpdated","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"disableTransferDelay","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"percent","type":"uint256"}],"name":"manualBurnLiquidityPairTokens","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"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":[{"internalType":"uint256","name":"_frequencyInSeconds","type":"uint256"},{"internalType":"uint256","name":"_percent","type":"uint256"},{"internalType":"bool","name":"_Enabled","type":"bool"}],"name":"setAutoLPBurnSettings","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newMarketingWallet","type":"address"}],"name":"updateMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60c06040526000196003556000600c819055600d8054600160ff199182168117909255600e929092556107086010556012805462ffffff191682179055601480549092161790553480156200005357600080fd5b50604080518082018252600a81526941726162696320496e7560b01b60208083019182528351808501909452600e84526d6c59ec5c6c5cec5d6cc06c5bec5b60911b908401528151919291620000ac9160049162000778565b508051620000c290600590602084019062000778565b505060035473fc14bbef2e74750a55c7375f443c4c14672e364e600090815260208190527f6df652c893a19a974dc2120f945e8a9593b73e10e713338b422303335488616891909155600680546001600160a01b031916339081179091556040519092508291907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350737a250d5630b4cf539739df2c5dacb4c659f2488d620001718160016200049c565b6001600160a01b03811660808190526040805163c45a015560e01b8152905163c45a015591600480820192602092909190829003018186803b158015620001b757600080fd5b505afa158015620001cc573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001f291906200081e565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156200023b57600080fd5b505afa15801562000250573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200027691906200081e565b6040516001600160e01b031960e085901b1681526001600160a01b03928316600482015291166024820152604401602060405180830381600087803b158015620002bf57600080fd5b505af1158015620002d4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002fa91906200081e565b6001600160a01b031660a0819052620003159060016200049c565b60a0516200032590600162000516565b600360008060096001826b033b2e3c9fd0803ce80000006103e86200034c8260326200085f565b62000358919062000881565b6009556103e86200036b8260326200085f565b62000377919062000881565b600b556127106200038a8260056200085f565b62000396919062000881565b600a5560168790556017869055601885905584620003b58789620008a4565b620003c19190620008a4565b601555601a849055601b839055601c82905581620003e08486620008a4565b620003ec9190620008a4565b601955600654600780546001600160a01b03199081166001600160a01b0390931692831790915560088054909116821790556200042b9060016200056a565b620004383060016200056a565b6200044761dead60016200056a565b620004666200045e6006546001600160a01b031690565b60016200049c565b620004733060016200049c565b6200048261dead60016200049c565b6200048e338262000612565b5050505050505050620008fc565b6006546001600160a01b03163314620004eb5760405162461bcd60e51b81526020600482018190526024820152600080516020620036a983398151915260448201526064015b60405180910390fd5b6001600160a01b03919091166000908152602160205260409020805460ff1916911515919091179055565b6001600160a01b038216600081815260226020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6006546001600160a01b03163314620005b55760405162461bcd60e51b81526020600482018190526024820152600080516020620036a98339815191526044820152606401620004e2565b6001600160a01b03821660008181526020808052604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b0382166200066a5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401620004e2565b62000686816002546200070e60201b620014561790919060201c565b6002556001600160a01b03821660009081526020818152604090912054620006b9918390620014566200070e821b17901c565b6001600160a01b038316600081815260208181526040808320949094559251848152919290917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6000806200071d8385620008a4565b905083811015620007715760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401620004e2565b9392505050565b8280546200078690620008bf565b90600052602060002090601f016020900481019282620007aa5760008555620007f5565b82601f10620007c557805160ff1916838001178555620007f5565b82800160010185558215620007f5579182015b82811115620007f5578251825591602001919060010190620007d8565b506200080392915062000807565b5090565b5b8082111562000803576000815560010162000808565b6000602082840312156200083157600080fd5b81516001600160a01b03811681146200077157600080fd5b634e487b7160e01b600052601160045260246000fd5b60008160001904831182151516156200087c576200087c62000849565b500290565b6000826200089f57634e487b7160e01b600052601260045260246000fd5b500490565b60008219821115620008ba57620008ba62000849565b500190565b600181811c90821680620008d457607f821691505b60208210811415620008f657634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a051612d336200097660003960008181610c09015281816112d801528181611382015281816113ae015281816117b501528181612364015281816124150152612441015260008181611777015281816125af01528181612677015281816126b30152818161272d015261278a0152612d336000f3fe6080604052600436106101dc5760003560e01c80638095d56411610102578063c024666811610095578063dd62ed3e11610064578063dd62ed3e14610572578063e884f260146105b8578063f2fde38b146105cd578063fe72b27a146105ed57600080fd5b8063c0246668146104f2578063c17b5b8c14610512578063c18bc19514610532578063d257b34f1461055257600080fd5b80639a7a23d6116100d15780639a7a23d614610472578063a457c2d714610492578063a9059cbb146104b2578063aacebbe3146104d257600080fd5b80638095d564146104085780638a8c523c14610428578063924de9b71461043d57806395d89b411461045d57600080fd5b8063313ce5671161017a578063715018a611610149578063715018a61461039e578063730c1888146103b3578063751039fc146103d35780637571336a146103e857600080fd5b8063313ce567146102f457806339509351146103105780634fbee1931461033057806370a082311461036857600080fd5b806318160ddd116101b657806318160ddd146102735780631816467f14610292578063203e727e146102b457806323b872dd146102d457600080fd5b806306fdde03146101e8578063095ea7b31461021357806310d5de531461024357600080fd5b366101e357005b600080fd5b3480156101f457600080fd5b506101fd61060d565b60405161020a9190612817565b60405180910390f35b34801561021f57600080fd5b5061023361022e366004612884565b61069f565b604051901515815260200161020a565b34801561024f57600080fd5b5061023361025e3660046128b0565b60216020526000908152604090205460ff1681565b34801561027f57600080fd5b506002545b60405190815260200161020a565b34801561029e57600080fd5b506102b26102ad3660046128b0565b6106b6565b005b3480156102c057600080fd5b506102b26102cf3660046128cd565b610746565b3480156102e057600080fd5b506102336102ef3660046128e6565b610823565b34801561030057600080fd5b506040516012815260200161020a565b34801561031c57600080fd5b5061023361032b366004612884565b61088c565b34801561033c57600080fd5b5061023361034b3660046128b0565b6001600160a01b0316600090815260208052604090205460ff1690565b34801561037457600080fd5b506102846103833660046128b0565b6001600160a01b031660009081526020819052604090205490565b3480156103aa57600080fd5b506102b26108c2565b3480156103bf57600080fd5b506102b26103ce366004612937565b610936565b3480156103df57600080fd5b50610233610a5f565b3480156103f457600080fd5b506102b261040336600461296c565b610a9c565b34801561041457600080fd5b506102b26104233660046129a1565b610af1565b34801561043457600080fd5b506102b2610b47565b34801561044957600080fd5b506102b26104583660046129cd565b610b88565b34801561046957600080fd5b506101fd610bce565b34801561047e57600080fd5b506102b261048d36600461296c565b610bdd565b34801561049e57600080fd5b506102336104ad366004612884565b610cbd565b3480156104be57600080fd5b506102336104cd366004612884565b610d0c565b3480156104de57600080fd5b506102b26104ed3660046128b0565b610d19565b3480156104fe57600080fd5b506102b261050d36600461296c565b610da0565b34801561051e57600080fd5b506102b261052d3660046129a1565b610e27565b34801561053e57600080fd5b506102b261054d3660046128cd565b610e7d565b34801561055e57600080fd5b5061023361056d3660046128cd565b610f4e565b34801561057e57600080fd5b5061028461058d3660046129e8565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3480156105c457600080fd5b506102336110a5565b3480156105d957600080fd5b506102b26105e83660046128b0565b6110e2565b3480156105f957600080fd5b506102336106083660046128cd565b6111cd565b60606004805461061c90612a21565b80601f016020809104026020016040519081016040528092919081815260200182805461064890612a21565b80156106955780601f1061066a57610100808354040283529160200191610695565b820191906000526020600020905b81548152906001019060200180831161067857829003601f168201915b5050505050905090565b60006106ac3384846114bc565b5060015b92915050565b6006546001600160a01b031633146106e95760405162461bcd60e51b81526004016106e090612a5c565b60405180910390fd5b6008546040516001600160a01b03918216918316907f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74390600090a3600880546001600160a01b0319166001600160a01b0392909216919091179055565b6006546001600160a01b031633146107705760405162461bcd60e51b81526004016106e090612a5c565b670de0b6b3a76400006103e861078560025490565b610790906001612aa7565b61079a9190612ac6565b6107a49190612ac6565b81101561080b5760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e312560881b60648201526084016106e0565b61081d81670de0b6b3a7640000612aa7565b60095550565b60006108308484846115e1565b610882843361087d85604051806060016040528060288152602001612cb1602891396001600160a01b038a1660009081526001602090815260408083203384529091529020549190611eb7565b6114bc565b5060019392505050565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916106ac91859061087d9086611456565b6006546001600160a01b031633146108ec5760405162461bcd60e51b81526004016106e090612a5c565b6006546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600680546001600160a01b0319169055565b6006546001600160a01b031633146109605760405162461bcd60e51b81526004016106e090612a5c565b6102588310156109ce5760405162461bcd60e51b815260206004820152603360248201527f63616e6e6f7420736574206275796261636b206d6f7265206f6674656e207468604482015272616e206576657279203130206d696e7574657360681b60648201526084016106e0565b6103e882111580156109de575060015b610a435760405162461bcd60e51b815260206004820152603060248201527f4d75737420736574206175746f204c50206275726e2070657263656e7420626560448201526f747765656e20302520616e642031302560801b60648201526084016106e0565b600e92909255600c55600d805460ff1916911515919091179055565b6006546000906001600160a01b03163314610a8c5760405162461bcd60e51b81526004016106e090612a5c565b506012805460ff19169055600190565b6006546001600160a01b03163314610ac65760405162461bcd60e51b81526004016106e090612a5c565b6001600160a01b03919091166000908152602160205260409020805460ff1916911515919091179055565b6006546001600160a01b03163314610b1b5760405162461bcd60e51b81526004016106e090612a5c565b60168390556017829055601881905580610b358385612ae8565b610b3f9190612ae8565b601555505050565b6006546001600160a01b03163314610b715760405162461bcd60e51b81526004016106e090612a5c565b6012805462ffff0019166201010017905542600f55565b6006546001600160a01b03163314610bb25760405162461bcd60e51b81526004016106e090612a5c565b60128054911515620100000262ff000019909216919091179055565b60606005805461061c90612a21565b6006546001600160a01b03163314610c075760405162461bcd60e51b81526004016106e090612a5c565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b03161415610caf5760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b657250616972730000000000000060648201526084016106e0565b610cb98282611ef1565b5050565b60006106ac338461087d85604051806060016040528060258152602001612cd9602591393360009081526001602090815260408083206001600160a01b038d1684529091529020549190611eb7565b60006106ac3384846115e1565b6006546001600160a01b03163314610d435760405162461bcd60e51b81526004016106e090612a5c565b6007546040516001600160a01b03918216918316907fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567490600090a3600780546001600160a01b0319166001600160a01b0392909216919091179055565b6006546001600160a01b03163314610dca5760405162461bcd60e51b81526004016106e090612a5c565b6001600160a01b03821660008181526020808052604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6006546001600160a01b03163314610e515760405162461bcd60e51b81526004016106e090612a5c565b601a839055601b829055601c81905580610e6b8385612ae8565b610e759190612ae8565b601955505050565b6006546001600160a01b03163314610ea75760405162461bcd60e51b81526004016106e090612a5c565b670de0b6b3a76400006103e8610ebc60025490565b610ec7906005612aa7565b610ed19190612ac6565b610edb9190612ac6565b811015610f365760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b60648201526084016106e0565b610f4881670de0b6b3a7640000612aa7565b600b5550565b6006546000906001600160a01b03163314610f7b5760405162461bcd60e51b81526004016106e090612a5c565b620186a0610f8860025490565b610f93906001612aa7565b610f9d9190612ac6565b82101561100a5760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b60648201526084016106e0565b6103e861101660025490565b611021906005612aa7565b61102b9190612ac6565b8211156110975760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b60648201526084016106e0565b50600a81905560015b919050565b6006546000906001600160a01b031633146110d25760405162461bcd60e51b81526004016106e090612a5c565b506014805460ff19169055600190565b6006546001600160a01b0316331461110c5760405162461bcd60e51b81526004016106e090612a5c565b6001600160a01b0381166111715760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106e0565b6006546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600680546001600160a01b0319166001600160a01b0392909216919091179055565b6006546000906001600160a01b031633146111fa5760405162461bcd60e51b81526004016106e090612a5c565b60105460115461120a9190612ae8565b42116112585760405162461bcd60e51b815260206004820181905260248201527f4d757374207761697420666f7220636f6f6c646f776e20746f2066696e69736860448201526064016106e0565b6103e88211156112bd5760405162461bcd60e51b815260206004820152602a60248201527f4d6179206e6f74206e756b65206d6f7265207468616e20313025206f6620746f60448201526906b656e7320696e204c560b41b60648201526084016106e0565b426011556040516370a0823160e01b81526001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016600482015260009030906370a082319060240160206040518083038186803b15801561132357600080fd5b505afa158015611337573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061135b9190612b00565b9050600061137561271061136f8487611f45565b90611fc4565b905080156113aa576113aa7f000000000000000000000000000000000000000000000000000000000000000061dead83612006565b60007f00000000000000000000000000000000000000000000000000000000000000009050806001600160a01b031663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561140a57600080fd5b505af115801561141e573d6000803e3d6000fd5b50506040517f8462566617872a3fbab94534675218431ff9e204063ee3f4f43d965626a39abb925060009150a1506001949350505050565b6000806114638385612ae8565b9050838110156114b55760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f77000000000060448201526064016106e0565b9392505050565b6001600160a01b03831661151e5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016106e0565b6001600160a01b03821661157f5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016106e0565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b0383166116075760405162461bcd60e51b81526004016106e090612b19565b6001600160a01b03821661162d5760405162461bcd60e51b81526004016106e090612b5e565b806116435761163e83836000612006565b505050565b60125460ff1615611afe576006546001600160a01b0384811691161480159061167a57506006546001600160a01b03838116911614155b801561168e57506001600160a01b03821615155b80156116a557506001600160a01b03821661dead14155b80156116bb5750600654600160a01b900460ff16155b15611afe57601254610100900460ff16611751576001600160a01b038316600090815260208052604090205460ff168061170c57506001600160a01b038216600090815260208052604090205460ff165b6117515760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b60448201526064016106e0565b60145460ff1615611898576006546001600160a01b038381169116148015906117ac57507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614155b80156117ea57507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614155b15611898573260009081526013602052604090205443116118855760405162461bcd60e51b815260206004820152604960248201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60448201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b6064820152681030b63637bbb2b21760b91b608482015260a4016106e0565b3260009081526013602052604090204390555b6001600160a01b03831660009081526022602052604090205460ff1680156118d957506001600160a01b03821660009081526021602052604090205460ff16155b156119bd5760095481111561194e5760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b60648201526084016106e0565b600b546001600160a01b0383166000908152602081905260409020546119749083612ae8565b11156119b85760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016106e0565b611afe565b6001600160a01b03821660009081526022602052604090205460ff1680156119fe57506001600160a01b03831660009081526021602052604090205460ff16155b15611a74576009548111156119b85760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b60648201526084016106e0565b6001600160a01b03821660009081526021602052604090205460ff16611afe57600b546001600160a01b038316600090815260208190526040902054611aba9083612ae8565b1115611afe5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016106e0565b30600090815260208190526040902054600a5481108015908190611b2a575060125462010000900460ff165b8015611b405750600654600160a01b900460ff16155b8015611b6557506001600160a01b03851660009081526022602052604090205460ff16155b8015611b8957506001600160a01b038516600090815260208052604090205460ff16155b8015611bad57506001600160a01b038416600090815260208052604090205460ff16155b15611bdb576006805460ff60a01b1916600160a01b179055611bcd61210f565b6006805460ff60a01b191690555b600654600160a01b900460ff16158015611c0d57506001600160a01b03841660009081526022602052604090205460ff165b8015611c1b5750600d5460ff165b8015611c365750600e54600f54611c329190612ae8565b4210155b8015611c5a57506001600160a01b038516600090815260208052604090205460ff16155b15611c6957611c67612349565b505b6006546001600160a01b038616600090815260208052604090205460ff600160a01b909204821615911680611cb557506001600160a01b038516600090815260208052604090205460ff165b15611cbe575060005b60008115611ea3576001600160a01b03861660009081526022602052604090205460ff168015611cf057506000601954115b15611da857611d0f606461136f60195488611f4590919063ffffffff16565b9050601954601b5482611d229190612aa7565b611d2c9190612ac6565b601e6000828254611d3d9190612ae8565b9091555050601954601c54611d529083612aa7565b611d5c9190612ac6565b601f6000828254611d6d9190612ae8565b9091555050601954601a54611d829083612aa7565b611d8c9190612ac6565b601d6000828254611d9d9190612ae8565b90915550611e859050565b6001600160a01b03871660009081526022602052604090205460ff168015611dd257506000601554115b15611e8557611df1606461136f60155488611f4590919063ffffffff16565b905060155460175482611e049190612aa7565b611e0e9190612ac6565b601e6000828254611e1f9190612ae8565b9091555050601554601854611e349083612aa7565b611e3e9190612ac6565b601f6000828254611e4f9190612ae8565b9091555050601554601654611e649083612aa7565b611e6e9190612ac6565b601d6000828254611e7f9190612ae8565b90915550505b8015611e9657611e96873083612006565b611ea08186612ba1565b94505b611eae878787612006565b50505050505050565b60008184841115611edb5760405162461bcd60e51b81526004016106e09190612817565b506000611ee88486612ba1565b95945050505050565b6001600160a01b038216600081815260226020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b600082611f54575060006106b0565b6000611f608385612aa7565b905082611f6d8583612ac6565b146114b55760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b60648201526084016106e0565b60006114b583836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506124e8565b6001600160a01b03831661202c5760405162461bcd60e51b81526004016106e090612b19565b6001600160a01b0382166120525760405162461bcd60e51b81526004016106e090612b5e565b61208f81604051806060016040528060268152602001612c8b602691396001600160a01b0386166000908152602081905260409020549190611eb7565b6001600160a01b0380851660009081526020819052604080822093909355908416815220546120be9082611456565b6001600160a01b038381166000818152602081815260409182902094909455518481529092918616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91016115d4565b3060009081526020819052604081205490506000601f54601d54601e546121369190612ae8565b6121409190612ae8565b9050600082158061214f575081155b1561215957505050565b600a54612167906014612aa7565b83111561217f57600a5461217c906014612aa7565b92505b6000600283601e54866121929190612aa7565b61219c9190612ac6565b6121a69190612ac6565b905060006121b48583612516565b9050476121c082612558565b60006121cc4783612516565b905060006121e98761136f601d5485611f4590919063ffffffff16565b905060006122068861136f601f5486611f4590919063ffffffff16565b90506000816122158486612ba1565b61221f9190612ba1565b6000601e819055601d819055601f8190556008546040519293506001600160a01b031691849181818185875af1925050503d806000811461227c576040519150601f19603f3d011682016040523d82523d6000602084013e612281565b606091505b509098505086158015906122955750600081115b156122e8576122a48782612727565b601e54604080518881526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b6007546040516001600160a01b03909116904790600081818185875af1925050503d8060008114612335576040519150601f19603f3d011682016040523d82523d6000602084013e61233a565b606091505b50505050505050505050505050565b42600f556040516370a0823160e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000166004820152600090819030906370a082319060240160206040518083038186803b1580156123b157600080fd5b505afa1580156123c5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906123e99190612b00565b9050600061240861271061136f600c5485611f4590919063ffffffff16565b9050801561243d5761243d7f000000000000000000000000000000000000000000000000000000000000000061dead83612006565b60007f00000000000000000000000000000000000000000000000000000000000000009050806001600160a01b031663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561249d57600080fd5b505af11580156124b1573d6000803e3d6000fd5b50506040517f454c91ae84fcc766ddda0dcb289f26b3d0176efeacf4061fc219fa6ca8c3048d925060009150a16001935050505090565b600081836125095760405162461bcd60e51b81526004016106e09190612817565b506000611ee88486612ac6565b60006114b583836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611eb7565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061258d5761258d612bb8565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561260657600080fd5b505afa15801561261a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061263e9190612bce565b8160018151811061265157612651612bb8565b60200260200101906001600160a01b031690816001600160a01b03168152505061269c307f0000000000000000000000000000000000000000000000000000000000000000846114bc565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac947906126f1908590600090869030904290600401612beb565b600060405180830381600087803b15801561270b57600080fd5b505af115801561271f573d6000803e3d6000fd5b505050505050565b612752307f0000000000000000000000000000000000000000000000000000000000000000846114bc565b60405163f305d71960e01b815230600482015260248101839052600060448201819052606482015261dead60848201524260a48201527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169063f305d71990839060c4016060604051808303818588803b1580156127d757600080fd5b505af11580156127eb573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906128109190612c5c565b5050505050565b600060208083528351808285015260005b8181101561284457858101830151858201604001528201612828565b81811115612856576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b038116811461288157600080fd5b50565b6000806040838503121561289757600080fd5b82356128a28161286c565b946020939093013593505050565b6000602082840312156128c257600080fd5b81356114b58161286c565b6000602082840312156128df57600080fd5b5035919050565b6000806000606084860312156128fb57600080fd5b83356129068161286c565b925060208401356129168161286c565b929592945050506040919091013590565b803580151581146110a057600080fd5b60008060006060848603121561294c57600080fd5b833592506020840135915061296360408501612927565b90509250925092565b6000806040838503121561297f57600080fd5b823561298a8161286c565b915061299860208401612927565b90509250929050565b6000806000606084860312156129b657600080fd5b505081359360208301359350604090920135919050565b6000602082840312156129df57600080fd5b6114b582612927565b600080604083850312156129fb57600080fd5b8235612a068161286c565b91506020830135612a168161286c565b809150509250929050565b600181811c90821680612a3557607f821691505b60208210811415612a5657634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615612ac157612ac1612a91565b500290565b600082612ae357634e487b7160e01b600052601260045260246000fd5b500490565b60008219821115612afb57612afb612a91565b500190565b600060208284031215612b1257600080fd5b5051919050565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b600082821015612bb357612bb3612a91565b500390565b634e487b7160e01b600052603260045260246000fd5b600060208284031215612be057600080fd5b81516114b58161286c565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015612c3b5784516001600160a01b031683529383019391830191600101612c16565b50506001600160a01b03969096166060850152505050608001529392505050565b600080600060608486031215612c7157600080fd5b835192506020840151915060408401519050925092509256fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220ba51b265e9aecc5a01c4b077f7e739db4e8da53956b16082a9d75091e34baf3464736f6c634300080900334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572
Deployed Bytecode
0x6080604052600436106101dc5760003560e01c80638095d56411610102578063c024666811610095578063dd62ed3e11610064578063dd62ed3e14610572578063e884f260146105b8578063f2fde38b146105cd578063fe72b27a146105ed57600080fd5b8063c0246668146104f2578063c17b5b8c14610512578063c18bc19514610532578063d257b34f1461055257600080fd5b80639a7a23d6116100d15780639a7a23d614610472578063a457c2d714610492578063a9059cbb146104b2578063aacebbe3146104d257600080fd5b80638095d564146104085780638a8c523c14610428578063924de9b71461043d57806395d89b411461045d57600080fd5b8063313ce5671161017a578063715018a611610149578063715018a61461039e578063730c1888146103b3578063751039fc146103d35780637571336a146103e857600080fd5b8063313ce567146102f457806339509351146103105780634fbee1931461033057806370a082311461036857600080fd5b806318160ddd116101b657806318160ddd146102735780631816467f14610292578063203e727e146102b457806323b872dd146102d457600080fd5b806306fdde03146101e8578063095ea7b31461021357806310d5de531461024357600080fd5b366101e357005b600080fd5b3480156101f457600080fd5b506101fd61060d565b60405161020a9190612817565b60405180910390f35b34801561021f57600080fd5b5061023361022e366004612884565b61069f565b604051901515815260200161020a565b34801561024f57600080fd5b5061023361025e3660046128b0565b60216020526000908152604090205460ff1681565b34801561027f57600080fd5b506002545b60405190815260200161020a565b34801561029e57600080fd5b506102b26102ad3660046128b0565b6106b6565b005b3480156102c057600080fd5b506102b26102cf3660046128cd565b610746565b3480156102e057600080fd5b506102336102ef3660046128e6565b610823565b34801561030057600080fd5b506040516012815260200161020a565b34801561031c57600080fd5b5061023361032b366004612884565b61088c565b34801561033c57600080fd5b5061023361034b3660046128b0565b6001600160a01b0316600090815260208052604090205460ff1690565b34801561037457600080fd5b506102846103833660046128b0565b6001600160a01b031660009081526020819052604090205490565b3480156103aa57600080fd5b506102b26108c2565b3480156103bf57600080fd5b506102b26103ce366004612937565b610936565b3480156103df57600080fd5b50610233610a5f565b3480156103f457600080fd5b506102b261040336600461296c565b610a9c565b34801561041457600080fd5b506102b26104233660046129a1565b610af1565b34801561043457600080fd5b506102b2610b47565b34801561044957600080fd5b506102b26104583660046129cd565b610b88565b34801561046957600080fd5b506101fd610bce565b34801561047e57600080fd5b506102b261048d36600461296c565b610bdd565b34801561049e57600080fd5b506102336104ad366004612884565b610cbd565b3480156104be57600080fd5b506102336104cd366004612884565b610d0c565b3480156104de57600080fd5b506102b26104ed3660046128b0565b610d19565b3480156104fe57600080fd5b506102b261050d36600461296c565b610da0565b34801561051e57600080fd5b506102b261052d3660046129a1565b610e27565b34801561053e57600080fd5b506102b261054d3660046128cd565b610e7d565b34801561055e57600080fd5b5061023361056d3660046128cd565b610f4e565b34801561057e57600080fd5b5061028461058d3660046129e8565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3480156105c457600080fd5b506102336110a5565b3480156105d957600080fd5b506102b26105e83660046128b0565b6110e2565b3480156105f957600080fd5b506102336106083660046128cd565b6111cd565b60606004805461061c90612a21565b80601f016020809104026020016040519081016040528092919081815260200182805461064890612a21565b80156106955780601f1061066a57610100808354040283529160200191610695565b820191906000526020600020905b81548152906001019060200180831161067857829003601f168201915b5050505050905090565b60006106ac3384846114bc565b5060015b92915050565b6006546001600160a01b031633146106e95760405162461bcd60e51b81526004016106e090612a5c565b60405180910390fd5b6008546040516001600160a01b03918216918316907f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74390600090a3600880546001600160a01b0319166001600160a01b0392909216919091179055565b6006546001600160a01b031633146107705760405162461bcd60e51b81526004016106e090612a5c565b670de0b6b3a76400006103e861078560025490565b610790906001612aa7565b61079a9190612ac6565b6107a49190612ac6565b81101561080b5760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e312560881b60648201526084016106e0565b61081d81670de0b6b3a7640000612aa7565b60095550565b60006108308484846115e1565b610882843361087d85604051806060016040528060288152602001612cb1602891396001600160a01b038a1660009081526001602090815260408083203384529091529020549190611eb7565b6114bc565b5060019392505050565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916106ac91859061087d9086611456565b6006546001600160a01b031633146108ec5760405162461bcd60e51b81526004016106e090612a5c565b6006546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600680546001600160a01b0319169055565b6006546001600160a01b031633146109605760405162461bcd60e51b81526004016106e090612a5c565b6102588310156109ce5760405162461bcd60e51b815260206004820152603360248201527f63616e6e6f7420736574206275796261636b206d6f7265206f6674656e207468604482015272616e206576657279203130206d696e7574657360681b60648201526084016106e0565b6103e882111580156109de575060015b610a435760405162461bcd60e51b815260206004820152603060248201527f4d75737420736574206175746f204c50206275726e2070657263656e7420626560448201526f747765656e20302520616e642031302560801b60648201526084016106e0565b600e92909255600c55600d805460ff1916911515919091179055565b6006546000906001600160a01b03163314610a8c5760405162461bcd60e51b81526004016106e090612a5c565b506012805460ff19169055600190565b6006546001600160a01b03163314610ac65760405162461bcd60e51b81526004016106e090612a5c565b6001600160a01b03919091166000908152602160205260409020805460ff1916911515919091179055565b6006546001600160a01b03163314610b1b5760405162461bcd60e51b81526004016106e090612a5c565b60168390556017829055601881905580610b358385612ae8565b610b3f9190612ae8565b601555505050565b6006546001600160a01b03163314610b715760405162461bcd60e51b81526004016106e090612a5c565b6012805462ffff0019166201010017905542600f55565b6006546001600160a01b03163314610bb25760405162461bcd60e51b81526004016106e090612a5c565b60128054911515620100000262ff000019909216919091179055565b60606005805461061c90612a21565b6006546001600160a01b03163314610c075760405162461bcd60e51b81526004016106e090612a5c565b7f000000000000000000000000e4cfa3e2abed0bd1f1df278e7f2bc747e2bab8c96001600160a01b0316826001600160a01b03161415610caf5760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b657250616972730000000000000060648201526084016106e0565b610cb98282611ef1565b5050565b60006106ac338461087d85604051806060016040528060258152602001612cd9602591393360009081526001602090815260408083206001600160a01b038d1684529091529020549190611eb7565b60006106ac3384846115e1565b6006546001600160a01b03163314610d435760405162461bcd60e51b81526004016106e090612a5c565b6007546040516001600160a01b03918216918316907fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567490600090a3600780546001600160a01b0319166001600160a01b0392909216919091179055565b6006546001600160a01b03163314610dca5760405162461bcd60e51b81526004016106e090612a5c565b6001600160a01b03821660008181526020808052604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6006546001600160a01b03163314610e515760405162461bcd60e51b81526004016106e090612a5c565b601a839055601b829055601c81905580610e6b8385612ae8565b610e759190612ae8565b601955505050565b6006546001600160a01b03163314610ea75760405162461bcd60e51b81526004016106e090612a5c565b670de0b6b3a76400006103e8610ebc60025490565b610ec7906005612aa7565b610ed19190612ac6565b610edb9190612ac6565b811015610f365760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b60648201526084016106e0565b610f4881670de0b6b3a7640000612aa7565b600b5550565b6006546000906001600160a01b03163314610f7b5760405162461bcd60e51b81526004016106e090612a5c565b620186a0610f8860025490565b610f93906001612aa7565b610f9d9190612ac6565b82101561100a5760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b60648201526084016106e0565b6103e861101660025490565b611021906005612aa7565b61102b9190612ac6565b8211156110975760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b60648201526084016106e0565b50600a81905560015b919050565b6006546000906001600160a01b031633146110d25760405162461bcd60e51b81526004016106e090612a5c565b506014805460ff19169055600190565b6006546001600160a01b0316331461110c5760405162461bcd60e51b81526004016106e090612a5c565b6001600160a01b0381166111715760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106e0565b6006546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600680546001600160a01b0319166001600160a01b0392909216919091179055565b6006546000906001600160a01b031633146111fa5760405162461bcd60e51b81526004016106e090612a5c565b60105460115461120a9190612ae8565b42116112585760405162461bcd60e51b815260206004820181905260248201527f4d757374207761697420666f7220636f6f6c646f776e20746f2066696e69736860448201526064016106e0565b6103e88211156112bd5760405162461bcd60e51b815260206004820152602a60248201527f4d6179206e6f74206e756b65206d6f7265207468616e20313025206f6620746f60448201526906b656e7320696e204c560b41b60648201526084016106e0565b426011556040516370a0823160e01b81526001600160a01b037f000000000000000000000000e4cfa3e2abed0bd1f1df278e7f2bc747e2bab8c916600482015260009030906370a082319060240160206040518083038186803b15801561132357600080fd5b505afa158015611337573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061135b9190612b00565b9050600061137561271061136f8487611f45565b90611fc4565b905080156113aa576113aa7f000000000000000000000000e4cfa3e2abed0bd1f1df278e7f2bc747e2bab8c961dead83612006565b60007f000000000000000000000000e4cfa3e2abed0bd1f1df278e7f2bc747e2bab8c99050806001600160a01b031663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561140a57600080fd5b505af115801561141e573d6000803e3d6000fd5b50506040517f8462566617872a3fbab94534675218431ff9e204063ee3f4f43d965626a39abb925060009150a1506001949350505050565b6000806114638385612ae8565b9050838110156114b55760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f77000000000060448201526064016106e0565b9392505050565b6001600160a01b03831661151e5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016106e0565b6001600160a01b03821661157f5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016106e0565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b0383166116075760405162461bcd60e51b81526004016106e090612b19565b6001600160a01b03821661162d5760405162461bcd60e51b81526004016106e090612b5e565b806116435761163e83836000612006565b505050565b60125460ff1615611afe576006546001600160a01b0384811691161480159061167a57506006546001600160a01b03838116911614155b801561168e57506001600160a01b03821615155b80156116a557506001600160a01b03821661dead14155b80156116bb5750600654600160a01b900460ff16155b15611afe57601254610100900460ff16611751576001600160a01b038316600090815260208052604090205460ff168061170c57506001600160a01b038216600090815260208052604090205460ff165b6117515760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b60448201526064016106e0565b60145460ff1615611898576006546001600160a01b038381169116148015906117ac57507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b0316826001600160a01b031614155b80156117ea57507f000000000000000000000000e4cfa3e2abed0bd1f1df278e7f2bc747e2bab8c96001600160a01b0316826001600160a01b031614155b15611898573260009081526013602052604090205443116118855760405162461bcd60e51b815260206004820152604960248201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60448201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b6064820152681030b63637bbb2b21760b91b608482015260a4016106e0565b3260009081526013602052604090204390555b6001600160a01b03831660009081526022602052604090205460ff1680156118d957506001600160a01b03821660009081526021602052604090205460ff16155b156119bd5760095481111561194e5760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b60648201526084016106e0565b600b546001600160a01b0383166000908152602081905260409020546119749083612ae8565b11156119b85760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016106e0565b611afe565b6001600160a01b03821660009081526022602052604090205460ff1680156119fe57506001600160a01b03831660009081526021602052604090205460ff16155b15611a74576009548111156119b85760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b60648201526084016106e0565b6001600160a01b03821660009081526021602052604090205460ff16611afe57600b546001600160a01b038316600090815260208190526040902054611aba9083612ae8565b1115611afe5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016106e0565b30600090815260208190526040902054600a5481108015908190611b2a575060125462010000900460ff165b8015611b405750600654600160a01b900460ff16155b8015611b6557506001600160a01b03851660009081526022602052604090205460ff16155b8015611b8957506001600160a01b038516600090815260208052604090205460ff16155b8015611bad57506001600160a01b038416600090815260208052604090205460ff16155b15611bdb576006805460ff60a01b1916600160a01b179055611bcd61210f565b6006805460ff60a01b191690555b600654600160a01b900460ff16158015611c0d57506001600160a01b03841660009081526022602052604090205460ff165b8015611c1b5750600d5460ff165b8015611c365750600e54600f54611c329190612ae8565b4210155b8015611c5a57506001600160a01b038516600090815260208052604090205460ff16155b15611c6957611c67612349565b505b6006546001600160a01b038616600090815260208052604090205460ff600160a01b909204821615911680611cb557506001600160a01b038516600090815260208052604090205460ff165b15611cbe575060005b60008115611ea3576001600160a01b03861660009081526022602052604090205460ff168015611cf057506000601954115b15611da857611d0f606461136f60195488611f4590919063ffffffff16565b9050601954601b5482611d229190612aa7565b611d2c9190612ac6565b601e6000828254611d3d9190612ae8565b9091555050601954601c54611d529083612aa7565b611d5c9190612ac6565b601f6000828254611d6d9190612ae8565b9091555050601954601a54611d829083612aa7565b611d8c9190612ac6565b601d6000828254611d9d9190612ae8565b90915550611e859050565b6001600160a01b03871660009081526022602052604090205460ff168015611dd257506000601554115b15611e8557611df1606461136f60155488611f4590919063ffffffff16565b905060155460175482611e049190612aa7565b611e0e9190612ac6565b601e6000828254611e1f9190612ae8565b9091555050601554601854611e349083612aa7565b611e3e9190612ac6565b601f6000828254611e4f9190612ae8565b9091555050601554601654611e649083612aa7565b611e6e9190612ac6565b601d6000828254611e7f9190612ae8565b90915550505b8015611e9657611e96873083612006565b611ea08186612ba1565b94505b611eae878787612006565b50505050505050565b60008184841115611edb5760405162461bcd60e51b81526004016106e09190612817565b506000611ee88486612ba1565b95945050505050565b6001600160a01b038216600081815260226020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b600082611f54575060006106b0565b6000611f608385612aa7565b905082611f6d8583612ac6565b146114b55760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b60648201526084016106e0565b60006114b583836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506124e8565b6001600160a01b03831661202c5760405162461bcd60e51b81526004016106e090612b19565b6001600160a01b0382166120525760405162461bcd60e51b81526004016106e090612b5e565b61208f81604051806060016040528060268152602001612c8b602691396001600160a01b0386166000908152602081905260409020549190611eb7565b6001600160a01b0380851660009081526020819052604080822093909355908416815220546120be9082611456565b6001600160a01b038381166000818152602081815260409182902094909455518481529092918616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91016115d4565b3060009081526020819052604081205490506000601f54601d54601e546121369190612ae8565b6121409190612ae8565b9050600082158061214f575081155b1561215957505050565b600a54612167906014612aa7565b83111561217f57600a5461217c906014612aa7565b92505b6000600283601e54866121929190612aa7565b61219c9190612ac6565b6121a69190612ac6565b905060006121b48583612516565b9050476121c082612558565b60006121cc4783612516565b905060006121e98761136f601d5485611f4590919063ffffffff16565b905060006122068861136f601f5486611f4590919063ffffffff16565b90506000816122158486612ba1565b61221f9190612ba1565b6000601e819055601d819055601f8190556008546040519293506001600160a01b031691849181818185875af1925050503d806000811461227c576040519150601f19603f3d011682016040523d82523d6000602084013e612281565b606091505b509098505086158015906122955750600081115b156122e8576122a48782612727565b601e54604080518881526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b6007546040516001600160a01b03909116904790600081818185875af1925050503d8060008114612335576040519150601f19603f3d011682016040523d82523d6000602084013e61233a565b606091505b50505050505050505050505050565b42600f556040516370a0823160e01b81526001600160a01b037f000000000000000000000000e4cfa3e2abed0bd1f1df278e7f2bc747e2bab8c9166004820152600090819030906370a082319060240160206040518083038186803b1580156123b157600080fd5b505afa1580156123c5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906123e99190612b00565b9050600061240861271061136f600c5485611f4590919063ffffffff16565b9050801561243d5761243d7f000000000000000000000000e4cfa3e2abed0bd1f1df278e7f2bc747e2bab8c961dead83612006565b60007f000000000000000000000000e4cfa3e2abed0bd1f1df278e7f2bc747e2bab8c99050806001600160a01b031663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561249d57600080fd5b505af11580156124b1573d6000803e3d6000fd5b50506040517f454c91ae84fcc766ddda0dcb289f26b3d0176efeacf4061fc219fa6ca8c3048d925060009150a16001935050505090565b600081836125095760405162461bcd60e51b81526004016106e09190612817565b506000611ee88486612ac6565b60006114b583836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611eb7565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061258d5761258d612bb8565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561260657600080fd5b505afa15801561261a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061263e9190612bce565b8160018151811061265157612651612bb8565b60200260200101906001600160a01b031690816001600160a01b03168152505061269c307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846114bc565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac947906126f1908590600090869030904290600401612beb565b600060405180830381600087803b15801561270b57600080fd5b505af115801561271f573d6000803e3d6000fd5b505050505050565b612752307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846114bc565b60405163f305d71960e01b815230600482015260248101839052600060448201819052606482015261dead60848201524260a48201527f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b03169063f305d71990839060c4016060604051808303818588803b1580156127d757600080fd5b505af11580156127eb573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906128109190612c5c565b5050505050565b600060208083528351808285015260005b8181101561284457858101830151858201604001528201612828565b81811115612856576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b038116811461288157600080fd5b50565b6000806040838503121561289757600080fd5b82356128a28161286c565b946020939093013593505050565b6000602082840312156128c257600080fd5b81356114b58161286c565b6000602082840312156128df57600080fd5b5035919050565b6000806000606084860312156128fb57600080fd5b83356129068161286c565b925060208401356129168161286c565b929592945050506040919091013590565b803580151581146110a057600080fd5b60008060006060848603121561294c57600080fd5b833592506020840135915061296360408501612927565b90509250925092565b6000806040838503121561297f57600080fd5b823561298a8161286c565b915061299860208401612927565b90509250929050565b6000806000606084860312156129b657600080fd5b505081359360208301359350604090920135919050565b6000602082840312156129df57600080fd5b6114b582612927565b600080604083850312156129fb57600080fd5b8235612a068161286c565b91506020830135612a168161286c565b809150509250929050565b600181811c90821680612a3557607f821691505b60208210811415612a5657634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615612ac157612ac1612a91565b500290565b600082612ae357634e487b7160e01b600052601260045260246000fd5b500490565b60008219821115612afb57612afb612a91565b500190565b600060208284031215612b1257600080fd5b5051919050565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b600082821015612bb357612bb3612a91565b500390565b634e487b7160e01b600052603260045260246000fd5b600060208284031215612be057600080fd5b81516114b58161286c565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015612c3b5784516001600160a01b031683529383019391830191600101612c16565b50506001600160a01b03969096166060850152505050608001529392505050565b600080600060608486031215612c7157600080fd5b835192506020840151915060408401519050925092509256fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220ba51b265e9aecc5a01c4b077f7e739db4e8da53956b16082a9d75091e34baf3464736f6c63430008090033
Deployed Bytecode Sourcemap
29647:17837:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7239:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9926:169;;;;;;;;;;-1:-1:-1;9926:169:0;;;;;:::i;:::-;;:::i;:::-;;;1237:14:1;;1230:22;1212:41;;1200:2;1185:18;9926:169:0;1072:187:1;31317:64:0;;;;;;;;;;-1:-1:-1;31317:64:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;8362:108;;;;;;;;;;-1:-1:-1;8450:12:0;;8362:108;;;1662:25:1;;;1650:2;1635:18;8362:108:0;1516:177:1;37922:157:0;;;;;;;;;;-1:-1:-1;37922:157:0;;;;;:::i;:::-;;:::i;:::-;;35556:234;;;;;;;;;;-1:-1:-1;35556:234:0;;;;;:::i;:::-;;:::i;10578:355::-;;;;;;;;;;-1:-1:-1;10578:355:0;;;;;:::i;:::-;;:::i;8203:93::-;;;;;;;;;;-1:-1:-1;8203:93:0;;8286:2;2486:36:1;;2474:2;2459:18;8203:93:0;2344:184:1;11343:218:0;;;;;;;;;;-1:-1:-1;11343:218:0;;;;;:::i;:::-;;:::i;38091:125::-;;;;;;;;;;-1:-1:-1;38091:125:0;;;;;:::i;:::-;-1:-1:-1;;;;;38180:28:0;38156:4;38180:28;;;:19;:28;;;;;;;;;38091:125;8534:127;;;;;;;;;;-1:-1:-1;8534:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;8635:18:0;8608:7;8635:18;;;;;;;;;;;;8534:127;22256:148;;;;;;;;;;;;;:::i;45257:447::-;;;;;;;;;;-1:-1:-1;45257:447:0;;;;;:::i;:::-;;:::i;34778:120::-;;;;;;;;;;;;;:::i;36023:144::-;;;;;;;;;;-1:-1:-1;36023:144:0;;;;;:::i;:::-;;:::i;36374:298::-;;;;;;;;;;-1:-1:-1;36374:298:0;;;;;:::i;:::-;;:::i;34570:155::-;;;;;;;;;;;;;:::i;36264:101::-;;;;;;;;;;-1:-1:-1;36264:101:0;;;;;:::i;:::-;;:::i;7459:104::-;;;;;;;;;;;;;:::i;37253:245::-;;;;;;;;;;-1:-1:-1;37253:245:0;;;;;:::i;:::-;;:::i;12065:269::-;;;;;;;;;;-1:-1:-1;12065:269:0;;;;;:::i;:::-;;:::i;9388:175::-;;;;;;;;;;-1:-1:-1;9388:175:0;;;;;:::i;:::-;;:::i;37705:208::-;;;;;;;;;;-1:-1:-1;37705:208:0;;;;;:::i;:::-;;:::i;37062:182::-;;;;;;;;;;-1:-1:-1;37062:182:0;;;;;:::i;:::-;;:::i;36714:306::-;;;;;;;;;;-1:-1:-1;36714:306:0;;;;;:::i;:::-;;:::i;35799:215::-;;;;;;;;;;-1:-1:-1;35799:215:0;;;;;:::i;:::-;;:::i;35166:381::-;;;;;;;;;;-1:-1:-1;35166:381:0;;;;;:::i;:::-;;:::i;9627:151::-;;;;;;;;;;-1:-1:-1;9627:151:0;;;;;:::i;:::-;-1:-1:-1;;;;;9743:18:0;;;9716:7;9743:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;9627:151;34960:134;;;;;;;;;;;;;:::i;22560:244::-;;;;;;;;;;-1:-1:-1;22560:244:0;;;;;:::i;:::-;;:::i;46491:990::-;;;;;;;;;;-1:-1:-1;46491:990:0;;;;;:::i;:::-;;:::i;7239:100::-;7293:13;7326:5;7319:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7239:100;:::o;9926:169::-;10009:4;10026:39;315:10;10049:7;10058:6;10026:8;:39::i;:::-;-1:-1:-1;10083:4:0;9926:169;;;;;:::o;37922:157::-;21825:6;;-1:-1:-1;;;;;21825:6:0;315:10;21825:22;21817:67;;;;-1:-1:-1;;;21817:67:0;;;;;;;:::i;:::-;;;;;;;;;38029:9:::1;::::0;38001:38:::1;::::0;-1:-1:-1;;;;;38029:9:0;;::::1;::::0;38001:38;::::1;::::0;::::1;::::0;38029:9:::1;::::0;38001:38:::1;38050:9;:21:::0;;-1:-1:-1;;;;;;38050:21:0::1;-1:-1:-1::0;;;;;38050:21:0;;;::::1;::::0;;;::::1;::::0;;37922:157::o;35556:234::-;21825:6;;-1:-1:-1;;;;;21825:6:0;315:10;21825:22;21817:67;;;;-1:-1:-1;;;21817:67:0;;;;;;;:::i;:::-;35675:4:::1;35669;35649:13;8450:12:::0;;;8362:108;35649:13:::1;:17;::::0;35665:1:::1;35649:17;:::i;:::-;:24;;;;:::i;:::-;35648:31;;;;:::i;:::-;35638:6;:41;;35630:101;;;::::0;-1:-1:-1;;;35630:101:0;;5713:2:1;35630:101:0::1;::::0;::::1;5695:21:1::0;5752:2;5732:18;;;5725:30;5791:34;5771:18;;;5764:62;-1:-1:-1;;;5842:18:1;;;5835:45;5897:19;;35630:101:0::1;5511:411:1::0;35630:101:0::1;35765:17;:6:::0;35775::::1;35765:17;:::i;:::-;35742:20;:40:::0;-1:-1:-1;35556:234:0:o;10578:355::-;10718:4;10735:36;10745:6;10753:9;10764:6;10735:9;:36::i;:::-;10782:121;10791:6;315:10;10813:89;10851:6;10813:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;10813:19:0;;;;;;:11;:19;;;;;;;;315:10;10813:33;;;;;;;;;;:37;:89::i;:::-;10782:8;:121::i;:::-;-1:-1:-1;10921:4:0;10578:355;;;;;:::o;11343:218::-;315:10;11431:4;11480:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;11480:34:0;;;;;;;;;;11431:4;;11448:83;;11471:7;;11480:50;;11519:10;11480:38;:50::i;22256:148::-;21825:6;;-1:-1:-1;;;;;21825:6:0;315:10;21825:22;21817:67;;;;-1:-1:-1;;;21817:67:0;;;;;;;:::i;:::-;22347:6:::1;::::0;22326:40:::1;::::0;22363:1:::1;::::0;-1:-1:-1;;;;;22347:6:0::1;::::0;22326:40:::1;::::0;22363:1;;22326:40:::1;22377:6;:19:::0;;-1:-1:-1;;;;;;22377:19:0::1;::::0;;22256:148::o;45257:447::-;21825:6;;-1:-1:-1;;;;;21825:6:0;315:10;21825:22;21817:67;;;;-1:-1:-1;;;21817:67:0;;;;;;;:::i;:::-;45411:3:::1;45388:19;:26;;45380:90;;;::::0;-1:-1:-1;;;45380:90:0;;6129:2:1;45380:90:0::1;::::0;::::1;6111:21:1::0;6168:2;6148:18;;;6141:30;6207:34;6187:18;;;6180:62;-1:-1:-1;;;6258:18:1;;;6251:49;6317:19;;45380:90:0::1;5927:415:1::0;45380:90:0::1;45501:4;45489:8;:16;;:33;;;;-1:-1:-1::0;45509:13:0;45489:33:::1;45481:94;;;::::0;-1:-1:-1;;;45481:94:0;;6549:2:1;45481:94:0::1;::::0;::::1;6531:21:1::0;6588:2;6568:18;;;6561:30;6627:34;6607:18;;;6600:62;-1:-1:-1;;;6678:18:1;;;6671:46;6734:19;;45481:94:0::1;6347:412:1::0;45481:94:0::1;45586:15;:37:::0;;;;45634:16:::1;:27:::0;45672:13:::1;:24:::0;;-1:-1:-1;;45672:24:0::1;::::0;::::1;;::::0;;;::::1;::::0;;45257:447::o;34778:120::-;21825:6;;34830:4;;-1:-1:-1;;;;;21825:6:0;315:10;21825:22;21817:67;;;;-1:-1:-1;;;21817:67:0;;;;;;;:::i;:::-;-1:-1:-1;34846:14:0::1;:22:::0;;-1:-1:-1;;34846:22:0::1;::::0;;;34778:120;:::o;36023:144::-;21825:6;;-1:-1:-1;;;;;21825:6:0;315:10;21825:22;21817:67;;;;-1:-1:-1;;;21817:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;36113:39:0;;;::::1;;::::0;;;:31:::1;:39;::::0;;;;:46;;-1:-1:-1;;36113:46:0::1;::::0;::::1;;::::0;;;::::1;::::0;;36023:144::o;36374:298::-;21825:6;;-1:-1:-1;;;;;21825:6:0;315:10;21825:22;21817:67;;;;-1:-1:-1;;;21817:67:0;;;;;;;:::i;:::-;36490:15:::1;:31:::0;;;36532:15:::1;:31:::0;;;36574:9:::1;:19:::0;;;36586:7;36619:33:::1;36550:13:::0;36508;36619:33:::1;:::i;:::-;:45;;;;:::i;:::-;36604:12;:60:::0;-1:-1:-1;;;36374:298:0:o;34570:155::-;21825:6;;-1:-1:-1;;;;;21825:6:0;315:10;21825:22;21817:67;;;;-1:-1:-1;;;21817:67:0;;;;;;;:::i;:::-;34625:13:::1;:20:::0;;-1:-1:-1;;34656:18:0;;;;;34702:15:::1;34685:14;:32:::0;34570:155::o;36264:101::-;21825:6;;-1:-1:-1;;;;;21825:6:0;315:10;21825:22;21817:67;;;;-1:-1:-1;;;21817:67:0;;;;;;;:::i;:::-;36336:11:::1;:21:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;36336:21:0;;::::1;::::0;;;::::1;::::0;;36264:101::o;7459:104::-;7515:13;7548:7;7541:14;;;;;:::i;37253:245::-;21825:6;;-1:-1:-1;;;;;21825:6:0;315:10;21825:22;21817:67;;;;-1:-1:-1;;;21817:67:0;;;;;;;:::i;:::-;37360:13:::1;-1:-1:-1::0;;;;;37352:21:0::1;:4;-1:-1:-1::0;;;;;37352:21:0::1;;;37344:91;;;::::0;-1:-1:-1;;;37344:91:0;;7099:2:1;37344:91:0::1;::::0;::::1;7081:21:1::0;7138:2;7118:18;;;7111:30;7177:34;7157:18;;;7150:62;7248:27;7228:18;;;7221:55;7293:19;;37344:91:0::1;6897:421:1::0;37344:91:0::1;37449:41;37478:4;37484:5;37449:28;:41::i;:::-;37253:245:::0;;:::o;12065:269::-;12158:4;12175:129;315:10;12198:7;12207:96;12246:15;12207:96;;;;;;;;;;;;;;;;;315:10;12207:25;;;;:11;:25;;;;;;;;-1:-1:-1;;;;;12207:34:0;;;;;;;;;;;;:38;:96::i;9388:175::-;9474:4;9491:42;315:10;9515:9;9526:6;9491:9;:42::i;37705:208::-;21825:6;;-1:-1:-1;;;;;21825:6:0;315:10;21825:22;21817:67;;;;-1:-1:-1;;;21817:67:0;;;;;;;:::i;:::-;37842:15:::1;::::0;37799:59:::1;::::0;-1:-1:-1;;;;;37842:15:0;;::::1;::::0;37799:59;::::1;::::0;::::1;::::0;37842:15:::1;::::0;37799:59:::1;37869:15;:36:::0;;-1:-1:-1;;;;;;37869:36:0::1;-1:-1:-1::0;;;;;37869:36:0;;;::::1;::::0;;;::::1;::::0;;37705:208::o;37062:182::-;21825:6;;-1:-1:-1;;;;;21825:6:0;315:10;21825:22;21817:67;;;;-1:-1:-1;;;21817:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;37147:28:0;::::1;;::::0;;;:19:::1;:28:::0;;;;;;;;:39;;-1:-1:-1;;37147:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;37202:34;;1212:41:1;;;37202:34:0::1;::::0;1185:18:1;37202:34:0::1;;;;;;;37062:182:::0;;:::o;36714:306::-;21825:6;;-1:-1:-1;;;;;21825:6:0;315:10;21825:22;21817:67;;;;-1:-1:-1;;;21817:67:0;;;;;;;:::i;:::-;36831:16:::1;:32:::0;;;36874:16:::1;:32:::0;;;36917:10:::1;:20:::0;;;36930:7;36964:35:::1;36893:13:::0;36850;36964:35:::1;:::i;:::-;:48;;;;:::i;:::-;36948:13;:64:::0;-1:-1:-1;;;36714:306:0:o;35799:215::-;21825:6;;-1:-1:-1;;;;;21825:6:0;315:10;21825:22;21817:67;;;;-1:-1:-1;;;21817:67:0;;;;;;;:::i;:::-;35921:4:::1;35915;35895:13;8450:12:::0;;;8362:108;35895:13:::1;:17;::::0;35911:1:::1;35895:17;:::i;:::-;:24;;;;:::i;:::-;35894:31;;;;:::i;:::-;35884:6;:41;;35876:90;;;::::0;-1:-1:-1;;;35876:90:0;;7525:2:1;35876:90:0::1;::::0;::::1;7507:21:1::0;7564:2;7544:18;;;7537:30;7603:34;7583:18;;;7576:62;-1:-1:-1;;;7654:18:1;;;7647:34;7698:19;;35876:90:0::1;7323:400:1::0;35876:90:0::1;35989:17;:6:::0;35999::::1;35989:17;:::i;:::-;35977:9;:29:::0;-1:-1:-1;35799:215:0:o;35166:381::-;21825:6;;35247:4;;-1:-1:-1;;;;;21825:6:0;315:10;21825:22;21817:67;;;;-1:-1:-1;;;21817:67:0;;;;;;;:::i;:::-;35303:6:::1;35283:13;8450:12:::0;;;8362:108;35283:13:::1;:17;::::0;35299:1:::1;35283:17;:::i;:::-;:26;;;;:::i;:::-;35270:9;:39;;35262:105;;;::::0;-1:-1:-1;;;35262:105:0;;7930:2:1;35262:105:0::1;::::0;::::1;7912:21:1::0;7969:2;7949:18;;;7942:30;8008:34;7988:18;;;7981:62;-1:-1:-1;;;8059:18:1;;;8052:51;8120:19;;35262:105:0::1;7728:417:1::0;35262:105:0::1;35418:4;35398:13;8450:12:::0;;;8362:108;35398:13:::1;:17;::::0;35414:1:::1;35398:17;:::i;:::-;:24;;;;:::i;:::-;35385:9;:37;;35377:102;;;::::0;-1:-1:-1;;;35377:102:0;;8352:2:1;35377:102:0::1;::::0;::::1;8334:21:1::0;8391:2;8371:18;;;8364:30;8430:34;8410:18;;;8403:62;-1:-1:-1;;;8481:18:1;;;8474:50;8541:19;;35377:102:0::1;8150:416:1::0;35377:102:0::1;-1:-1:-1::0;35489:18:0::1;:30:::0;;;35536:4:::1;21895:1;35166:381:::0;;;:::o;34960:134::-;21825:6;;35020:4;;-1:-1:-1;;;;;21825:6:0;315:10;21825:22;21817:67;;;;-1:-1:-1;;;21817:67:0;;;;;;;:::i;:::-;-1:-1:-1;35036:20:0::1;:28:::0;;-1:-1:-1;;35036:28:0::1;::::0;;;34960:134;:::o;22560:244::-;21825:6;;-1:-1:-1;;;;;21825:6:0;315:10;21825:22;21817:67;;;;-1:-1:-1;;;21817:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;22649:22:0;::::1;22641:73;;;::::0;-1:-1:-1;;;22641:73:0;;8773:2:1;22641:73:0::1;::::0;::::1;8755:21:1::0;8812:2;8792:18;;;8785:30;8851:34;8831:18;;;8824:62;-1:-1:-1;;;8902:18:1;;;8895:36;8948:19;;22641:73:0::1;8571:402:1::0;22641:73:0::1;22751:6;::::0;22730:38:::1;::::0;-1:-1:-1;;;;;22730:38:0;;::::1;::::0;22751:6:::1;::::0;22730:38:::1;::::0;22751:6:::1;::::0;22730:38:::1;22779:6;:17:::0;;-1:-1:-1;;;;;;22779:17:0::1;-1:-1:-1::0;;;;;22779:17:0;;;::::1;::::0;;;::::1;::::0;;22560:244::o;46491:990::-;21825:6;;46575:4;;-1:-1:-1;;;;;21825:6:0;315:10;21825:22;21817:67;;;;-1:-1:-1;;;21817:67:0;;;;;;;:::i;:::-;46640:19:::1;;46617:20;;:42;;;;:::i;:::-;46599:15;:60;46591:106;;;::::0;-1:-1:-1;;;46591:106:0;;9180:2:1;46591:106:0::1;::::0;::::1;9162:21:1::0;;;9199:18;;;9192:30;9258:34;9238:18;;;9231:62;9310:18;;46591:106:0::1;8978:356:1::0;46591:106:0::1;46727:4;46716:7;:15;;46708:70;;;::::0;-1:-1:-1;;;46708:70:0;;9541:2:1;46708:70:0::1;::::0;::::1;9523:21:1::0;9580:2;9560:18;;;9553:30;9619:34;9599:18;;;9592:62;-1:-1:-1;;;9670:18:1;;;9663:40;9720:19;;46708:70:0::1;9339:406:1::0;46708:70:0::1;46812:15;46789:20;:38:::0;46914:29:::1;::::0;-1:-1:-1;;;46914:29:0;;-1:-1:-1;;;;;46929:13:0::1;9914:32:1::0;46914:29:0::1;::::0;::::1;9896:51:1::0;46883:28:0::1;::::0;46914:4:::1;::::0;:14:::1;::::0;9869:18:1;;46914:29:0::1;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;46883:60:::0;-1:-1:-1;46994:20:0::1;47017:44;47055:5;47017:33;46883:60:::0;47042:7;47017:24:::1;:33::i;:::-;:37:::0;::::1;:44::i;:::-;46994:67:::0;-1:-1:-1;47167:16:0;;47163:109:::1;;47199:61;47215:13;47238:6;47247:12;47199:15;:61::i;:::-;47348:19;47385:13;47348:51;;47410:4;-1:-1:-1::0;;;;;47410:9:0::1;;:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;47437:14:0::1;::::0;::::1;::::0;-1:-1:-1;47437:14:0;;-1:-1:-1;47437:14:0::1;-1:-1:-1::0;47469:4:0::1;::::0;46491:990;-1:-1:-1;;;;46491:990:0:o;16642:182::-;16700:7;;16732:5;16736:1;16732;:5;:::i;:::-;16720:17;;16761:1;16756;:6;;16748:46;;;;-1:-1:-1;;;16748:46:0;;10349:2:1;16748:46:0;;;10331:21:1;10388:2;10368:18;;;10361:30;10427:29;10407:18;;;10400:57;10474:18;;16748:46:0;10147:351:1;16748:46:0;16815:1;16642:182;-1:-1:-1;;;16642:182:0:o;15261:381::-;-1:-1:-1;;;;;15397:19:0;;15389:68;;;;-1:-1:-1;;;15389:68:0;;10705:2:1;15389:68:0;;;10687:21:1;10744:2;10724:18;;;10717:30;10783:34;10763:18;;;10756:62;-1:-1:-1;;;10834:18:1;;;10827:34;10878:19;;15389:68:0;10503:400:1;15389:68:0;-1:-1:-1;;;;;15476:21:0;;15468:68;;;;-1:-1:-1;;;15468:68:0;;11110:2:1;15468:68:0;;;11092:21:1;11149:2;11129:18;;;11122:30;11188:34;11168:18;;;11161:62;-1:-1:-1;;;11239:18:1;;;11232:32;11281:19;;15468:68:0;10908:398:1;15468:68:0;-1:-1:-1;;;;;15550:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;15602:32;;1662:25:1;;;15602:32:0;;1635:18:1;15602:32:0;;;;;;;;15261:381;;;:::o;38276:4247::-;-1:-1:-1;;;;;38408:18:0;;38400:68;;;;-1:-1:-1;;;38400:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;38487:16:0;;38479:64;;;;-1:-1:-1;;;38479:64:0;;;;;;;:::i;:::-;38561:11;38558:92;;38589:28;38605:4;38611:2;38615:1;38589:15;:28::i;:::-;38276:4247;;;:::o;38558:92::-;38666:14;;;;38663:1811;;;21677:6;;-1:-1:-1;;;;;38718:15:0;;;21677:6;;38718:15;;;;:49;;-1:-1:-1;21677:6:0;;-1:-1:-1;;;;;38754:13:0;;;21677:6;;38754:13;;38718:49;:86;;;;-1:-1:-1;;;;;;38788:16:0;;;;38718:86;:128;;;;-1:-1:-1;;;;;;38825:21:0;;38839:6;38825:21;;38718:128;:158;;;;-1:-1:-1;38868:8:0;;-1:-1:-1;;;38868:8:0;;;;38867:9;38718:158;38696:1767;;;38914:13;;;;;;;38910:148;;-1:-1:-1;;;;;38959:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;38988:23:0;;;;;;:19;:23;;;;;;;;38959:52;38951:87;;;;-1:-1:-1;;;38951:87:0;;12323:2:1;38951:87:0;;;12305:21:1;12362:2;12342:18;;;12335:30;-1:-1:-1;;;12381:18:1;;;12374:52;12443:18;;38951:87:0;12121:346:1;38951:87:0;39217:20;;;;39213:423;;;21677:6;;-1:-1:-1;;;;;39265:13:0;;;21677:6;;39265:13;;;;:47;;;39296:15;-1:-1:-1;;;;;39282:30:0;:2;-1:-1:-1;;;;;39282:30:0;;;39265:47;:79;;;;;39330:13;-1:-1:-1;;;;;39316:28:0;:2;-1:-1:-1;;;;;39316:28:0;;;39265:79;39261:356;;;39409:9;39380:39;;;;:28;:39;;;;;;39422:12;-1:-1:-1;39372:140:0;;;;-1:-1:-1;;;39372:140:0;;12674:2:1;39372:140:0;;;12656:21:1;12713:2;12693:18;;;12686:30;12752:34;12732:18;;;12725:62;12823:34;12803:18;;;12796:62;-1:-1:-1;;;12874:19:1;;;12867:40;12924:19;;39372:140:0;12472:477:1;39372:140:0;39568:9;39539:39;;;;:28;:39;;;;;39581:12;39539:54;;39261:356;-1:-1:-1;;;;;39689:31:0;;;;;;:25;:31;;;;;;;;:71;;;;-1:-1:-1;;;;;;39725:35:0;;;;;;:31;:35;;;;;;;;39724:36;39689:71;39685:763;;;39807:20;;39797:6;:30;;39789:96;;;;-1:-1:-1;;;39789:96:0;;13156:2:1;39789:96:0;;;13138:21:1;13195:2;13175:18;;;13168:30;13234:34;13214:18;;;13207:62;-1:-1:-1;;;13285:18:1;;;13278:51;13346:19;;39789:96:0;12954:417:1;39789:96:0;39946:9;;-1:-1:-1;;;;;8635:18:0;;8608:7;8635:18;;;;;;;;;;;39920:22;;:6;:22;:::i;:::-;:35;;39912:67;;;;-1:-1:-1;;;39912:67:0;;13578:2:1;39912:67:0;;;13560:21:1;13617:2;13597:18;;;13590:30;-1:-1:-1;;;13636:18:1;;;13629:49;13695:18;;39912:67:0;13376:343:1;39912:67:0;39685:763;;;-1:-1:-1;;;;;40058:29:0;;;;;;:25;:29;;;;;;;;:71;;;;-1:-1:-1;;;;;;40092:37:0;;;;;;:31;:37;;;;;;;;40091:38;40058:71;40054:394;;;40176:20;;40166:6;:30;;40158:97;;;;-1:-1:-1;;;40158:97:0;;13926:2:1;40158:97:0;;;13908:21:1;13965:2;13945:18;;;13938:30;14004:34;13984:18;;;13977:62;-1:-1:-1;;;14055:18:1;;;14048:52;14117:19;;40158:97:0;13724:418:1;40054:394:0;-1:-1:-1;;;;;40302:35:0;;;;;;:31;:35;;;;;;;;40298:150;;40395:9;;-1:-1:-1;;;;;8635:18:0;;8608:7;8635:18;;;;;;;;;;;40369:22;;:6;:22;:::i;:::-;:35;;40361:67;;;;-1:-1:-1;;;40361:67:0;;13578:2:1;40361:67:0;;;13560:21:1;13617:2;13597:18;;;13590:30;-1:-1:-1;;;13636:18:1;;;13629:49;13695:18;;40361:67:0;13376:343:1;40361:67:0;40536:4;40487:28;8635:18;;;;;;;;;;;40595;;40571:42;;;;;;;40645:35;;-1:-1:-1;40669:11:0;;;;;;;40645:35;:61;;;;-1:-1:-1;40698:8:0;;-1:-1:-1;;;40698:8:0;;;;40697:9;40645:61;:110;;;;-1:-1:-1;;;;;;40724:31:0;;;;;;:25;:31;;;;;;;;40723:32;40645:110;:153;;;;-1:-1:-1;;;;;;40773:25:0;;;;;;:19;:25;;;;;;;;40772:26;40645:153;:194;;;;-1:-1:-1;;;;;;40816:23:0;;;;;;:19;:23;;;;;;;;40815:24;40645:194;40627:328;;;40866:8;:15;;-1:-1:-1;;;;40866:15:0;-1:-1:-1;;;40866:15:0;;;40899:10;:8;:10::i;:::-;40927:8;:16;;-1:-1:-1;;;;40927:16:0;;;40627:328;40972:8;;-1:-1:-1;;;40972:8:0;;;;40971:9;:42;;;;-1:-1:-1;;;;;;40984:29:0;;;;;;:25;:29;;;;;;;;40971:42;:59;;;;-1:-1:-1;41017:13:0;;;;40971:59;:114;;;;;41070:15;;41053:14;;:32;;;;:::i;:::-;41034:15;:51;;40971:114;:144;;;;-1:-1:-1;;;;;;41090:25:0;;;;;;:19;:25;;;;;;;;41089:26;40971:144;40968:204;;;41131:29;:27;:29::i;:::-;;40968:204;41201:8;;-1:-1:-1;;;;;41311:25:0;;41185:12;41311:25;;;:19;:25;;;;;;41201:8;-1:-1:-1;;;41201:8:0;;;;;41200:9;;41311:25;;:52;;-1:-1:-1;;;;;;41340:23:0;;;;;;:19;:23;;;;;;;;41311:52;41308:99;;;-1:-1:-1;41390:5:0;41308:99;41420:12;41524:7;41521:948;;;-1:-1:-1;;;;;41575:29:0;;;;;;:25;:29;;;;;;;;:50;;;;;41624:1;41608:13;;:17;41575:50;41571:748;;;41652:34;41682:3;41652:25;41663:13;;41652:6;:10;;:25;;;;:::i;:34::-;41645:41;;41753:13;;41734:16;;41727:4;:23;;;;:::i;:::-;:39;;;;:::i;:::-;41705:18;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;;41821:13:0;;41808:10;;41801:17;;:4;:17;:::i;:::-;:33;;;;:::i;:::-;41785:12;;:49;;;;;;;:::i;:::-;;;;-1:-1:-1;;41901:13:0;;41882:16;;41875:23;;:4;:23;:::i;:::-;:39;;;;:::i;:::-;41853:18;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;41571:748:0;;-1:-1:-1;41571:748:0;;-1:-1:-1;;;;;41975:31:0;;;;;;:25;:31;;;;;;;;:51;;;;;42025:1;42010:12;;:16;41975:51;41972:347;;;42051:33;42080:3;42051:24;42062:12;;42051:6;:10;;:24;;;;:::i;:33::-;42044:40;;42147:12;;42129:15;;42122:4;:22;;;;:::i;:::-;:37;;;;:::i;:::-;42100:18;;:59;;;;;;;:::i;:::-;;;;-1:-1:-1;;42213:12:0;;42201:9;;42194:16;;:4;:16;:::i;:::-;:31;;;;:::i;:::-;42178:12;;:47;;;;;;;:::i;:::-;;;;-1:-1:-1;;42291:12:0;;42273:15;;42266:22;;:4;:22;:::i;:::-;:37;;;;:::i;:::-;42244:18;;:59;;;;;;;:::i;:::-;;;;-1:-1:-1;;41972:347:0;42339:8;;42336:93;;42371:42;42387:4;42401;42408;42371:15;:42::i;:::-;42443:14;42453:4;42443:14;;:::i;:::-;;;41521:948;42482:33;42498:4;42504:2;42508:6;42482:15;:33::i;:::-;38389:4134;;;;38276:4247;;;:::o;17548:193::-;17634:7;17670:12;17662:6;;;;17654:29;;;;-1:-1:-1;;;17654:29:0;;;;;;;;:::i;:::-;-1:-1:-1;17694:9:0;17706:5;17710:1;17706;:5;:::i;:::-;17694:17;17548:193;-1:-1:-1;;;;;17548:193:0:o;37507:189::-;-1:-1:-1;;;;;37590:31:0;;;;;;:25;:31;;;;;;:39;;-1:-1:-1;;37590:39:0;;;;;;;;;;37648:40;;37590:39;;:31;37648:40;;;37507:189;;:::o;18001:473::-;18059:7;18304:6;18300:47;;-1:-1:-1;18334:1:0;18327:8;;18300:47;18360:9;18372:5;18376:1;18372;:5;:::i;:::-;18360:17;-1:-1:-1;18405:1:0;18396:5;18400:1;18360:17;18396:5;:::i;:::-;:10;18388:56;;;;-1:-1:-1;;;18388:56:0;;14479:2:1;18388:56:0;;;14461:21:1;14518:2;14498:18;;;14491:30;14557:34;14537:18;;;14530:62;-1:-1:-1;;;14608:18:1;;;14601:31;14649:19;;18388:56:0;14277:397:1;18951:132:0;19009:7;19036:39;19040:1;19043;19036:39;;;;;;;;;;;;;;;;;:3;:39::i;12825:575::-;-1:-1:-1;;;;;12965:20:0;;12957:70;;;;-1:-1:-1;;;12957:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;13046:23:0;;13038:71;;;;-1:-1:-1;;;13038:71:0;;;;;;;:::i;:::-;13204;13226:6;13204:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;13204:17:0;;:9;:17;;;;;;;;;;;;:71;:21;:71::i;:::-;-1:-1:-1;;;;;13184:17:0;;;:9;:17;;;;;;;;;;;:91;;;;13309:20;;;;;;;:32;;13334:6;13309:24;:32::i;:::-;-1:-1:-1;;;;;13286:20:0;;;:9;:20;;;;;;;;;;;;:55;;;;13357:35;1662:25:1;;;13286:20:0;;13357:35;;;;;;1635:18:1;13357:35:0;1516:177:1;43671:1577:0;43754:4;43710:23;8635:18;;;;;;;;;;;43710:50;;43771:25;43841:12;;43820:18;;43799;;:39;;;;:::i;:::-;:54;;;;:::i;:::-;43771:82;-1:-1:-1;43864:12:0;43893:20;;;:46;;-1:-1:-1;43917:22:0;;43893:46;43890:60;;;43942:7;;;43671:1577::o;43890:60::-;43984:18;;:23;;44005:2;43984:23;:::i;:::-;43966:15;:41;43963:111;;;44039:18;;:23;;44060:2;44039:23;:::i;:::-;44021:41;;43963:111;44136:23;44221:1;44201:17;44180:18;;44162:15;:36;;;;:::i;:::-;:56;;;;:::i;:::-;:60;;;;:::i;:::-;44136:86;-1:-1:-1;44233:26:0;44262:36;:15;44136:86;44262:19;:36::i;:::-;44233:65;-1:-1:-1;44340:21:0;44375:36;44233:65;44375:16;:36::i;:::-;44426:18;44447:44;:21;44473:17;44447:25;:44::i;:::-;44426:65;;44505:23;44531:57;44570:17;44531:34;44546:18;;44531:10;:14;;:34;;;;:::i;:57::-;44505:83;;44599:17;44619:51;44652:17;44619:28;44634:12;;44619:10;:14;;:28;;;;:::i;:51::-;44599:71;-1:-1:-1;44687:23:0;44599:71;44713:28;44726:15;44713:10;:28;:::i;:::-;:40;;;;:::i;:::-;44791:1;44770:18;:22;;;44803:18;:22;;;44836:12;:16;;;44887:9;;44879:45;;44687:66;;-1:-1:-1;;;;;;44887:9:0;;44910;;44879:45;44791:1;44879:45;44910:9;44887;44879:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;44866:58:0;;-1:-1:-1;;44941:19:0;;;;;:42;;;44982:1;44964:15;:19;44941:42;44938:210;;;44999:46;45012:15;45029;44999:12;:46::i;:::-;45117:18;;45065:71;;;15091:25:1;;;15147:2;15132:18;;15125:34;;;15175:18;;;15168:34;;;;45065:71:0;;;;;;15079:2:1;45065:71:0;;;44938:210;45185:15;;45177:63;;-1:-1:-1;;;;;45185:15:0;;;;45214:21;;45177:63;;;;45214:21;45185:15;45177:63;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;;;43671:1577:0:o;45713:769::-;45806:15;45789:14;:32;45908:29;;-1:-1:-1;;;45908:29:0;;-1:-1:-1;;;;;45923:13:0;9914:32:1;45908:29:0;;;9896:51:1;45770:4:0;;;;45908;;:14;;9869:18:1;;45908:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;45877:60;;45988:20;46011:53;46058:5;46011:42;46036:16;;46011:20;:24;;:42;;;;:::i;:53::-;45988:76;-1:-1:-1;46170:16:0;;46166:109;;46202:61;46218:13;46241:6;46250:12;46202:15;:61::i;:::-;46351:19;46388:13;46351:51;;46413:4;-1:-1:-1;;;;;46413:9:0;;:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;46440:12:0;;;;-1:-1:-1;46440:12:0;;-1:-1:-1;46440:12:0;46470:4;46463:11;;;;;45713:769;:::o;19580:279::-;19666:7;19701:12;19694:5;19686:28;;;;-1:-1:-1;;;19686:28:0;;;;;;;;:::i;:::-;-1:-1:-1;19725:9:0;19737:5;19741:1;19737;:5;:::i;17108:136::-;17166:7;17193:43;17197:1;17200;17193:43;;;;;;;;;;;;;;;;;:3;:43::i;42532:597::-;42685:16;;;42699:1;42685:16;;;;;;;;42661:21;;42685:16;;;;;;;;;;-1:-1:-1;42685:16:0;42661:40;;42730:4;42712;42717:1;42712:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;42712:23:0;;;-1:-1:-1;;;;;42712:23:0;;;;;42756:15;-1:-1:-1;;;;;42756:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;42746:4;42751:1;42746:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1;;;;;42746:32:0;;;-1:-1:-1;;;;;42746:32:0;;;;;42792:62;42809:4;42824:15;42842:11;42792:8;:62::i;:::-;42894:224;;-1:-1:-1;;;42894:224:0;;-1:-1:-1;;;;;42894:15:0;:66;;;;:224;;42975:11;;43001:1;;43045:4;;43072;;43092:15;;42894:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42587:542;42532:597;:::o;43144:518::-;43292:62;43309:4;43324:15;43342:11;43292:8;:62::i;:::-;43398:256;;-1:-1:-1;;;43398:256:0;;43470:4;43398:256;;;17059:34:1;17109:18;;;17102:34;;;43516:1:0;17152:18:1;;;17145:34;;;17195:18;;;17188:34;29879:6:0;17238:19:1;;;17231:44;43628:15:0;17291:19:1;;;17284:35;43398:15:0;-1:-1:-1;;;;;43398:31:0;;;;43437:9;;16993:19:1;;43398:256:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;43144:518;;:::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;671:70;616:131;:::o;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;1698:180::-;1757:6;1810:2;1798:9;1789:7;1785:23;1781:32;1778:52;;;1826:1;1823;1816:12;1778:52;-1:-1:-1;1849:23:1;;1698:180;-1:-1:-1;1698:180:1:o;1883:456::-;1960:6;1968;1976;2029:2;2017:9;2008:7;2004:23;2000:32;1997:52;;;2045:1;2042;2035:12;1997:52;2084:9;2071:23;2103:31;2128:5;2103:31;:::i;:::-;2153:5;-1:-1:-1;2210:2:1;2195:18;;2182:32;2223:33;2182:32;2223:33;:::i;:::-;1883:456;;2275:7;;-1:-1:-1;;;2329:2:1;2314:18;;;;2301:32;;1883:456::o;2533:160::-;2598:20;;2654:13;;2647:21;2637:32;;2627:60;;2683:1;2680;2673:12;2698:316;2772:6;2780;2788;2841:2;2829:9;2820:7;2816:23;2812:32;2809:52;;;2857:1;2854;2847:12;2809:52;2893:9;2880:23;2870:33;;2950:2;2939:9;2935:18;2922:32;2912:42;;2973:35;3004:2;2993:9;2989:18;2973:35;:::i;:::-;2963:45;;2698:316;;;;;:::o;3019:315::-;3084:6;3092;3145:2;3133:9;3124:7;3120:23;3116:32;3113:52;;;3161:1;3158;3151:12;3113:52;3200:9;3187:23;3219:31;3244:5;3219:31;:::i;:::-;3269:5;-1:-1:-1;3293:35:1;3324:2;3309:18;;3293:35;:::i;:::-;3283:45;;3019:315;;;;;:::o;3339:316::-;3416:6;3424;3432;3485:2;3473:9;3464:7;3460:23;3456:32;3453:52;;;3501:1;3498;3491:12;3453:52;-1:-1:-1;;3524:23:1;;;3594:2;3579:18;;3566:32;;-1:-1:-1;3645:2:1;3630:18;;;3617:32;;3339:316;-1:-1:-1;3339:316:1:o;3660:180::-;3716:6;3769:2;3757:9;3748:7;3744:23;3740:32;3737:52;;;3785:1;3782;3775:12;3737:52;3808:26;3824:9;3808:26;:::i;3845:388::-;3913:6;3921;3974:2;3962:9;3953:7;3949:23;3945:32;3942:52;;;3990:1;3987;3980:12;3942:52;4029:9;4016:23;4048:31;4073:5;4048:31;:::i;:::-;4098:5;-1:-1:-1;4155:2:1;4140:18;;4127:32;4168:33;4127:32;4168:33;:::i;:::-;4220:7;4210:17;;;3845:388;;;;;:::o;4238:380::-;4317:1;4313:12;;;;4360;;;4381:61;;4435:4;4427:6;4423:17;4413:27;;4381:61;4488:2;4480:6;4477:14;4457:18;4454:38;4451:161;;;4534:10;4529:3;4525:20;4522:1;4515:31;4569:4;4566:1;4559:15;4597:4;4594:1;4587:15;4451:161;;4238:380;;;:::o;4623:356::-;4825:2;4807:21;;;4844:18;;;4837:30;4903:34;4898:2;4883:18;;4876:62;4970:2;4955:18;;4623:356::o;4984:127::-;5045:10;5040:3;5036:20;5033:1;5026:31;5076:4;5073:1;5066:15;5100:4;5097:1;5090:15;5116:168;5156:7;5222:1;5218;5214:6;5210:14;5207:1;5204:21;5199:1;5192:9;5185:17;5181:45;5178:71;;;5229:18;;:::i;:::-;-1:-1:-1;5269:9:1;;5116:168::o;5289:217::-;5329:1;5355;5345:132;;5399:10;5394:3;5390:20;5387:1;5380:31;5434:4;5431:1;5424:15;5462:4;5459:1;5452:15;5345:132;-1:-1:-1;5491:9:1;;5289:217::o;6764:128::-;6804:3;6835:1;6831:6;6828:1;6825:13;6822:39;;;6841:18;;:::i;:::-;-1:-1:-1;6877:9:1;;6764:128::o;9958:184::-;10028:6;10081:2;10069:9;10060:7;10056:23;10052:32;10049:52;;;10097:1;10094;10087:12;10049:52;-1:-1:-1;10120:16:1;;9958:184;-1:-1:-1;9958:184:1:o;11311:401::-;11513:2;11495:21;;;11552:2;11532:18;;;11525:30;11591:34;11586:2;11571:18;;11564:62;-1:-1:-1;;;11657:2:1;11642:18;;11635:35;11702:3;11687:19;;11311:401::o;11717:399::-;11919:2;11901:21;;;11958:2;11938:18;;;11931:30;11997:34;11992:2;11977:18;;11970:62;-1:-1:-1;;;12063:2:1;12048:18;;12041:33;12106:3;12091:19;;11717:399::o;14147:125::-;14187:4;14215:1;14212;14209:8;14206:34;;;14220:18;;:::i;:::-;-1:-1:-1;14257:9:1;;14147:125::o;15345:127::-;15406:10;15401:3;15397:20;15394:1;15387:31;15437:4;15434:1;15427:15;15461:4;15458:1;15451:15;15477:251;15547:6;15600:2;15588:9;15579:7;15575:23;15571:32;15568:52;;;15616:1;15613;15606:12;15568:52;15648:9;15642:16;15667:31;15692:5;15667:31;:::i;15733:980::-;15995:4;16043:3;16032:9;16028:19;16074:6;16063:9;16056:25;16100:2;16138:6;16133:2;16122:9;16118:18;16111:34;16181:3;16176:2;16165:9;16161:18;16154:31;16205:6;16240;16234:13;16271:6;16263;16256:22;16309:3;16298:9;16294:19;16287:26;;16348:2;16340:6;16336:15;16322:29;;16369:1;16379:195;16393:6;16390:1;16387:13;16379:195;;;16458:13;;-1:-1:-1;;;;;16454:39:1;16442:52;;16549:15;;;;16514:12;;;;16490:1;16408:9;16379:195;;;-1:-1:-1;;;;;;;16630:32:1;;;;16625:2;16610:18;;16603:60;-1:-1:-1;;;16694:3:1;16679:19;16672:35;16591:3;15733:980;-1:-1:-1;;;15733:980:1:o;17330:306::-;17418:6;17426;17434;17487:2;17475:9;17466:7;17462:23;17458:32;17455:52;;;17503:1;17500;17493:12;17455:52;17532:9;17526:16;17516:26;;17582:2;17571:9;17567:18;17561:25;17551:35;;17626:2;17615:9;17611:18;17605:25;17595:35;;17330:306;;;;;:::o
Swarm Source
ipfs://ba51b265e9aecc5a01c4b077f7e739db4e8da53956b16082a9d75091e34baf34
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.