ERC-20
Overview
Max Total Supply
1,000,000,000 BRAZIL
Holders
57
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
0.605745490218322205 BRAZILValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Token
Compiler Version
v0.8.9+commit.e5eed63a
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-10-29 */ // 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; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5,05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom( address sender, address recipient, uint256 amount ) public virtual override returns (bool) { _transfer(sender, recipient, amount); _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() public 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 Token is ERC20, Ownable { using SafeMath for uint256; IUniswapV2Router02 public immutable uniswapV2Router; address public immutable uniswapV2Pair; address public constant deadAddress = address(0xdead); bool private swapping; address public marketingWallet; address public devWallet; address public buyBackWallet; uint256 public maxTransactionAmount; uint256 public maxWallet; uint8 private _decimals; bool public limitsInEffect = true; bool public tradingActive = false; bool public swapEnabled = false; uint256 public tradingActiveBlock; uint256 public buyTotalFees; uint256 public buyMarketingFee; uint256 public buyLiquidityFee; uint256 public buyDevFee; uint256 public buyBuyBackFee; uint256 public sellTotalFees; uint256 public sellMarketingFee; uint256 public sellLiquidityFee; uint256 public sellDevFee; uint256 public sellBuyBackFee; uint256 public tokensForMarketing; uint256 public tokensForLiquidity; uint256 public tokensForDev; uint256 public tokensForBuyBack; /******************/ // exlcude from fees and max transaction amount mapping (address => bool) private _isExcludedFromFees; mapping (address => bool) public _isExcludedMaxTransactionAmount; // store addresses that a automatic market maker pairs. Any transfer *to* these addresses // could be subject to a maximum transfer amount mapping (address => bool) public automatedMarketMakerPairs; event UpdateUniswapV2Router(address indexed newAddress, address indexed oldAddress); event ExcludeFromFees(address indexed account, bool isExcluded); event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value); event marketingWalletUpdated(address indexed newWallet, address indexed oldWallet); event devWalletUpdated(address indexed newWallet, address indexed oldWallet); event buyBackWalletUpdated(address indexed newWallet, address indexed oldWallet); event SwapAndLiquify( uint256 tokensSwapped, uint256 ethReceived, uint256 tokensIntoLiquidity ); event BuyBackTriggered(uint256 amount); event OwnerForcedSwapBack(uint256 timestamp); constructor() ERC20("Brazil Inu", "BRAZIL") { address _owner = 0x147e5D425e1e683A29dC5d96599bf3EBEf57B7CC; _decimals = 18; uint256 totalSupply = 1 * 1e9 * (10**_decimals); maxTransactionAmount = totalSupply * 1 / 100; // 1% maxTransactionAmountTxn maxWallet = totalSupply * 1 / 100; // 1% maxWallet buyMarketingFee = 2; buyLiquidityFee = 2; buyDevFee = 1; buyBuyBackFee = 0; buyTotalFees = buyMarketingFee + buyLiquidityFee + buyDevFee + buyBuyBackFee; sellMarketingFee = 2; sellLiquidityFee = 2; sellDevFee = 1; sellBuyBackFee = 0; sellTotalFees = sellMarketingFee + sellLiquidityFee + sellDevFee + sellBuyBackFee; marketingWallet = 0x4fC070bCf8a5D4f6010b7369E09e2d7E75069542; // set as marketing wallet devWallet = 0x1269D6D3B2E66bB675Bca45B571257D212572b27; // set as dev wallet buyBackWallet = 0x1269D6D3B2E66bB675Bca45B571257D212572b27; // set as buyBackWallet address currentRouter; //Adding Variables for all the routers for easier deployment for our customers. if (block.chainid == 56) { currentRouter = 0x10ED43C718714eb63d5aA57B78B54704E256024E; // PCS Router } else if (block.chainid == 97) { currentRouter = 0xD99D1c33F9fC3444f8101754aBC46c52416550D1; // PCS Testnet } else if (block.chainid == 43114) { currentRouter = 0x60aE616a2155Ee3d9A68541Ba4544862310933d4; //Avax Mainnet } else if (block.chainid == 137) { currentRouter = 0xa5E0829CaCEd8fFDD4De3c43696c57F7D7A678ff; //Polygon Ropsten } else if (block.chainid == 250) { currentRouter = 0xF491e7B69E4244ad4002BC14e878a34207E38c29; //SpookySwap FTM } else if (block.chainid == 3) { currentRouter = 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D; //Ropsten } else if (block.chainid == 1 || block.chainid == 4) { currentRouter = 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D; //Mainnet } else { revert(); } //End of Router Variables. IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(currentRouter); excludeFromMaxTransaction(address(_uniswapV2Router), true); uniswapV2Router = _uniswapV2Router; uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this), _uniswapV2Router.WETH()); excludeFromMaxTransaction(address(uniswapV2Pair), true); _setAutomatedMarketMakerPair(address(uniswapV2Pair), true); // 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(_owner, totalSupply); transferOwnership(_owner); } receive() external payable { } // once enabled, can never be turned off function enableTrading() external onlyOwner { tradingActive = true; swapEnabled = true; tradingActiveBlock = block.number+2; } // remove limits after token is stable function removeLimits() external onlyOwner returns (bool){ limitsInEffect = false; return true; } function airdropToWallets(address[] memory airdropWallets, uint256[] memory amounts) external onlyOwner returns (bool){ require(!tradingActive, "Trading is already active, cannot airdrop after launch."); require(airdropWallets.length == amounts.length, "arrays must be the same length"); require(airdropWallets.length < 200, "Can only airdrop 200 wallets per txn due to gas limits"); // allows for airdrop + launch at the same exact time, reducing delays and reducing sniper input. for(uint256 i = 0; i < airdropWallets.length; i++){ address wallet = airdropWallets[i]; uint256 amount = amounts[i]; _transfer(msg.sender, wallet, amount); } return true; } function updateMaxAmount(uint256 newNum) external onlyOwner { require(newNum >= (totalSupply() * 1 / 100)/(10**_decimals), "Cannot set maxTransactionAmount lower than 1%"); maxTransactionAmount = newNum * (10**_decimals); } function updateMaxWallet(uint256 newNum) external onlyOwner { require(newNum >= (totalSupply() * 1 / 100)/(10**_decimals), "Cannot set maxTransactionAmount lower than 1%"); maxWallet= newNum * (10**_decimals); } function excludeFromMaxTransaction(address updAds, bool isEx) public onlyOwner { _isExcludedMaxTransactionAmount[updAds] = isEx; } function decimals() public view override returns (uint8) { return _decimals; } // only use to disable contract sales if absolutely necessary (emergency use only) function updateSwapEnabled(bool enabled) external onlyOwner(){ swapEnabled = enabled; } function excludeFromFees(address account, bool excluded) public onlyOwner { _isExcludedFromFees[account] = excluded; emit ExcludeFromFees(account, excluded); } function setAutomatedMarketMakerPair(address pair, bool value) external 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 updateBuyBackWallet(address newWallet) external onlyOwner { emit buyBackWalletUpdated(newWallet, buyBackWallet); buyBackWallet = newWallet; } function isExcludedFromFees(address account) external view returns(bool) { return _isExcludedFromFees[account]; } function _transfer( address from, address to, uint256 amount ) internal override { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); if(!tradingActive){ require(_isExcludedFromFees[from] || _isExcludedFromFees[to], "Trading is not active."); } if(amount == 0) { super._transfer(from, to, 0); return; } if(limitsInEffect){ if ( from != owner() && to != owner() && to != address(0) && to != address(0xdead) && !(_isExcludedFromFees[from] || _isExcludedFromFees[to]) && !swapping ){ //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 { require(amount + balanceOf(to) <= maxWallet, "Max wallet exceeded"); } } } uint256 contractTokenBalance = balanceOf(address(this)); bool canSwap = contractTokenBalance > 0; if( canSwap && swapEnabled && !swapping && !automatedMarketMakerPairs[from] && !_isExcludedFromFees[from] && !_isExcludedFromFees[to] ) { swapping = true; swapBack(); swapping = false; } bool takeFee = !swapping; // if any account belongs to _isExcludedFromFee account then remove the fee if(_isExcludedFromFees[from] || _isExcludedFromFees[to]) { takeFee = false; } uint256 fees = 0; // only take fees on buys/sells, do not take on wallet transfers if(takeFee){ if(tradingActiveBlock >= block.number && (automatedMarketMakerPairs[to] || automatedMarketMakerPairs[from])){ fees = amount.mul(90).div(100); tokensForLiquidity += fees * 33 / 99; tokensForBuyBack += fees * 33 / 99; tokensForMarketing += fees * 33 / 99; } // 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; tokensForBuyBack += fees * sellBuyBackFee / 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; tokensForBuyBack += fees * buyBuyBackFee / 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 + tokensForBuyBack; bool success; if(contractBalance == 0 || totalTokensToSwap == 0) {return;} // 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 ethForBuyBack = ethBalance.mul(tokensForBuyBack).div(totalTokensToSwap); uint256 ethForLiquidity = ethBalance - ethForMarketing - ethForDev - ethForBuyBack; tokensForLiquidity = 0; tokensForMarketing = 0; tokensForDev = 0; tokensForBuyBack = 0; (success,) = address(devWallet).call{value: ethForDev}(""); (success,) = address(buyBackWallet).call{value: ethForBuyBack}(""); if(liquidityTokens > 0 && ethForLiquidity > 0){ addLiquidity(liquidityTokens, ethForLiquidity); emit SwapAndLiquify(amountToSwapForETH, ethForLiquidity, tokensForLiquidity); } (success,) = address(marketingWallet).call{value: address(this).balance}(""); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"BuyBackTriggered","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"OwnerForcedSwapBack","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":"buyBackWalletUpdated","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":"airdropWallets","type":"address[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"}],"name":"airdropToWallets","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyBackWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyBuyBackFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellBuyBackFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForBuyBack","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForDev","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForMarketing","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActiveBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateBuyBackWallet","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":"updateMaxAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60c0604052600b805463ffffff0019166101001790553480156200002257600080fd5b50604080518082018252600a8152694272617a696c20496e7560b01b60208083019182528351808501909452600684526510949056925360d21b90840152815191929162000073916003916200096b565b508051620000899060049060208401906200096b565b50505060006200009e6200058a60201b60201c565b600580546001600160a01b0319166001600160a01b0383169081179091556040519192509060009060008051602062003adf833981519152908290a350600b805460ff1916601290811790915573147e5d425e1e683a29dc5d96599bf3ebef57b7cc906000906200011190600a62000b24565b6200012190633b9aca0062000b3c565b905060646200013282600162000b3c565b6200013e919062000b5e565b60095560646200015082600162000b3c565b6200015c919062000b5e565b600a556002600e819055600f81905560016010819055600060118190559162000186908062000b81565b62000192919062000b81565b6200019e919062000b81565b600d55600260138190556014819055600160158190556000601681905591620001c8908062000b81565b620001d4919062000b81565b620001e0919062000b81565b601255600680546001600160a01b0319908116734fc070bcf8a5d4f6010b7369e09e2d7e7506954217909155600780548216731269d6d3b2e66bb675bca45b571257d212572b2790811790915560088054909216179055600060384614156200025f57507310ed43c718714eb63d5aa57b78b54704e256024e62000355565b466061141562000285575073d99d1c33f9fc3444f8101754abc46c52416550d162000355565b4661a86a1415620002ac57507360ae616a2155ee3d9a68541ba4544862310933d462000355565b4660891415620002d2575073a5e0829caced8ffdd4de3c43696c57f7d7a678ff62000355565b4660fa1415620002f8575073f491e7b69e4244ad4002bc14e878a34207e38c2962000355565b46600314156200031e5750737a250d5630b4cf539739df2c5dacb4c659f2488d62000355565b46600114806200032e5750466004145b15620003505750737a250d5630b4cf539739df2c5dacb4c659f2488d62000355565b600080fd5b80620003638160016200058e565b6001600160a01b03811660808190526040805163c45a015560e01b8152905163c45a015591600480820192602092909190829003018186803b158015620003a957600080fd5b505afa158015620003be573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620003e4919062000b9c565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156200042d57600080fd5b505afa15801562000442573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000468919062000b9c565b6040516001600160e01b031960e085901b1681526001600160a01b03928316600482015291166024820152604401602060405180830381600087803b158015620004b157600080fd5b505af1158015620004c6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620004ec919062000b9c565b6001600160a01b031660a0819052620005079060016200058e565b60a0516200051790600162000608565b620005248460016200065c565b620005313060016200065c565b6200054061dead60016200065c565b6200054d8460016200058e565b6200055a3060016200058e565b6200056961dead60016200058e565b62000575848462000706565b620005808462000802565b5050505062000c04565b3390565b6005546001600160a01b03163314620005dd5760405162461bcd60e51b8152602060048201819052602482015260008051602062003abf83398151915260448201526064015b60405180910390fd5b6001600160a01b03919091166000908152601c60205260409020805460ff1916911515919091179055565b6001600160a01b0382166000818152601d6020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6005546001600160a01b03163314620006a75760405162461bcd60e51b8152602060048201819052602482015260008051602062003abf8339815191526044820152606401620005d4565b6001600160a01b0382166000818152601b6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b0382166200075e5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401620005d4565b6200077a81600254620008ff60201b620014951790919060201c565b6002556001600160a01b03821660009081526020818152604090912054620007ad91839062001495620008ff821b17901c565b6001600160a01b038316600081815260208181526040808320949094559251848152919290917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6005546001600160a01b031633146200084d5760405162461bcd60e51b8152602060048201819052602482015260008051602062003abf8339815191526044820152606401620005d4565b6001600160a01b038116620008b45760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401620005d4565b6005546040516001600160a01b0380841692169060008051602062003adf83398151915290600090a3600580546001600160a01b0319166001600160a01b0392909216919091179055565b6000806200090e838562000b81565b905083811015620009625760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401620005d4565b90505b92915050565b828054620009799062000bc7565b90600052602060002090601f0160209004810192826200099d5760008555620009e8565b82601f10620009b857805160ff1916838001178555620009e8565b82800160010185558215620009e8579182015b82811115620009e8578251825591602001919060010190620009cb565b50620009f6929150620009fa565b5090565b5b80821115620009f65760008155600101620009fb565b634e487b7160e01b600052601160045260246000fd5b600181815b8085111562000a6857816000190482111562000a4c5762000a4c62000a11565b8085161562000a5a57918102915b93841c939080029062000a2c565b509250929050565b60008262000a815750600162000965565b8162000a905750600062000965565b816001811462000aa9576002811462000ab45762000ad4565b600191505062000965565b60ff84111562000ac85762000ac862000a11565b50506001821b62000965565b5060208310610133831016604e8410600b841016171562000af9575081810a62000965565b62000b05838362000a27565b806000190482111562000b1c5762000b1c62000a11565b029392505050565b600062000b3560ff84168362000a70565b9392505050565b600081600019048311821515161562000b595762000b5962000a11565b500290565b60008262000b7c57634e487b7160e01b600052601260045260246000fd5b500490565b6000821982111562000b975762000b9762000a11565b500190565b60006020828403121562000baf57600080fd5b81516001600160a01b03811681146200096257600080fd5b600181811c9082168062000bdc57607f821691505b6020821081141562000bfe57634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a051612e6b62000c5460003960008181610614015261118a0152600081816104630152818161243b015281816125030152818161253f015281816125b901526126160152612e6b6000f3fe6080604052600436106103545760003560e01c8063751039fc116101c6578063a457c2d7116100f7578063d85ba06311610095578063f11a24d31161006f578063f11a24d3146109d3578063f2fde38b146109e9578063f637434214610a09578063f8b45b0514610a1f57600080fd5b8063d85ba06314610961578063dd62ed3e14610977578063ee40166e146109bd57600080fd5b8063b62496f5116100d1578063b62496f5146108db578063bbc0c7421461090b578063c02466681461092b578063c8c8ebe41461094b57600080fd5b8063a457c2d71461087b578063a9059cbb1461089b578063aacebbe3146108bb57600080fd5b806392136913116101645780639a7a23d61161013e5780639a7a23d6146108195780639c3b4fdc146108395780639fccce321461084f578063a0d82dc51461086557600080fd5b806392136913146107ce578063924de9b7146107e457806395d89b411461080457600080fd5b80637bce5a04116101a05780637bce5a04146107655780638a8c523c1461077b5780638da5cb5b146107905780638ea5220f146107ae57600080fd5b8063751039fc146107105780637571336a1461072557806375f0a8741461074557600080fd5b80631f3fed8f116102a057806349bd5a5e1161023e5780636a486a8e116102185780636a486a8e1461068e5780636ddd1713146106a457806370a08231146106c5578063715018a6146106fb57600080fd5b806349bd5a5e146106025780634a62bb65146106365780634fbee1931461065557600080fd5b806323b872dd1161027a57806323b872dd1461058a57806327c8f835146105aa578063313ce567146105c057806339509351146105e257600080fd5b80631f3fed8f1461053e5780631fe70a98146105545780632307b4411461056a57600080fd5b80631694505e1161030d5780631a221dbb116102e75780631a221dbb146104d25780631a8145bb146104e85780631c499ab0146104fe5780631cd348c01461051e57600080fd5b80631694505e1461045157806318160ddd1461049d5780631816467f146104b257600080fd5b806306e7b14d1461036057806306fdde0314610382578063095ea7b3146103ad5780630b166d50146103dd578063106b5da11461040157806310d5de531461042157600080fd5b3661035b57005b600080fd5b34801561036c57600080fd5b5061038061037b3660046126e9565b610a35565b005b34801561038e57600080fd5b50610397610ac5565b6040516103a49190612706565b60405180910390f35b3480156103b957600080fd5b506103cd6103c836600461275b565b610b57565b60405190151581526020016103a4565b3480156103e957600080fd5b506103f3601a5481565b6040519081526020016103a4565b34801561040d57600080fd5b5061038061041c366004612787565b610b6e565b34801561042d57600080fd5b506103cd61043c3660046126e9565b601c6020526000908152604090205460ff1681565b34801561045d57600080fd5b506104857f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b0390911681526020016103a4565b3480156104a957600080fd5b506002546103f3565b3480156104be57600080fd5b506103806104cd3660046126e9565b610c13565b3480156104de57600080fd5b506103f360165481565b3480156104f457600080fd5b506103f360185481565b34801561050a57600080fd5b50610380610519366004612787565b610c9a565b34801561052a57600080fd5b50600854610485906001600160a01b031681565b34801561054a57600080fd5b506103f360175481565b34801561056057600080fd5b506103f360115481565b34801561057657600080fd5b506103cd610585366004612876565b610d3f565b34801561059657600080fd5b506103cd6105a5366004612938565b610f1e565b3480156105b657600080fd5b5061048561dead81565b3480156105cc57600080fd5b50600b5460405160ff90911681526020016103a4565b3480156105ee57600080fd5b506103cd6105fd36600461275b565b610f7d565b34801561060e57600080fd5b506104857f000000000000000000000000000000000000000000000000000000000000000081565b34801561064257600080fd5b50600b546103cd90610100900460ff1681565b34801561066157600080fd5b506103cd6106703660046126e9565b6001600160a01b03166000908152601b602052604090205460ff1690565b34801561069a57600080fd5b506103f360125481565b3480156106b057600080fd5b50600b546103cd906301000000900460ff1681565b3480156106d157600080fd5b506103f36106e03660046126e9565b6001600160a01b031660009081526020819052604090205490565b34801561070757600080fd5b50610380610fb3565b34801561071c57600080fd5b506103cd611027565b34801561073157600080fd5b5061038061074036600461298e565b611065565b34801561075157600080fd5b50600654610485906001600160a01b031681565b34801561077157600080fd5b506103f3600e5481565b34801561078757600080fd5b506103806110ba565b34801561079c57600080fd5b506005546001600160a01b0316610485565b3480156107ba57600080fd5b50600754610485906001600160a01b031681565b3480156107da57600080fd5b506103f360135481565b3480156107f057600080fd5b506103806107ff3660046129c3565b611107565b34801561081057600080fd5b5061039761114f565b34801561082557600080fd5b5061038061083436600461298e565b61115e565b34801561084557600080fd5b506103f360105481565b34801561085b57600080fd5b506103f360195481565b34801561087157600080fd5b506103f360155481565b34801561088757600080fd5b506103cd61089636600461275b565b61123e565b3480156108a757600080fd5b506103cd6108b636600461275b565b61128d565b3480156108c757600080fd5b506103806108d63660046126e9565b61129a565b3480156108e757600080fd5b506103cd6108f63660046126e9565b601d6020526000908152604090205460ff1681565b34801561091757600080fd5b50600b546103cd9062010000900460ff1681565b34801561093757600080fd5b5061038061094636600461298e565b611321565b34801561095757600080fd5b506103f360095481565b34801561096d57600080fd5b506103f3600d5481565b34801561098357600080fd5b506103f36109923660046129de565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3480156109c957600080fd5b506103f3600c5481565b3480156109df57600080fd5b506103f3600f5481565b3480156109f557600080fd5b50610380610a043660046126e9565b6113aa565b348015610a1557600080fd5b506103f360145481565b348015610a2b57600080fd5b506103f3600a5481565b6005546001600160a01b03163314610a685760405162461bcd60e51b8152600401610a5f90612a17565b60405180910390fd5b6008546040516001600160a01b03918216918316907f15e571905a1c816ac9ad091c2b82079da1ad3668d345e3894c424c5e5b47d97b90600090a3600880546001600160a01b0319166001600160a01b0392909216919091179055565b606060038054610ad490612a4c565b80601f0160208091040260200160405190810160405280929190818152602001828054610b0090612a4c565b8015610b4d5780601f10610b2257610100808354040283529160200191610b4d565b820191906000526020600020905b815481529060010190602001808311610b3057829003601f168201915b5050505050905090565b6000610b643384846114fb565b5060015b92915050565b6005546001600160a01b03163314610b985760405162461bcd60e51b8152600401610a5f90612a17565b600b54610ba99060ff16600a612b81565b6064610bb460025490565b610bbf906001612b90565b610bc99190612baf565b610bd39190612baf565b811015610bf25760405162461bcd60e51b8152600401610a5f90612bd1565b600b54610c039060ff16600a612b81565b610c0d9082612b90565b60095550565b6005546001600160a01b03163314610c3d5760405162461bcd60e51b8152600401610a5f90612a17565b6007546040516001600160a01b03918216918316907f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74390600090a3600780546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b03163314610cc45760405162461bcd60e51b8152600401610a5f90612a17565b600b54610cd59060ff16600a612b81565b6064610ce060025490565b610ceb906001612b90565b610cf59190612baf565b610cff9190612baf565b811015610d1e5760405162461bcd60e51b8152600401610a5f90612bd1565b600b54610d2f9060ff16600a612b81565b610d399082612b90565b600a5550565b6005546000906001600160a01b03163314610d6c5760405162461bcd60e51b8152600401610a5f90612a17565b600b5462010000900460ff1615610deb5760405162461bcd60e51b815260206004820152603760248201527f54726164696e6720697320616c7265616479206163746976652c2063616e6e6f60448201527f742061697264726f70206166746572206c61756e63682e0000000000000000006064820152608401610a5f565b8151835114610e3c5760405162461bcd60e51b815260206004820152601e60248201527f617272617973206d757374206265207468652073616d65206c656e67746800006044820152606401610a5f565b60c8835110610eac5760405162461bcd60e51b815260206004820152603660248201527f43616e206f6e6c792061697264726f70203230302077616c6c657473207065726044820152752074786e2064756520746f20676173206c696d69747360501b6064820152608401610a5f565b60005b8351811015610f14576000848281518110610ecc57610ecc612c1e565b602002602001015190506000848381518110610eea57610eea612c1e565b60200260200101519050610eff338383611620565b50508080610f0c90612c34565b915050610eaf565b5060019392505050565b6000610f2b848484611620565b610f148433610f7885604051806060016040528060288152602001612de9602891396001600160a01b038a1660009081526001602090815260408083203384529091529020549190611ea6565b6114fb565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610b64918590610f789086611495565b6005546001600160a01b03163314610fdd5760405162461bcd60e51b8152600401610a5f90612a17565b6005546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580546001600160a01b0319169055565b6005546000906001600160a01b031633146110545760405162461bcd60e51b8152600401610a5f90612a17565b50600b805461ff0019169055600190565b6005546001600160a01b0316331461108f5760405162461bcd60e51b8152600401610a5f90612a17565b6001600160a01b03919091166000908152601c60205260409020805460ff1916911515919091179055565b6005546001600160a01b031633146110e45760405162461bcd60e51b8152600401610a5f90612a17565b600b805463ffff000019166301010000179055611102436002612c4f565b600c55565b6005546001600160a01b031633146111315760405162461bcd60e51b8152600401610a5f90612a17565b600b805491151563010000000263ff00000019909216919091179055565b606060048054610ad490612a4c565b6005546001600160a01b031633146111885760405162461bcd60e51b8152600401610a5f90612a17565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614156112305760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610a5f565b61123a8282611ee0565b5050565b6000610b643384610f7885604051806060016040528060258152602001612e11602591393360009081526001602090815260408083206001600160a01b038d1684529091529020549190611ea6565b6000610b64338484611620565b6005546001600160a01b031633146112c45760405162461bcd60e51b8152600401610a5f90612a17565b6006546040516001600160a01b03918216918316907fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567490600090a3600680546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b0316331461134b5760405162461bcd60e51b8152600401610a5f90612a17565b6001600160a01b0382166000818152601b6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b031633146113d45760405162461bcd60e51b8152600401610a5f90612a17565b6001600160a01b0381166114395760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a5f565b6005546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0319166001600160a01b0392909216919091179055565b6000806114a28385612c4f565b9050838110156114f45760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610a5f565b9392505050565b6001600160a01b03831661155d5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610a5f565b6001600160a01b0382166115be5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610a5f565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b0383166116465760405162461bcd60e51b8152600401610a5f90612c67565b6001600160a01b03821661166c5760405162461bcd60e51b8152600401610a5f90612cac565b600b5462010000900460ff16611700576001600160a01b0383166000908152601b602052604090205460ff16806116bb57506001600160a01b0382166000908152601b602052604090205460ff165b6117005760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610a5f565b806117165761171183836000611f34565b505050565b600b54610100900460ff1615611a26576005546001600160a01b0384811691161480159061175257506005546001600160a01b03838116911614155b801561176657506001600160a01b03821615155b801561177d57506001600160a01b03821661dead14155b80156117c557506001600160a01b0383166000908152601b602052604090205460ff16806117c357506001600160a01b0382166000908152601b602052604090205460ff165b155b80156117db5750600554600160a01b900460ff16155b15611a26576001600160a01b0383166000908152601d602052604090205460ff16801561182157506001600160a01b0382166000908152601c602052604090205460ff16155b15611905576009548111156118965760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610a5f565b600a546001600160a01b0383166000908152602081905260409020546118bc9083612c4f565b11156119005760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610a5f565b611a26565b6001600160a01b0382166000908152601d602052604090205460ff16801561194657506001600160a01b0383166000908152601c602052604090205460ff16155b156119bc576009548111156119005760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b6064820152608401610a5f565b600a546001600160a01b0383166000908152602081905260409020546119e29083612c4f565b1115611a265760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610a5f565b3060009081526020819052604090205480158015908190611a505750600b546301000000900460ff165b8015611a665750600554600160a01b900460ff16155b8015611a8b57506001600160a01b0385166000908152601d602052604090205460ff16155b8015611ab057506001600160a01b0385166000908152601b602052604090205460ff16155b8015611ad557506001600160a01b0384166000908152601b602052604090205460ff16155b15611b03576005805460ff60a01b1916600160a01b179055611af561203d565b6005805460ff60a01b191690555b6005546001600160a01b0386166000908152601b602052604090205460ff600160a01b909204821615911680611b5157506001600160a01b0385166000908152601b602052604090205460ff165b15611b5a575060005b60008115611e925743600c5410158015611bae57506001600160a01b0386166000908152601d602052604090205460ff1680611bae57506001600160a01b0387166000908152601d602052604090205460ff165b15611c5557611bc96064611bc387605a6122e1565b90612360565b90506063611bd8826021612b90565b611be29190612baf565b60186000828254611bf39190612c4f565b9091555060639050611c06826021612b90565b611c109190612baf565b601a6000828254611c219190612c4f565b9091555060639050611c34826021612b90565b611c3e9190612baf565b60176000828254611c4f9190612c4f565b90915550505b6001600160a01b0386166000908152601d602052604090205460ff168015611c7f57506000601254115b15611d6757611c9e6064611bc3601254886122e190919063ffffffff16565b905060125460145482611cb19190612b90565b611cbb9190612baf565b60186000828254611ccc9190612c4f565b9091555050601254601554611ce19083612b90565b611ceb9190612baf565b60196000828254611cfc9190612c4f565b9091555050601254601354611d119083612b90565b611d1b9190612baf565b60176000828254611d2c9190612c4f565b9091555050601254601654611d419083612b90565b611d4b9190612baf565b601a6000828254611d5c9190612c4f565b90915550611e749050565b6001600160a01b0387166000908152601d602052604090205460ff168015611d9157506000600d54115b15611e7457611db06064611bc3600d54886122e190919063ffffffff16565b9050600d54600f5482611dc39190612b90565b611dcd9190612baf565b60186000828254611dde9190612c4f565b9091555050600d54601054611df39083612b90565b611dfd9190612baf565b60196000828254611e0e9190612c4f565b9091555050600d54600e54611e239083612b90565b611e2d9190612baf565b60176000828254611e3e9190612c4f565b9091555050600d54601154611e539083612b90565b611e5d9190612baf565b601a6000828254611e6e9190612c4f565b90915550505b8015611e8557611e85873083611f34565b611e8f8186612cef565b94505b611e9d878787611f34565b50505050505050565b60008184841115611eca5760405162461bcd60e51b8152600401610a5f9190612706565b506000611ed78486612cef565b95945050505050565b6001600160a01b0382166000818152601d6020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b038316611f5a5760405162461bcd60e51b8152600401610a5f90612c67565b6001600160a01b038216611f805760405162461bcd60e51b8152600401610a5f90612cac565b611fbd81604051806060016040528060268152602001612dc3602691396001600160a01b0386166000908152602081905260409020549190611ea6565b6001600160a01b038085166000908152602081905260408082209390935590841681522054611fec9082611495565b6001600160a01b038381166000818152602081815260409182902094909455518481529092918616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9101611613565b3060009081526020819052604081205490506000601a546019546017546018546120679190612c4f565b6120719190612c4f565b61207b9190612c4f565b9050600082158061208a575081155b1561209457505050565b6000600283601854866120a79190612b90565b6120b19190612baf565b6120bb9190612baf565b905060006120c985836123a2565b9050476120d5826123e4565b60006120e147836123a2565b905060006120fe87611bc3601754856122e190919063ffffffff16565b9050600061211b88611bc3601954866122e190919063ffffffff16565b9050600061213889611bc3601a54876122e190919063ffffffff16565b9050600081836121488688612cef565b6121529190612cef565b61215c9190612cef565b6000601881905560178190556019819055601a8190556007546040519293506001600160a01b031691859181818185875af1925050503d80600081146121be576040519150601f19603f3d011682016040523d82523d6000602084013e6121c3565b606091505b5050600854604051919a506001600160a01b0316908390600081818185875af1925050503d8060008114612213576040519150601f19603f3d011682016040523d82523d6000602084013e612218565b606091505b5090995050871580159061222c5750600081115b1561227f5761223b88826125b3565b601854604080518981526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b6006546040516001600160a01b03909116904790600081818185875af1925050503d80600081146122cc576040519150601f19603f3d011682016040523d82523d6000602084013e6122d1565b606091505b5050505050505050505050505050565b6000826122f057506000610b68565b60006122fc8385612b90565b9050826123098583612baf565b146114f45760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b6064820152608401610a5f565b60006114f483836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506126a3565b60006114f483836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611ea6565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061241957612419612c1e565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561249257600080fd5b505afa1580156124a6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906124ca9190612d06565b816001815181106124dd576124dd612c1e565b60200260200101906001600160a01b031690816001600160a01b031681525050612528307f0000000000000000000000000000000000000000000000000000000000000000846114fb565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac9479061257d908590600090869030904290600401612d23565b600060405180830381600087803b15801561259757600080fd5b505af11580156125ab573d6000803e3d6000fd5b505050505050565b6125de307f0000000000000000000000000000000000000000000000000000000000000000846114fb565b60405163f305d71960e01b815230600482015260248101839052600060448201819052606482015261dead60848201524260a48201527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169063f305d71990839060c4016060604051808303818588803b15801561266357600080fd5b505af1158015612677573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061269c9190612d94565b5050505050565b600081836126c45760405162461bcd60e51b8152600401610a5f9190612706565b506000611ed78486612baf565b6001600160a01b03811681146126e657600080fd5b50565b6000602082840312156126fb57600080fd5b81356114f4816126d1565b600060208083528351808285015260005b8181101561273357858101830151858201604001528201612717565b81811115612745576000604083870101525b50601f01601f1916929092016040019392505050565b6000806040838503121561276e57600080fd5b8235612779816126d1565b946020939093013593505050565b60006020828403121561279957600080fd5b5035919050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff811182821017156127df576127df6127a0565b604052919050565b600067ffffffffffffffff821115612801576128016127a0565b5060051b60200190565b600082601f83011261281c57600080fd5b8135602061283161282c836127e7565b6127b6565b82815260059290921b8401810191818101908684111561285057600080fd5b8286015b8481101561286b5780358352918301918301612854565b509695505050505050565b6000806040838503121561288957600080fd5b823567ffffffffffffffff808211156128a157600080fd5b818501915085601f8301126128b557600080fd5b813560206128c561282c836127e7565b82815260059290921b840181019181810190898411156128e457600080fd5b948201945b8386101561290b5785356128fc816126d1565b825294820194908201906128e9565b9650508601359250508082111561292157600080fd5b5061292e8582860161280b565b9150509250929050565b60008060006060848603121561294d57600080fd5b8335612958816126d1565b92506020840135612968816126d1565b929592945050506040919091013590565b8035801515811461298957600080fd5b919050565b600080604083850312156129a157600080fd5b82356129ac816126d1565b91506129ba60208401612979565b90509250929050565b6000602082840312156129d557600080fd5b6114f482612979565b600080604083850312156129f157600080fd5b82356129fc816126d1565b91506020830135612a0c816126d1565b809150509250929050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c90821680612a6057607f821691505b60208210811415612a8157634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600181815b80851115612ad8578160001904821115612abe57612abe612a87565b80851615612acb57918102915b93841c9390800290612aa2565b509250929050565b600082612aef57506001610b68565b81612afc57506000610b68565b8160018114612b125760028114612b1c57612b38565b6001915050610b68565b60ff841115612b2d57612b2d612a87565b50506001821b610b68565b5060208310610133831016604e8410600b8410161715612b5b575081810a610b68565b612b658383612a9d565b8060001904821115612b7957612b79612a87565b029392505050565b60006114f460ff841683612ae0565b6000816000190483118215151615612baa57612baa612a87565b500290565b600082612bcc57634e487b7160e01b600052601260045260246000fd5b500490565b6020808252602d908201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060408201526c6c6f776572207468616e20312560981b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b6000600019821415612c4857612c48612a87565b5060010190565b60008219821115612c6257612c62612a87565b500190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b600082821015612d0157612d01612a87565b500390565b600060208284031215612d1857600080fd5b81516114f4816126d1565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015612d735784516001600160a01b031683529383019391830191600101612d4e565b50506001600160a01b03969096166060850152505050608001529392505050565b600080600060608486031215612da957600080fd5b835192506020840151915060408401519050925092509256fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220d124d534c4ce7f5d06cc23d6690ed7b8d4324c18bed2ae46ac6fd0bafba2293464736f6c634300080900334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65728be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0
Deployed Bytecode
0x6080604052600436106103545760003560e01c8063751039fc116101c6578063a457c2d7116100f7578063d85ba06311610095578063f11a24d31161006f578063f11a24d3146109d3578063f2fde38b146109e9578063f637434214610a09578063f8b45b0514610a1f57600080fd5b8063d85ba06314610961578063dd62ed3e14610977578063ee40166e146109bd57600080fd5b8063b62496f5116100d1578063b62496f5146108db578063bbc0c7421461090b578063c02466681461092b578063c8c8ebe41461094b57600080fd5b8063a457c2d71461087b578063a9059cbb1461089b578063aacebbe3146108bb57600080fd5b806392136913116101645780639a7a23d61161013e5780639a7a23d6146108195780639c3b4fdc146108395780639fccce321461084f578063a0d82dc51461086557600080fd5b806392136913146107ce578063924de9b7146107e457806395d89b411461080457600080fd5b80637bce5a04116101a05780637bce5a04146107655780638a8c523c1461077b5780638da5cb5b146107905780638ea5220f146107ae57600080fd5b8063751039fc146107105780637571336a1461072557806375f0a8741461074557600080fd5b80631f3fed8f116102a057806349bd5a5e1161023e5780636a486a8e116102185780636a486a8e1461068e5780636ddd1713146106a457806370a08231146106c5578063715018a6146106fb57600080fd5b806349bd5a5e146106025780634a62bb65146106365780634fbee1931461065557600080fd5b806323b872dd1161027a57806323b872dd1461058a57806327c8f835146105aa578063313ce567146105c057806339509351146105e257600080fd5b80631f3fed8f1461053e5780631fe70a98146105545780632307b4411461056a57600080fd5b80631694505e1161030d5780631a221dbb116102e75780631a221dbb146104d25780631a8145bb146104e85780631c499ab0146104fe5780631cd348c01461051e57600080fd5b80631694505e1461045157806318160ddd1461049d5780631816467f146104b257600080fd5b806306e7b14d1461036057806306fdde0314610382578063095ea7b3146103ad5780630b166d50146103dd578063106b5da11461040157806310d5de531461042157600080fd5b3661035b57005b600080fd5b34801561036c57600080fd5b5061038061037b3660046126e9565b610a35565b005b34801561038e57600080fd5b50610397610ac5565b6040516103a49190612706565b60405180910390f35b3480156103b957600080fd5b506103cd6103c836600461275b565b610b57565b60405190151581526020016103a4565b3480156103e957600080fd5b506103f3601a5481565b6040519081526020016103a4565b34801561040d57600080fd5b5061038061041c366004612787565b610b6e565b34801561042d57600080fd5b506103cd61043c3660046126e9565b601c6020526000908152604090205460ff1681565b34801561045d57600080fd5b506104857f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b0390911681526020016103a4565b3480156104a957600080fd5b506002546103f3565b3480156104be57600080fd5b506103806104cd3660046126e9565b610c13565b3480156104de57600080fd5b506103f360165481565b3480156104f457600080fd5b506103f360185481565b34801561050a57600080fd5b50610380610519366004612787565b610c9a565b34801561052a57600080fd5b50600854610485906001600160a01b031681565b34801561054a57600080fd5b506103f360175481565b34801561056057600080fd5b506103f360115481565b34801561057657600080fd5b506103cd610585366004612876565b610d3f565b34801561059657600080fd5b506103cd6105a5366004612938565b610f1e565b3480156105b657600080fd5b5061048561dead81565b3480156105cc57600080fd5b50600b5460405160ff90911681526020016103a4565b3480156105ee57600080fd5b506103cd6105fd36600461275b565b610f7d565b34801561060e57600080fd5b506104857f000000000000000000000000c12dbb23174ec22b8b34e290e971d6e68b26f9a781565b34801561064257600080fd5b50600b546103cd90610100900460ff1681565b34801561066157600080fd5b506103cd6106703660046126e9565b6001600160a01b03166000908152601b602052604090205460ff1690565b34801561069a57600080fd5b506103f360125481565b3480156106b057600080fd5b50600b546103cd906301000000900460ff1681565b3480156106d157600080fd5b506103f36106e03660046126e9565b6001600160a01b031660009081526020819052604090205490565b34801561070757600080fd5b50610380610fb3565b34801561071c57600080fd5b506103cd611027565b34801561073157600080fd5b5061038061074036600461298e565b611065565b34801561075157600080fd5b50600654610485906001600160a01b031681565b34801561077157600080fd5b506103f3600e5481565b34801561078757600080fd5b506103806110ba565b34801561079c57600080fd5b506005546001600160a01b0316610485565b3480156107ba57600080fd5b50600754610485906001600160a01b031681565b3480156107da57600080fd5b506103f360135481565b3480156107f057600080fd5b506103806107ff3660046129c3565b611107565b34801561081057600080fd5b5061039761114f565b34801561082557600080fd5b5061038061083436600461298e565b61115e565b34801561084557600080fd5b506103f360105481565b34801561085b57600080fd5b506103f360195481565b34801561087157600080fd5b506103f360155481565b34801561088757600080fd5b506103cd61089636600461275b565b61123e565b3480156108a757600080fd5b506103cd6108b636600461275b565b61128d565b3480156108c757600080fd5b506103806108d63660046126e9565b61129a565b3480156108e757600080fd5b506103cd6108f63660046126e9565b601d6020526000908152604090205460ff1681565b34801561091757600080fd5b50600b546103cd9062010000900460ff1681565b34801561093757600080fd5b5061038061094636600461298e565b611321565b34801561095757600080fd5b506103f360095481565b34801561096d57600080fd5b506103f3600d5481565b34801561098357600080fd5b506103f36109923660046129de565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3480156109c957600080fd5b506103f3600c5481565b3480156109df57600080fd5b506103f3600f5481565b3480156109f557600080fd5b50610380610a043660046126e9565b6113aa565b348015610a1557600080fd5b506103f360145481565b348015610a2b57600080fd5b506103f3600a5481565b6005546001600160a01b03163314610a685760405162461bcd60e51b8152600401610a5f90612a17565b60405180910390fd5b6008546040516001600160a01b03918216918316907f15e571905a1c816ac9ad091c2b82079da1ad3668d345e3894c424c5e5b47d97b90600090a3600880546001600160a01b0319166001600160a01b0392909216919091179055565b606060038054610ad490612a4c565b80601f0160208091040260200160405190810160405280929190818152602001828054610b0090612a4c565b8015610b4d5780601f10610b2257610100808354040283529160200191610b4d565b820191906000526020600020905b815481529060010190602001808311610b3057829003601f168201915b5050505050905090565b6000610b643384846114fb565b5060015b92915050565b6005546001600160a01b03163314610b985760405162461bcd60e51b8152600401610a5f90612a17565b600b54610ba99060ff16600a612b81565b6064610bb460025490565b610bbf906001612b90565b610bc99190612baf565b610bd39190612baf565b811015610bf25760405162461bcd60e51b8152600401610a5f90612bd1565b600b54610c039060ff16600a612b81565b610c0d9082612b90565b60095550565b6005546001600160a01b03163314610c3d5760405162461bcd60e51b8152600401610a5f90612a17565b6007546040516001600160a01b03918216918316907f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74390600090a3600780546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b03163314610cc45760405162461bcd60e51b8152600401610a5f90612a17565b600b54610cd59060ff16600a612b81565b6064610ce060025490565b610ceb906001612b90565b610cf59190612baf565b610cff9190612baf565b811015610d1e5760405162461bcd60e51b8152600401610a5f90612bd1565b600b54610d2f9060ff16600a612b81565b610d399082612b90565b600a5550565b6005546000906001600160a01b03163314610d6c5760405162461bcd60e51b8152600401610a5f90612a17565b600b5462010000900460ff1615610deb5760405162461bcd60e51b815260206004820152603760248201527f54726164696e6720697320616c7265616479206163746976652c2063616e6e6f60448201527f742061697264726f70206166746572206c61756e63682e0000000000000000006064820152608401610a5f565b8151835114610e3c5760405162461bcd60e51b815260206004820152601e60248201527f617272617973206d757374206265207468652073616d65206c656e67746800006044820152606401610a5f565b60c8835110610eac5760405162461bcd60e51b815260206004820152603660248201527f43616e206f6e6c792061697264726f70203230302077616c6c657473207065726044820152752074786e2064756520746f20676173206c696d69747360501b6064820152608401610a5f565b60005b8351811015610f14576000848281518110610ecc57610ecc612c1e565b602002602001015190506000848381518110610eea57610eea612c1e565b60200260200101519050610eff338383611620565b50508080610f0c90612c34565b915050610eaf565b5060019392505050565b6000610f2b848484611620565b610f148433610f7885604051806060016040528060288152602001612de9602891396001600160a01b038a1660009081526001602090815260408083203384529091529020549190611ea6565b6114fb565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610b64918590610f789086611495565b6005546001600160a01b03163314610fdd5760405162461bcd60e51b8152600401610a5f90612a17565b6005546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580546001600160a01b0319169055565b6005546000906001600160a01b031633146110545760405162461bcd60e51b8152600401610a5f90612a17565b50600b805461ff0019169055600190565b6005546001600160a01b0316331461108f5760405162461bcd60e51b8152600401610a5f90612a17565b6001600160a01b03919091166000908152601c60205260409020805460ff1916911515919091179055565b6005546001600160a01b031633146110e45760405162461bcd60e51b8152600401610a5f90612a17565b600b805463ffff000019166301010000179055611102436002612c4f565b600c55565b6005546001600160a01b031633146111315760405162461bcd60e51b8152600401610a5f90612a17565b600b805491151563010000000263ff00000019909216919091179055565b606060048054610ad490612a4c565b6005546001600160a01b031633146111885760405162461bcd60e51b8152600401610a5f90612a17565b7f000000000000000000000000c12dbb23174ec22b8b34e290e971d6e68b26f9a76001600160a01b0316826001600160a01b031614156112305760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610a5f565b61123a8282611ee0565b5050565b6000610b643384610f7885604051806060016040528060258152602001612e11602591393360009081526001602090815260408083206001600160a01b038d1684529091529020549190611ea6565b6000610b64338484611620565b6005546001600160a01b031633146112c45760405162461bcd60e51b8152600401610a5f90612a17565b6006546040516001600160a01b03918216918316907fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567490600090a3600680546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b0316331461134b5760405162461bcd60e51b8152600401610a5f90612a17565b6001600160a01b0382166000818152601b6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b031633146113d45760405162461bcd60e51b8152600401610a5f90612a17565b6001600160a01b0381166114395760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a5f565b6005546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0319166001600160a01b0392909216919091179055565b6000806114a28385612c4f565b9050838110156114f45760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610a5f565b9392505050565b6001600160a01b03831661155d5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610a5f565b6001600160a01b0382166115be5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610a5f565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b0383166116465760405162461bcd60e51b8152600401610a5f90612c67565b6001600160a01b03821661166c5760405162461bcd60e51b8152600401610a5f90612cac565b600b5462010000900460ff16611700576001600160a01b0383166000908152601b602052604090205460ff16806116bb57506001600160a01b0382166000908152601b602052604090205460ff165b6117005760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610a5f565b806117165761171183836000611f34565b505050565b600b54610100900460ff1615611a26576005546001600160a01b0384811691161480159061175257506005546001600160a01b03838116911614155b801561176657506001600160a01b03821615155b801561177d57506001600160a01b03821661dead14155b80156117c557506001600160a01b0383166000908152601b602052604090205460ff16806117c357506001600160a01b0382166000908152601b602052604090205460ff165b155b80156117db5750600554600160a01b900460ff16155b15611a26576001600160a01b0383166000908152601d602052604090205460ff16801561182157506001600160a01b0382166000908152601c602052604090205460ff16155b15611905576009548111156118965760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610a5f565b600a546001600160a01b0383166000908152602081905260409020546118bc9083612c4f565b11156119005760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610a5f565b611a26565b6001600160a01b0382166000908152601d602052604090205460ff16801561194657506001600160a01b0383166000908152601c602052604090205460ff16155b156119bc576009548111156119005760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b6064820152608401610a5f565b600a546001600160a01b0383166000908152602081905260409020546119e29083612c4f565b1115611a265760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610a5f565b3060009081526020819052604090205480158015908190611a505750600b546301000000900460ff165b8015611a665750600554600160a01b900460ff16155b8015611a8b57506001600160a01b0385166000908152601d602052604090205460ff16155b8015611ab057506001600160a01b0385166000908152601b602052604090205460ff16155b8015611ad557506001600160a01b0384166000908152601b602052604090205460ff16155b15611b03576005805460ff60a01b1916600160a01b179055611af561203d565b6005805460ff60a01b191690555b6005546001600160a01b0386166000908152601b602052604090205460ff600160a01b909204821615911680611b5157506001600160a01b0385166000908152601b602052604090205460ff165b15611b5a575060005b60008115611e925743600c5410158015611bae57506001600160a01b0386166000908152601d602052604090205460ff1680611bae57506001600160a01b0387166000908152601d602052604090205460ff165b15611c5557611bc96064611bc387605a6122e1565b90612360565b90506063611bd8826021612b90565b611be29190612baf565b60186000828254611bf39190612c4f565b9091555060639050611c06826021612b90565b611c109190612baf565b601a6000828254611c219190612c4f565b9091555060639050611c34826021612b90565b611c3e9190612baf565b60176000828254611c4f9190612c4f565b90915550505b6001600160a01b0386166000908152601d602052604090205460ff168015611c7f57506000601254115b15611d6757611c9e6064611bc3601254886122e190919063ffffffff16565b905060125460145482611cb19190612b90565b611cbb9190612baf565b60186000828254611ccc9190612c4f565b9091555050601254601554611ce19083612b90565b611ceb9190612baf565b60196000828254611cfc9190612c4f565b9091555050601254601354611d119083612b90565b611d1b9190612baf565b60176000828254611d2c9190612c4f565b9091555050601254601654611d419083612b90565b611d4b9190612baf565b601a6000828254611d5c9190612c4f565b90915550611e749050565b6001600160a01b0387166000908152601d602052604090205460ff168015611d9157506000600d54115b15611e7457611db06064611bc3600d54886122e190919063ffffffff16565b9050600d54600f5482611dc39190612b90565b611dcd9190612baf565b60186000828254611dde9190612c4f565b9091555050600d54601054611df39083612b90565b611dfd9190612baf565b60196000828254611e0e9190612c4f565b9091555050600d54600e54611e239083612b90565b611e2d9190612baf565b60176000828254611e3e9190612c4f565b9091555050600d54601154611e539083612b90565b611e5d9190612baf565b601a6000828254611e6e9190612c4f565b90915550505b8015611e8557611e85873083611f34565b611e8f8186612cef565b94505b611e9d878787611f34565b50505050505050565b60008184841115611eca5760405162461bcd60e51b8152600401610a5f9190612706565b506000611ed78486612cef565b95945050505050565b6001600160a01b0382166000818152601d6020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b038316611f5a5760405162461bcd60e51b8152600401610a5f90612c67565b6001600160a01b038216611f805760405162461bcd60e51b8152600401610a5f90612cac565b611fbd81604051806060016040528060268152602001612dc3602691396001600160a01b0386166000908152602081905260409020549190611ea6565b6001600160a01b038085166000908152602081905260408082209390935590841681522054611fec9082611495565b6001600160a01b038381166000818152602081815260409182902094909455518481529092918616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9101611613565b3060009081526020819052604081205490506000601a546019546017546018546120679190612c4f565b6120719190612c4f565b61207b9190612c4f565b9050600082158061208a575081155b1561209457505050565b6000600283601854866120a79190612b90565b6120b19190612baf565b6120bb9190612baf565b905060006120c985836123a2565b9050476120d5826123e4565b60006120e147836123a2565b905060006120fe87611bc3601754856122e190919063ffffffff16565b9050600061211b88611bc3601954866122e190919063ffffffff16565b9050600061213889611bc3601a54876122e190919063ffffffff16565b9050600081836121488688612cef565b6121529190612cef565b61215c9190612cef565b6000601881905560178190556019819055601a8190556007546040519293506001600160a01b031691859181818185875af1925050503d80600081146121be576040519150601f19603f3d011682016040523d82523d6000602084013e6121c3565b606091505b5050600854604051919a506001600160a01b0316908390600081818185875af1925050503d8060008114612213576040519150601f19603f3d011682016040523d82523d6000602084013e612218565b606091505b5090995050871580159061222c5750600081115b1561227f5761223b88826125b3565b601854604080518981526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b6006546040516001600160a01b03909116904790600081818185875af1925050503d80600081146122cc576040519150601f19603f3d011682016040523d82523d6000602084013e6122d1565b606091505b5050505050505050505050505050565b6000826122f057506000610b68565b60006122fc8385612b90565b9050826123098583612baf565b146114f45760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b6064820152608401610a5f565b60006114f483836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506126a3565b60006114f483836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611ea6565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061241957612419612c1e565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561249257600080fd5b505afa1580156124a6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906124ca9190612d06565b816001815181106124dd576124dd612c1e565b60200260200101906001600160a01b031690816001600160a01b031681525050612528307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846114fb565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac9479061257d908590600090869030904290600401612d23565b600060405180830381600087803b15801561259757600080fd5b505af11580156125ab573d6000803e3d6000fd5b505050505050565b6125de307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846114fb565b60405163f305d71960e01b815230600482015260248101839052600060448201819052606482015261dead60848201524260a48201527f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b03169063f305d71990839060c4016060604051808303818588803b15801561266357600080fd5b505af1158015612677573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061269c9190612d94565b5050505050565b600081836126c45760405162461bcd60e51b8152600401610a5f9190612706565b506000611ed78486612baf565b6001600160a01b03811681146126e657600080fd5b50565b6000602082840312156126fb57600080fd5b81356114f4816126d1565b600060208083528351808285015260005b8181101561273357858101830151858201604001528201612717565b81811115612745576000604083870101525b50601f01601f1916929092016040019392505050565b6000806040838503121561276e57600080fd5b8235612779816126d1565b946020939093013593505050565b60006020828403121561279957600080fd5b5035919050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff811182821017156127df576127df6127a0565b604052919050565b600067ffffffffffffffff821115612801576128016127a0565b5060051b60200190565b600082601f83011261281c57600080fd5b8135602061283161282c836127e7565b6127b6565b82815260059290921b8401810191818101908684111561285057600080fd5b8286015b8481101561286b5780358352918301918301612854565b509695505050505050565b6000806040838503121561288957600080fd5b823567ffffffffffffffff808211156128a157600080fd5b818501915085601f8301126128b557600080fd5b813560206128c561282c836127e7565b82815260059290921b840181019181810190898411156128e457600080fd5b948201945b8386101561290b5785356128fc816126d1565b825294820194908201906128e9565b9650508601359250508082111561292157600080fd5b5061292e8582860161280b565b9150509250929050565b60008060006060848603121561294d57600080fd5b8335612958816126d1565b92506020840135612968816126d1565b929592945050506040919091013590565b8035801515811461298957600080fd5b919050565b600080604083850312156129a157600080fd5b82356129ac816126d1565b91506129ba60208401612979565b90509250929050565b6000602082840312156129d557600080fd5b6114f482612979565b600080604083850312156129f157600080fd5b82356129fc816126d1565b91506020830135612a0c816126d1565b809150509250929050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c90821680612a6057607f821691505b60208210811415612a8157634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600181815b80851115612ad8578160001904821115612abe57612abe612a87565b80851615612acb57918102915b93841c9390800290612aa2565b509250929050565b600082612aef57506001610b68565b81612afc57506000610b68565b8160018114612b125760028114612b1c57612b38565b6001915050610b68565b60ff841115612b2d57612b2d612a87565b50506001821b610b68565b5060208310610133831016604e8410600b8410161715612b5b575081810a610b68565b612b658383612a9d565b8060001904821115612b7957612b79612a87565b029392505050565b60006114f460ff841683612ae0565b6000816000190483118215151615612baa57612baa612a87565b500290565b600082612bcc57634e487b7160e01b600052601260045260246000fd5b500490565b6020808252602d908201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060408201526c6c6f776572207468616e20312560981b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b6000600019821415612c4857612c48612a87565b5060010190565b60008219821115612c6257612c62612a87565b500190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b600082821015612d0157612d01612a87565b500390565b600060208284031215612d1857600080fd5b81516114f4816126d1565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015612d735784516001600160a01b031683529383019391830191600101612d4e565b50506001600160a01b03969096166060850152505050608001529392505050565b600080600060608486031215612da957600080fd5b835192506020840151915060408401519050925092509256fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220d124d534c4ce7f5d06cc23d6690ed7b8d4324c18bed2ae46ac6fd0bafba2293464736f6c63430008090033
Deployed Bytecode Sourcemap
29434:16144:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38302:173;;;;;;;;;;-1:-1:-1;38302:173:0;;;;;:::i;:::-;;:::i;:::-;;7590:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9757:169;;;;;;;;;;-1:-1:-1;9757:169:0;;;;;:::i;:::-;;:::i;:::-;;;1489:14:1;;1482:22;1464:41;;1452:2;1437:18;9757:169:0;1324:187:1;30571:31:0;;;;;;;;;;;;;;;;;;;1662:25:1;;;1650:2;1635:18;30571:31:0;1516:177:1;36312:246:0;;;;;;;;;;-1:-1:-1;36312:246:0;;;;;:::i;:::-;;:::i;30756:64::-;;;;;;;;;;-1:-1:-1;30756:64:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;29509:51;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;2074:32:1;;;2056:51;;2044:2;2029:18;29509:51:0;1883:230:1;8710:108:0;;;;;;;;;;-1:-1:-1;8798:12:0;;8710:108;;38133:157;;;;;;;;;;-1:-1:-1;38133:157:0;;;;;:::i;:::-;;:::i;30415:29::-;;;;;;;;;;;;;;;;30497:33;;;;;;;;;;;;;;;;36570:234;;;;;;;;;;-1:-1:-1;36570:234:0;;;;;:::i;:::-;;:::i;29772:28::-;;;;;;;;;;-1:-1:-1;29772:28:0;;;;-1:-1:-1;;;;;29772:28:0;;;30457:33;;;;;;;;;;;;;;;;30231:28;;;;;;;;;;;;;;;;35548:752;;;;;;;;;;-1:-1:-1;35548:752:0;;;;;:::i;:::-;;:::i;10408:355::-;;;;;;;;;;-1:-1:-1;10408:355:0;;;;;:::i;:::-;;:::i;29612:53::-;;;;;;;;;;;;29658:6;29612:53;;36968:92;;;;;;;;;;-1:-1:-1;37043:9:0;;36968:92;;37043:9;;;;5416:36:1;;5404:2;5389:18;36968:92:0;5274:184:1;11172:218:0;;;;;;;;;;-1:-1:-1;11172:218:0;;;;;:::i;:::-;;:::i;29567:38::-;;;;;;;;;;;;;;;29918:33;;;;;;;;;;-1:-1:-1;29918:33:0;;;;;;;;;;;38489:127;;;;;;;;;;-1:-1:-1;38489:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;38580:28:0;38556:4;38580:28;;;:19;:28;;;;;;;;;38489:127;30272:28;;;;;;;;;;;;;;;;29998:31;;;;;;;;;;-1:-1:-1;29998:31:0;;;;;;;;;;;8881:127;;;;;;;;;;-1:-1:-1;8881:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;8982:18:0;8955:7;8982:18;;;;;;;;;;;;8881:127;22055:148;;;;;;;;;;;;;:::i;35416:120::-;;;;;;;;;;;;;:::i;36816:144::-;;;;;;;;;;-1:-1:-1;36816:144:0;;;;;:::i;:::-;;:::i;29704:30::-;;;;;;;;;;-1:-1:-1;29704:30:0;;;;-1:-1:-1;;;;;29704:30:0;;;30126;;;;;;;;;;;;;;;;35202:158;;;;;;;;;;;;;:::i;21413:79::-;;;;;;;;;;-1:-1:-1;21478:6:0;;-1:-1:-1;;;;;21478:6:0;21413:79;;29741:24;;;;;;;;;;-1:-1:-1;29741:24:0;;;;-1:-1:-1;;;;;29741:24:0;;;30307:31;;;;;;;;;;;;;;;;37160:101;;;;;;;;;;-1:-1:-1;37160:101:0;;;;;:::i;:::-;;:::i;7809:104::-;;;;;;;;;;;;;:::i;37459:246::-;;;;;;;;;;-1:-1:-1;37459:246:0;;;;;:::i;:::-;;:::i;30200:24::-;;;;;;;;;;;;;;;;30537:27;;;;;;;;;;;;;;;;30383:25;;;;;;;;;;;;;;;;11893:269;;;;;;;;;;-1:-1:-1;11893:269:0;;;;;:::i;:::-;;:::i;9221:175::-;;;;;;;;;;-1:-1:-1;9221:175:0;;;;;:::i;:::-;;:::i;37913:208::-;;;;;;;;;;-1:-1:-1;37913:208:0;;;;;:::i;:::-;;:::i;30978:58::-;;;;;;;;;;-1:-1:-1;30978:58:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;29958:33;;;;;;;;;;-1:-1:-1;29958:33:0;;;;;;;;;;;37269:182;;;;;;;;;;-1:-1:-1;37269:182:0;;;;;:::i;:::-;;:::i;29813:35::-;;;;;;;;;;;;;;;;30092:27;;;;;;;;;;;;;;;;9459:151;;;;;;;;;;-1:-1:-1;9459:151:0;;;;;:::i;:::-;-1:-1:-1;;;;;9575:18:0;;;9548:7;9575:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;9459:151;30042:33;;;;;;;;;;;;;;;;30163:30;;;;;;;;;;;;;;;;22358:244;;;;;;;;;;-1:-1:-1;22358:244:0;;;;;:::i;:::-;;:::i;30345:31::-;;;;;;;;;;;;;;;;29855:24;;;;;;;;;;;;;;;;38302:173;21625:6;;-1:-1:-1;;;;;21625:6:0;306:10;21625:22;21617:67;;;;-1:-1:-1;;;21617:67:0;;;;;;;:::i;:::-;;;;;;;;;38417:13:::1;::::0;38385:46:::1;::::0;-1:-1:-1;;;;;38417:13:0;;::::1;::::0;38385:46;::::1;::::0;::::1;::::0;38417:13:::1;::::0;38385:46:::1;38442:13;:25:::0;;-1:-1:-1;;;;;;38442:25:0::1;-1:-1:-1::0;;;;;38442:25:0;;;::::1;::::0;;;::::1;::::0;;38302:173::o;7590:100::-;7644:13;7677:5;7670:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7590:100;:::o;9757:169::-;9840:4;9857:39;306:10;9880:7;9889:6;9857:8;:39::i;:::-;-1:-1:-1;9914:4:0;9757:169;;;;;:::o;36312:246::-;21625:6;;-1:-1:-1;;;;;21625:6:0;306:10;21625:22;21617:67;;;;-1:-1:-1;;;21617:67:0;;;;;;;:::i;:::-;36432:9:::1;::::0;36428:13:::1;::::0;36432:9:::1;;36428:2;:13;:::i;:::-;36422:3;36402:13;8798:12:::0;;;8710:108;36402:13:::1;:17;::::0;36418:1:::1;36402:17;:::i;:::-;:23;;;;:::i;:::-;36401:41;;;;:::i;:::-;36391:6;:51;;36383:109;;;;-1:-1:-1::0;;;36383:109:0::1;;;;;;;:::i;:::-;36540:9;::::0;36536:13:::1;::::0;36540:9:::1;;36536:2;:13;:::i;:::-;36526:24;::::0;:6;:24:::1;:::i;:::-;36503:20;:47:::0;-1:-1:-1;36312:246:0:o;38133:157::-;21625:6;;-1:-1:-1;;;;;21625:6:0;306:10;21625:22;21617:67;;;;-1:-1:-1;;;21617:67:0;;;;;;;:::i;:::-;38240:9:::1;::::0;38212:38:::1;::::0;-1:-1:-1;;;;;38240:9:0;;::::1;::::0;38212:38;::::1;::::0;::::1;::::0;38240:9:::1;::::0;38212:38:::1;38261:9;:21:::0;;-1:-1:-1;;;;;;38261:21:0::1;-1:-1:-1::0;;;;;38261:21:0;;;::::1;::::0;;;::::1;::::0;;38133:157::o;36570:234::-;21625:6;;-1:-1:-1;;;;;21625:6:0;306:10;21625:22;21617:67;;;;-1:-1:-1;;;21617:67:0;;;;;;;:::i;:::-;36690:9:::1;::::0;36686:13:::1;::::0;36690:9:::1;;36686:2;:13;:::i;:::-;36680:3;36660:13;8798:12:::0;;;8710:108;36660:13:::1;:17;::::0;36676:1:::1;36660:17;:::i;:::-;:23;;;;:::i;:::-;36659:41;;;;:::i;:::-;36649:6;:51;;36641:109;;;;-1:-1:-1::0;;;36641:109:0::1;;;;;;;:::i;:::-;36786:9;::::0;36782:13:::1;::::0;36786:9:::1;;36782:2;:13;:::i;:::-;36772:24;::::0;:6;:24:::1;:::i;:::-;36761:9;:35:::0;-1:-1:-1;36570:234:0:o;35548:752::-;21625:6;;35661:4;;-1:-1:-1;;;;;21625:6:0;306:10;21625:22;21617:67;;;;-1:-1:-1;;;21617:67:0;;;;;;;:::i;:::-;35686:13:::1;::::0;;;::::1;;;35685:14;35677:82;;;::::0;-1:-1:-1;;;35677:82:0;;9798:2:1;35677:82:0::1;::::0;::::1;9780:21:1::0;9837:2;9817:18;;;9810:30;9876:34;9856:18;;;9849:62;9947:25;9927:18;;;9920:53;9990:19;;35677:82:0::1;9596:419:1::0;35677:82:0::1;35803:7;:14;35778;:21;:39;35770:82;;;::::0;-1:-1:-1;;;35770:82:0;;10222:2:1;35770:82:0::1;::::0;::::1;10204:21:1::0;10261:2;10241:18;;;10234:30;10300:32;10280:18;;;10273:60;10350:18;;35770:82:0::1;10020:354:1::0;35770:82:0::1;35895:3;35871:14;:21;:27;35863:94;;;::::0;-1:-1:-1;;;35863:94:0;;10581:2:1;35863:94:0::1;::::0;::::1;10563:21:1::0;10620:2;10600:18;;;10593:30;10659:34;10639:18;;;10632:62;-1:-1:-1;;;10710:18:1;;;10703:52;10772:19;;35863:94:0::1;10379:418:1::0;35863:94:0::1;36070:9;36066:205;36089:14;:21;36085:1;:25;36066:205;;;36131:14;36148;36163:1;36148:17;;;;;;;;:::i;:::-;;;;;;;36131:34;;36180:14;36197:7;36205:1;36197:10;;;;;;;;:::i;:::-;;;;;;;36180:27;;36222:37;36232:10;36244:6;36252;36222:9;:37::i;:::-;36116:155;;36112:3;;;;;:::i;:::-;;;;36066:205;;;-1:-1:-1::0;36288:4:0::1;::::0;35548:752;-1:-1:-1;;;35548:752:0:o;10408:355::-;10548:4;10565:36;10575:6;10583:9;10594:6;10565:9;:36::i;:::-;10612:121;10621:6;306:10;10643:89;10681:6;10643:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;10643:19:0;;;;;;:11;:19;;;;;;;;306:10;10643:33;;;;;;;;;;:37;:89::i;:::-;10612:8;:121::i;11172:218::-;306:10;11260:4;11309:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;11309:34:0;;;;;;;;;;11260:4;;11277:83;;11300:7;;11309:50;;11348:10;11309:38;:50::i;22055:148::-;21625:6;;-1:-1:-1;;;;;21625:6:0;306:10;21625:22;21617:67;;;;-1:-1:-1;;;21617:67:0;;;;;;;:::i;:::-;22146:6:::1;::::0;22125:40:::1;::::0;22162:1:::1;::::0;-1:-1:-1;;;;;22146:6:0::1;::::0;22125:40:::1;::::0;22162:1;;22125:40:::1;22176:6;:19:::0;;-1:-1:-1;;;;;;22176:19:0::1;::::0;;22055:148::o;35416:120::-;21625:6;;35468:4;;-1:-1:-1;;;;;21625:6:0;306:10;21625:22;21617:67;;;;-1:-1:-1;;;21617:67:0;;;;;;;:::i;:::-;-1:-1:-1;35484:14:0::1;:22:::0;;-1:-1:-1;;35484:22:0::1;::::0;;:14:::1;35416:120:::0;:::o;36816:144::-;21625:6;;-1:-1:-1;;;;;21625:6:0;306:10;21625:22;21617:67;;;;-1:-1:-1;;;21617:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;36906:39:0;;;::::1;;::::0;;;:31:::1;:39;::::0;;;;:46;;-1:-1:-1;;36906:46:0::1;::::0;::::1;;::::0;;;::::1;::::0;;36816:144::o;35202:158::-;21625:6;;-1:-1:-1;;;;;21625:6:0;306:10;21625:22;21617:67;;;;-1:-1:-1;;;21617:67:0;;;;;;;:::i;:::-;35257:13:::1;:20:::0;;-1:-1:-1;;35288:18:0;;;;;35338:14:::1;:12;35257:13;35338:14;:::i;:::-;35317:18;:35:::0;35202:158::o;37160:101::-;21625:6;;-1:-1:-1;;;;;21625:6:0;306:10;21625:22;21617:67;;;;-1:-1:-1;;;21617:67:0;;;;;;;:::i;:::-;37232:11:::1;:21:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;37232:21:0;;::::1;::::0;;;::::1;::::0;;37160:101::o;7809:104::-;7865:13;7898:7;7891:14;;;;;:::i;37459:246::-;21625:6;;-1:-1:-1;;;;;21625:6:0;306:10;21625:22;21617:67;;;;-1:-1:-1;;;21617:67:0;;;;;;;:::i;:::-;37568:13:::1;-1:-1:-1::0;;;;;37560:21:0::1;:4;-1:-1:-1::0;;;;;37560:21:0::1;;;37552:91;;;::::0;-1:-1:-1;;;37552:91:0;;11409:2:1;37552:91:0::1;::::0;::::1;11391:21:1::0;11448:2;11428:18;;;11421:30;11487:34;11467:18;;;11460:62;11558:27;11538:18;;;11531:55;11603:19;;37552:91:0::1;11207:421:1::0;37552:91:0::1;37656:41;37685:4;37691:5;37656:28;:41::i;:::-;37459:246:::0;;:::o;11893:269::-;11986:4;12003:129;306:10;12026:7;12035:96;12074:15;12035:96;;;;;;;;;;;;;;;;;306:10;12035:25;;;;:11;:25;;;;;;;;-1:-1:-1;;;;;12035:34:0;;;;;;;;;;;;:38;:96::i;9221:175::-;9307:4;9324:42;306:10;9348:9;9359:6;9324:9;:42::i;37913:208::-;21625:6;;-1:-1:-1;;;;;21625:6:0;306:10;21625:22;21617:67;;;;-1:-1:-1;;;21617:67:0;;;;;;;:::i;:::-;38050:15:::1;::::0;38007:59:::1;::::0;-1:-1:-1;;;;;38050:15:0;;::::1;::::0;38007:59;::::1;::::0;::::1;::::0;38050:15:::1;::::0;38007:59:::1;38077:15;:36:::0;;-1:-1:-1;;;;;;38077:36:0::1;-1:-1:-1::0;;;;;38077:36:0;;;::::1;::::0;;;::::1;::::0;;37913:208::o;37269:182::-;21625:6;;-1:-1:-1;;;;;21625:6:0;306:10;21625:22;21617:67;;;;-1:-1:-1;;;21617:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;37354:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;37354:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;37409:34;;1464:41:1;;;37409:34:0::1;::::0;1437:18:1;37409:34:0::1;;;;;;;37269:182:::0;;:::o;22358:244::-;21625:6;;-1:-1:-1;;;;;21625:6:0;306:10;21625:22;21617:67;;;;-1:-1:-1;;;21617:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;22447:22:0;::::1;22439:73;;;::::0;-1:-1:-1;;;22439:73:0;;11835:2:1;22439:73:0::1;::::0;::::1;11817:21:1::0;11874:2;11854:18;;;11847:30;11913:34;11893:18;;;11886:62;-1:-1:-1;;;11964:18:1;;;11957:36;12010:19;;22439:73:0::1;11633:402:1::0;22439:73:0::1;22549:6;::::0;22528:38:::1;::::0;-1:-1:-1;;;;;22528:38:0;;::::1;::::0;22549:6:::1;::::0;22528:38:::1;::::0;22549:6:::1;::::0;22528:38:::1;22577:6;:17:::0;;-1:-1:-1;;;;;;22577:17:0::1;-1:-1:-1::0;;;;;22577:17:0;;;::::1;::::0;;;::::1;::::0;;22358:244::o;16457:181::-;16515:7;;16547:5;16551:1;16547;:5;:::i;:::-;16535:17;;16576:1;16571;:6;;16563:46;;;;-1:-1:-1;;;16563:46:0;;12242:2:1;16563:46:0;;;12224:21:1;12281:2;12261:18;;;12254:30;12320:29;12300:18;;;12293:57;12367:18;;16563:46:0;12040:351:1;16563:46:0;16629:1;16457:181;-1:-1:-1;;;16457:181:0:o;15079:380::-;-1:-1:-1;;;;;15215:19:0;;15207:68;;;;-1:-1:-1;;;15207:68:0;;12598:2:1;15207:68:0;;;12580:21:1;12637:2;12617:18;;;12610:30;12676:34;12656:18;;;12649:62;-1:-1:-1;;;12727:18:1;;;12720:34;12771:19;;15207:68:0;12396:400:1;15207:68:0;-1:-1:-1;;;;;15294:21:0;;15286:68;;;;-1:-1:-1;;;15286:68:0;;13003:2:1;15286:68:0;;;12985:21:1;13042:2;13022:18;;;13015:30;13081:34;13061:18;;;13054:62;-1:-1:-1;;;13132:18:1;;;13125:32;13174:19;;15286:68:0;12801:398:1;15286:68:0;-1:-1:-1;;;;;15367:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;15419:32;;1662:25:1;;;15419:32:0;;1635:18:1;15419:32:0;;;;;;;;15079:380;;;:::o;38628:4043::-;-1:-1:-1;;;;;38760:18:0;;38752:68;;;;-1:-1:-1;;;38752:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;38839:16:0;;38831:64;;;;-1:-1:-1;;;38831:64:0;;;;;;;:::i;:::-;38910:13;;;;;;;38906:132;;-1:-1:-1;;;;;38947:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;38976:23:0;;;;;;:19;:23;;;;;;;;38947:52;38939:87;;;;-1:-1:-1;;;38939:87:0;;14216:2:1;38939:87:0;;;14198:21:1;14255:2;14235:18;;;14228:30;-1:-1:-1;;;14274:18:1;;;14267:52;14336:18;;38939:87:0;14014:346:1;38939:87:0;39052:11;39049:92;;39080:28;39096:4;39102:2;39106:1;39080:15;:28::i;:::-;38628:4043;;;:::o;39049:92::-;39164:14;;;;;;;39161:1134;;;21478:6;;-1:-1:-1;;;;;39216:15:0;;;21478:6;;39216:15;;;;:49;;-1:-1:-1;21478:6:0;;-1:-1:-1;;;;;39252:13:0;;;21478:6;;39252:13;;39216:49;:86;;;;-1:-1:-1;;;;;;39286:16:0;;;;39216:86;:128;;;;-1:-1:-1;;;;;;39323:21:0;;39337:6;39323:21;;39216:128;:204;;;;-1:-1:-1;;;;;;39367:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;39396:23:0;;;;;;:19;:23;;;;;;;;39367:52;39365:55;39216:204;:234;;;;-1:-1:-1;39442:8:0;;-1:-1:-1;;;39442:8:0;;;;39441:9;39216:234;39194:1090;;;-1:-1:-1;;;;;39535:31:0;;;;;;:25;:31;;;;;;;;:71;;;;-1:-1:-1;;;;;;39571:35:0;;;;;;:31;:35;;;;;;;;39570:36;39535:71;39531:738;;;39653:20;;39643:6;:30;;39635:96;;;;-1:-1:-1;;;39635:96:0;;14567:2:1;39635:96:0;;;14549:21:1;14606:2;14586:18;;;14579:30;14645:34;14625:18;;;14618:62;-1:-1:-1;;;14696:18:1;;;14689:51;14757:19;;39635:96:0;14365:417:1;39635:96:0;39792:9;;-1:-1:-1;;;;;8982:18:0;;8955:7;8982:18;;;;;;;;;;;39766:22;;:6;:22;:::i;:::-;:35;;39758:67;;;;-1:-1:-1;;;39758:67:0;;14989:2:1;39758:67:0;;;14971:21:1;15028:2;15008:18;;;15001:30;-1:-1:-1;;;15047:18:1;;;15040:49;15106:18;;39758:67:0;14787:343:1;39758:67:0;39531:738;;;-1:-1:-1;;;;;39919:29:0;;;;;;:25;:29;;;;;;;;:71;;;;-1:-1:-1;;;;;;39953:37:0;;;;;;:31;:37;;;;;;;;39952:38;39919:71;39915:354;;;40037:20;;40027:6;:30;;40019:97;;;;-1:-1:-1;;;40019:97:0;;15337:2:1;40019:97:0;;;15319:21:1;15376:2;15356:18;;;15349:30;15415:34;15395:18;;;15388:62;-1:-1:-1;;;15466:18:1;;;15459:52;15528:19;;40019:97:0;15135:418:1;39915:354:0;40216:9;;-1:-1:-1;;;;;8982:18:0;;8955:7;8982:18;;;;;;;;;;;40190:22;;:6;:22;:::i;:::-;:35;;40182:67;;;;-1:-1:-1;;;40182:67:0;;14989:2:1;40182:67:0;;;14971:21:1;15028:2;15008:18;;;15001:30;-1:-1:-1;;;15047:18:1;;;15040:49;15106:18;;40182:67:0;14787:343:1;40182:67:0;40358:4;40309:28;8982:18;;;;;;;;;;;40400:24;;;;;;;40455:35;;-1:-1:-1;40479:11:0;;;;;;;40455:35;:61;;;;-1:-1:-1;40508:8:0;;-1:-1:-1;;;40508:8:0;;;;40507:9;40455:61;:110;;;;-1:-1:-1;;;;;;40534:31:0;;;;;;:25;:31;;;;;;;;40533:32;40455:110;:153;;;;-1:-1:-1;;;;;;40583:25:0;;;;;;:19;:25;;;;;;;;40582:26;40455:153;:194;;;;-1:-1:-1;;;;;;40626:23:0;;;;;;:19;:23;;;;;;;;40625:24;40455:194;40437:338;;;40676:8;:15;;-1:-1:-1;;;;40676:15:0;-1:-1:-1;;;40676:15:0;;;40720:10;:8;:10::i;:::-;40747:8;:16;;-1:-1:-1;;;;40747:16:0;;;40437:338;40811:8;;-1:-1:-1;;;;;40920:25:0;;40795:12;40920:25;;;:19;:25;;;;;;40811:8;-1:-1:-1;;;40811:8:0;;;;;40810:9;;40920:25;;:52;;-1:-1:-1;;;;;;40949:23:0;;;;;;:19;:23;;;;;;;;40920:52;40917:99;;;-1:-1:-1;40999:5:0;40917:99;41036:12;41140:7;41137:1481;;;41202:12;41180:18;;:34;;:104;;;;-1:-1:-1;;;;;;41219:29:0;;;;;;:25;:29;;;;;;;;;:64;;-1:-1:-1;;;;;;41252:31:0;;;;;;:25;:31;;;;;;;;41219:64;41177:336;;;41311:23;41330:3;41311:14;:6;41322:2;41311:10;:14::i;:::-;:18;;:23::i;:::-;41304:30;-1:-1:-1;41387:2:0;41375:9;41304:30;41382:2;41375:9;:::i;:::-;:14;;;;:::i;:::-;41353:18;;:36;;;;;;;:::i;:::-;;;;-1:-1:-1;41440:2:0;;-1:-1:-1;41428:9:0;:4;41435:2;41428:9;:::i;:::-;:14;;;;:::i;:::-;41408:16;;:34;;;;;;;:::i;:::-;;;;-1:-1:-1;41495:2:0;;-1:-1:-1;41483:9:0;:4;41490:2;41483:9;:::i;:::-;:14;;;;:::i;:::-;41461:18;;:36;;;;;;;:::i;:::-;;;;-1:-1:-1;;41177:336:0;-1:-1:-1;;;;;41555:29:0;;;;;;:25;:29;;;;;;;;:50;;;;;41604:1;41588:13;;:17;41555:50;41551:898;;;41632:34;41662:3;41632:25;41643:13;;41632:6;:10;;:25;;;;:::i;:34::-;41625:41;;41733:13;;41714:16;;41707:4;:23;;;;:::i;:::-;:39;;;;:::i;:::-;41685:18;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;;41801:13:0;;41788:10;;41781:17;;:4;:17;:::i;:::-;:33;;;;:::i;:::-;41765:12;;:49;;;;;;;:::i;:::-;;;;-1:-1:-1;;41881:13:0;;41862:16;;41855:23;;:4;:23;:::i;:::-;:39;;;;:::i;:::-;41833:18;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;;41957:13:0;;41940:14;;41933:21;;:4;:21;:::i;:::-;:37;;;;:::i;:::-;41913:16;;:57;;;;;;;:::i;:::-;;;;-1:-1:-1;41551:898:0;;-1:-1:-1;41551:898:0;;-1:-1:-1;;;;;42031:31:0;;;;;;:25;:31;;;;;;;;:51;;;;;42081:1;42066:12;;:16;42031:51;42028:421;;;42107:33;42136:3;42107:24;42118:12;;42107:6;:10;;:24;;;;:::i;:33::-;42100:40;;42203:12;;42185:15;;42178:4;:22;;;;:::i;:::-;:37;;;;:::i;:::-;42156:18;;:59;;;;;;;:::i;:::-;;;;-1:-1:-1;;42269:12:0;;42257:9;;42250:16;;:4;:16;:::i;:::-;:31;;;;:::i;:::-;42234:12;;:47;;;;;;;:::i;:::-;;;;-1:-1:-1;;42347:12:0;;42329:15;;42322:22;;:4;:22;:::i;:::-;:37;;;;:::i;:::-;42300:18;;:59;;;;;;;:::i;:::-;;;;-1:-1:-1;;42421:12:0;;42405:13;;42398:20;;:4;:20;:::i;:::-;:35;;;;:::i;:::-;42378:16;;:55;;;;;;;:::i;:::-;;;;-1:-1:-1;;42028:421:0;42480:8;;42477:93;;42512:42;42528:4;42542;42549;42512:15;:42::i;:::-;42592:14;42602:4;42592:14;;:::i;:::-;;;41137:1481;42630:33;42646:4;42652:2;42656:6;42630:15;:33::i;:::-;38741:3930;;;;38628:4043;;;:::o;17360:192::-;17446:7;17482:12;17474:6;;;;17466:29;;;;-1:-1:-1;;;17466:29:0;;;;;;;;:::i;:::-;-1:-1:-1;17506:9:0;17518:5;17522:1;17518;:5;:::i;:::-;17506:17;17360:192;-1:-1:-1;;;;;17360:192:0:o;37717:188::-;-1:-1:-1;;;;;37800:31:0;;;;;;:25;:31;;;;;;:39;;-1:-1:-1;;37800:39:0;;;;;;;;;;37857:40;;37800:39;;:31;37857:40;;;37717:188;;:::o;12652:573::-;-1:-1:-1;;;;;12792:20:0;;12784:70;;;;-1:-1:-1;;;12784:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;12873:23:0;;12865:71;;;;-1:-1:-1;;;12865:71:0;;;;;;;:::i;:::-;13029;13051:6;13029:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;13029:17:0;;:9;:17;;;;;;;;;;;;:71;:21;:71::i;:::-;-1:-1:-1;;;;;13009:17:0;;;:9;:17;;;;;;;;;;;:91;;;;13134:20;;;;;;;:32;;13159:6;13134:24;:32::i;:::-;-1:-1:-1;;;;;13111:20:0;;;:9;:20;;;;;;;;;;;;:55;;;;13182:35;1662:25:1;;;13111:20:0;;13182:35;;;;;;1635:18:1;13182:35:0;1516:177:1;43817:1758:0;43900:4;43856:23;8982:18;;;;;;;;;;;43856:50;;43919:25;44004:16;;43989:12;;43968:18;;43947;;:39;;;;:::i;:::-;:54;;;;:::i;:::-;:73;;;;:::i;:::-;43919:101;-1:-1:-1;44031:12:0;44067:20;;;:46;;-1:-1:-1;44091:22:0;;44067:46;44064:60;;;44116:7;;;43817:1758::o;44064:60::-;44193:23;44278:1;44258:17;44237:18;;44219:15;:36;;;;:::i;:::-;:56;;;;:::i;:::-;:60;;;;:::i;:::-;44193:86;-1:-1:-1;44290:26:0;44319:36;:15;44193:86;44319:19;:36::i;:::-;44290:65;-1:-1:-1;44404:21:0;44438:36;44290:65;44438:16;:36::i;:::-;44496:18;44517:44;:21;44543:17;44517:25;:44::i;:::-;44496:65;;44582:23;44608:57;44647:17;44608:34;44623:18;;44608:10;:14;;:34;;;;:::i;:57::-;44582:83;;44676:17;44696:51;44729:17;44696:28;44711:12;;44696:10;:14;;:28;;;;:::i;:51::-;44676:71;;44758:21;44782:55;44819:17;44782:32;44797:16;;44782:10;:14;;:32;;;;:::i;:55::-;44758:79;-1:-1:-1;44858:23:0;44758:79;44915:9;44884:28;44897:15;44884:10;:28;:::i;:::-;:40;;;;:::i;:::-;:56;;;;:::i;:::-;44982:1;44961:18;:22;;;44994:18;:22;;;45027:12;:16;;;45054;:20;;;45116:9;;45108:45;;44858:82;;-1:-1:-1;;;;;;45116:9:0;;45139;;45108:45;44982:1;45108:45;45139:9;45116;45108:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;45185:13:0;;45177:53;;45095:58;;-1:-1:-1;;;;;;45185:13:0;;45212;;45177:53;;;;45212:13;45185;45177:53;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45164:66:0;;-1:-1:-1;;45254:19:0;;;;;:42;;;45295:1;45277:15;:19;45254:42;45251:210;;;45312:46;45325:15;45342;45312:12;:46::i;:::-;45430:18;;45378:71;;;16100:25:1;;;16156:2;16141:18;;16134:34;;;16184:18;;;16177:34;;;;45378:71:0;;;;;;16088:2:1;45378:71:0;;;45251:210;45502:15;;45494:63;;-1:-1:-1;;;;;45502:15:0;;;;45531:21;;45494:63;;;;45531:21;45502:15;45494:63;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;;;;43817:1758:0:o;17811:471::-;17869:7;18114:6;18110:47;;-1:-1:-1;18144:1:0;18137:8;;18110:47;18169:9;18181:5;18185:1;18181;:5;:::i;:::-;18169:17;-1:-1:-1;18214:1:0;18205:5;18209:1;18169:17;18205:5;:::i;:::-;:10;18197:56;;;;-1:-1:-1;;;18197:56:0;;16424:2:1;18197:56:0;;;16406:21:1;16463:2;16443:18;;;16436:30;16502:34;16482:18;;;16475:62;-1:-1:-1;;;16553:18:1;;;16546:31;16594:19;;18197:56:0;16222:397:1;18758:132:0;18816:7;18843:39;18847:1;18850;18843:39;;;;;;;;;;;;;;;;;:3;:39::i;16921:136::-;16979:7;17006:43;17010:1;17013;17006:43;;;;;;;;;;;;;;;;;:3;:43::i;42679:601::-;42831:16;;;42845:1;42831:16;;;;;;;;42807:21;;42831:16;;;;;;;;;;-1:-1:-1;42831:16:0;42807:40;;42876:4;42858;42863:1;42858:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;42858:23:0;;;-1:-1:-1;;;;;42858:23:0;;;;;42902:15;-1:-1:-1;;;;;42902:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;42892:4;42897:1;42892:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1;;;;;42892:32:0;;;-1:-1:-1;;;;;42892:32:0;;;;;42937:62;42954:4;42969:15;42987:11;42937:8;:62::i;:::-;43038:224;;-1:-1:-1;;;43038:224:0;;-1:-1:-1;;;;;43038:15:0;:66;;;;:224;;43119:11;;43145:1;;43189:4;;43216;;43236:15;;43038:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42734:546;42679:601;:::o;43292:517::-;43440:62;43457:4;43472:15;43490:11;43440:8;:62::i;:::-;43545:256;;-1:-1:-1;;;43545:256:0;;43617:4;43545:256;;;18206:34:1;18256:18;;;18249:34;;;43663:1:0;18299:18:1;;;18292:34;;;18342:18;;;18335:34;29658:6:0;18385:19:1;;;18378:44;43775:15:0;18438:19:1;;;18431:35;43545:15:0;-1:-1:-1;;;;;43545:31:0;;;;43584:9;;18140:19:1;;43545:256:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;43292:517;;:::o;19386:278::-;19472:7;19507:12;19500:5;19492:28;;;;-1:-1:-1;;;19492:28:0;;;;;;;;:::i;:::-;-1:-1:-1;19531:9:0;19543:5;19547:1;19543;:5;:::i;14:131:1:-;-1:-1:-1;;;;;89:31:1;;79:42;;69:70;;135:1;132;125:12;69:70;14:131;:::o;150:247::-;209:6;262:2;250:9;241:7;237:23;233:32;230:52;;;278:1;275;268:12;230:52;317:9;304:23;336:31;361:5;336:31;:::i;402:597::-;514:4;543:2;572;561:9;554:21;604:6;598:13;647:6;642:2;631:9;627:18;620:34;672:1;682:140;696:6;693:1;690:13;682:140;;;791:14;;;787:23;;781:30;757:17;;;776:2;753:26;746:66;711:10;;682:140;;;840:6;837:1;834:13;831:91;;;910:1;905:2;896:6;885:9;881:22;877:31;870:42;831:91;-1:-1:-1;983:2:1;962:15;-1:-1:-1;;958:29:1;943:45;;;;990:2;939:54;;402:597;-1:-1:-1;;;402:597:1:o;1004:315::-;1072:6;1080;1133:2;1121:9;1112:7;1108:23;1104:32;1101:52;;;1149:1;1146;1139:12;1101:52;1188:9;1175:23;1207:31;1232:5;1207:31;:::i;:::-;1257:5;1309:2;1294:18;;;;1281:32;;-1:-1:-1;;;1004:315:1:o;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;2326:127::-;2387:10;2382:3;2378:20;2375:1;2368:31;2418:4;2415:1;2408:15;2442:4;2439:1;2432:15;2458:275;2529:2;2523:9;2594:2;2575:13;;-1:-1:-1;;2571:27:1;2559:40;;2629:18;2614:34;;2650:22;;;2611:62;2608:88;;;2676:18;;:::i;:::-;2712:2;2705:22;2458:275;;-1:-1:-1;2458:275:1:o;2738:183::-;2798:4;2831:18;2823:6;2820:30;2817:56;;;2853:18;;:::i;:::-;-1:-1:-1;2898:1:1;2894:14;2910:4;2890:25;;2738:183::o;2926:662::-;2980:5;3033:3;3026:4;3018:6;3014:17;3010:27;3000:55;;3051:1;3048;3041:12;3000:55;3087:6;3074:20;3113:4;3137:60;3153:43;3193:2;3153:43;:::i;:::-;3137:60;:::i;:::-;3231:15;;;3317:1;3313:10;;;;3301:23;;3297:32;;;3262:12;;;;3341:15;;;3338:35;;;3369:1;3366;3359:12;3338:35;3405:2;3397:6;3393:15;3417:142;3433:6;3428:3;3425:15;3417:142;;;3499:17;;3487:30;;3537:12;;;;3450;;3417:142;;;-1:-1:-1;3577:5:1;2926:662;-1:-1:-1;;;;;;2926:662:1:o;3593:1215::-;3711:6;3719;3772:2;3760:9;3751:7;3747:23;3743:32;3740:52;;;3788:1;3785;3778:12;3740:52;3828:9;3815:23;3857:18;3898:2;3890:6;3887:14;3884:34;;;3914:1;3911;3904:12;3884:34;3952:6;3941:9;3937:22;3927:32;;3997:7;3990:4;3986:2;3982:13;3978:27;3968:55;;4019:1;4016;4009:12;3968:55;4055:2;4042:16;4077:4;4101:60;4117:43;4157:2;4117:43;:::i;4101:60::-;4195:15;;;4277:1;4273:10;;;;4265:19;;4261:28;;;4226:12;;;;4301:19;;;4298:39;;;4333:1;4330;4323:12;4298:39;4357:11;;;;4377:217;4393:6;4388:3;4385:15;4377:217;;;4473:3;4460:17;4490:31;4515:5;4490:31;:::i;:::-;4534:18;;4410:12;;;;4572;;;;4377:217;;;4613:5;-1:-1:-1;;4656:18:1;;4643:32;;-1:-1:-1;;4687:16:1;;;4684:36;;;4716:1;4713;4706:12;4684:36;;4739:63;4794:7;4783:8;4772:9;4768:24;4739:63;:::i;:::-;4729:73;;;3593:1215;;;;;:::o;4813:456::-;4890:6;4898;4906;4959:2;4947:9;4938:7;4934:23;4930:32;4927:52;;;4975:1;4972;4965:12;4927:52;5014:9;5001:23;5033:31;5058:5;5033:31;:::i;:::-;5083:5;-1:-1:-1;5140:2:1;5125:18;;5112:32;5153:33;5112:32;5153:33;:::i;:::-;4813:456;;5205:7;;-1:-1:-1;;;5259:2:1;5244:18;;;;5231:32;;4813:456::o;5463:160::-;5528:20;;5584:13;;5577:21;5567:32;;5557:60;;5613:1;5610;5603:12;5557:60;5463:160;;;:::o;5628:315::-;5693:6;5701;5754:2;5742:9;5733:7;5729:23;5725:32;5722:52;;;5770:1;5767;5760:12;5722:52;5809:9;5796:23;5828:31;5853:5;5828:31;:::i;:::-;5878:5;-1:-1:-1;5902:35:1;5933:2;5918:18;;5902:35;:::i;:::-;5892:45;;5628:315;;;;;:::o;5948:180::-;6004:6;6057:2;6045:9;6036:7;6032:23;6028:32;6025:52;;;6073:1;6070;6063:12;6025:52;6096:26;6112:9;6096:26;:::i;6133:388::-;6201:6;6209;6262:2;6250:9;6241:7;6237:23;6233:32;6230:52;;;6278:1;6275;6268:12;6230:52;6317:9;6304:23;6336:31;6361:5;6336:31;:::i;:::-;6386:5;-1:-1:-1;6443:2:1;6428:18;;6415:32;6456:33;6415:32;6456:33;:::i;:::-;6508:7;6498:17;;;6133:388;;;;;:::o;6526:356::-;6728:2;6710:21;;;6747:18;;;6740:30;6806:34;6801:2;6786:18;;6779:62;6873:2;6858:18;;6526:356::o;6887:380::-;6966:1;6962:12;;;;7009;;;7030:61;;7084:4;7076:6;7072:17;7062:27;;7030:61;7137:2;7129:6;7126:14;7106:18;7103:38;7100:161;;;7183:10;7178:3;7174:20;7171:1;7164:31;7218:4;7215:1;7208:15;7246:4;7243:1;7236:15;7100:161;;6887:380;;;:::o;7272:127::-;7333:10;7328:3;7324:20;7321:1;7314:31;7364:4;7361:1;7354:15;7388:4;7385:1;7378:15;7404:422;7493:1;7536:5;7493:1;7550:270;7571:7;7561:8;7558:21;7550:270;;;7630:4;7626:1;7622:6;7618:17;7612:4;7609:27;7606:53;;;7639:18;;:::i;:::-;7689:7;7679:8;7675:22;7672:55;;;7709:16;;;;7672:55;7788:22;;;;7748:15;;;;7550:270;;;7554:3;7404:422;;;;;:::o;7831:806::-;7880:5;7910:8;7900:80;;-1:-1:-1;7951:1:1;7965:5;;7900:80;7999:4;7989:76;;-1:-1:-1;8036:1:1;8050:5;;7989:76;8081:4;8099:1;8094:59;;;;8167:1;8162:130;;;;8074:218;;8094:59;8124:1;8115:10;;8138:5;;;8162:130;8199:3;8189:8;8186:17;8183:43;;;8206:18;;:::i;:::-;-1:-1:-1;;8262:1:1;8248:16;;8277:5;;8074:218;;8376:2;8366:8;8363:16;8357:3;8351:4;8348:13;8344:36;8338:2;8328:8;8325:16;8320:2;8314:4;8311:12;8307:35;8304:77;8301:159;;;-1:-1:-1;8413:19:1;;;8445:5;;8301:159;8492:34;8517:8;8511:4;8492:34;:::i;:::-;8562:6;8558:1;8554:6;8550:19;8541:7;8538:32;8535:58;;;8573:18;;:::i;:::-;8611:20;;7831:806;-1:-1:-1;;;7831:806:1:o;8642:140::-;8700:5;8729:47;8770:4;8760:8;8756:19;8750:4;8729:47;:::i;8787:168::-;8827:7;8893:1;8889;8885:6;8881:14;8878:1;8875:21;8870:1;8863:9;8856:17;8852:45;8849:71;;;8900:18;;:::i;:::-;-1:-1:-1;8940:9:1;;8787:168::o;8960:217::-;9000:1;9026;9016:132;;9070:10;9065:3;9061:20;9058:1;9051:31;9105:4;9102:1;9095:15;9133:4;9130:1;9123:15;9016:132;-1:-1:-1;9162:9:1;;8960:217::o;9182:409::-;9384:2;9366:21;;;9423:2;9403:18;;;9396:30;9462:34;9457:2;9442:18;;9435:62;-1:-1:-1;;;9528:2:1;9513:18;;9506:43;9581:3;9566:19;;9182:409::o;10802:127::-;10863:10;10858:3;10854:20;10851:1;10844:31;10894:4;10891:1;10884:15;10918:4;10915:1;10908:15;10934:135;10973:3;-1:-1:-1;;10994:17:1;;10991:43;;;11014:18;;:::i;:::-;-1:-1:-1;11061:1:1;11050:13;;10934:135::o;11074:128::-;11114:3;11145:1;11141:6;11138:1;11135:13;11132:39;;;11151:18;;:::i;:::-;-1:-1:-1;11187:9:1;;11074:128::o;13204:401::-;13406:2;13388:21;;;13445:2;13425:18;;;13418:30;13484:34;13479:2;13464:18;;13457:62;-1:-1:-1;;;13550:2:1;13535:18;;13528:35;13595:3;13580:19;;13204:401::o;13610:399::-;13812:2;13794:21;;;13851:2;13831:18;;;13824:30;13890:34;13885:2;13870:18;;13863:62;-1:-1:-1;;;13956:2:1;13941:18;;13934:33;13999:3;13984:19;;13610:399::o;15558:125::-;15598:4;15626:1;15623;15620:8;15617:34;;;15631:18;;:::i;:::-;-1:-1:-1;15668:9:1;;15558:125::o;16624:251::-;16694:6;16747:2;16735:9;16726:7;16722:23;16718:32;16715:52;;;16763:1;16760;16753:12;16715:52;16795:9;16789:16;16814:31;16839:5;16814:31;:::i;16880:980::-;17142:4;17190:3;17179:9;17175:19;17221:6;17210:9;17203:25;17247:2;17285:6;17280:2;17269:9;17265:18;17258:34;17328:3;17323:2;17312:9;17308:18;17301:31;17352:6;17387;17381:13;17418:6;17410;17403:22;17456:3;17445:9;17441:19;17434:26;;17495:2;17487:6;17483:15;17469:29;;17516:1;17526:195;17540:6;17537:1;17534:13;17526:195;;;17605:13;;-1:-1:-1;;;;;17601:39:1;17589:52;;17696:15;;;;17661:12;;;;17637:1;17555:9;17526:195;;;-1:-1:-1;;;;;;;17777:32:1;;;;17772:2;17757:18;;17750:60;-1:-1:-1;;;17841:3:1;17826:19;17819:35;17738:3;16880:980;-1:-1:-1;;;16880:980:1:o;18477:306::-;18565:6;18573;18581;18634:2;18622:9;18613:7;18609:23;18605:32;18602:52;;;18650:1;18647;18640:12;18602:52;18679:9;18673:16;18663:26;;18729:2;18718:9;18714:18;18708:25;18698:35;;18773:2;18762:9;18758:18;18752:25;18742:35;;18477:306;;;;;:::o
Swarm Source
ipfs://d124d534c4ce7f5d06cc23d6690ed7b8d4324c18bed2ae46ac6fd0bafba22934
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.