Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Overview
Max Total Supply
1,000,000,000 AEONS
Holders
23
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
6,143,742.660643183341812249 AEONSValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Aeons
Compiler Version
v0.8.9+commit.e5eed63a
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-07-12 */ /* https://t.me/AeonGemChat */ // SPDX-License-Identifier: Unlicensed 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 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 Aeons is ERC20, Ownable { using SafeMath for uint256; IUniswapV2Router02 public immutable uniswapV2Router; address public immutable uniswapV2Pair; bool private swapping; address public marketingWallet; uint256 public swapTokensAtAmount; uint256 public maxWallet; bool public tradingActive = false; bool public swapEnabled = false; uint256 public BuyInitialFees; uint256 public BuyTotalFees; uint256 public BuyLiquidityFee; uint256 public BuyTaxFee; uint256 public SellInitialFees; uint256 public SellTotalFees; uint256 public SellLiquidityFee; uint256 public SellTaxFee; uint256 public tokensForLiquidity; uint256 public tokensForTax; /******************/ // exclude from fees and max transaction amount mapping (address => bool) public _isExcludedFromFees; mapping (address => bool) public _isExcludedMaxBuyTransactionAmount; mapping (address => bool) public _isExcludedMaxSellTransactionAmount; // store addresses that a automatic market maker pairs. Any transfer *to* these addresses // could be subject to a maximum transfer amount mapping (address => bool) public automatedMarketMakerPairs; event UpdateUniswapV2Router(address indexed newAddress, address indexed oldAddress); event ExcludeFromFees(address indexed account, bool isExcluded); event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value); event SwapAndLiquify( uint256 tokensSwapped, uint256 ethReceived, uint256 tokensIntoLiquidity ); constructor() ERC20("A jeeters paradise", "AEONS") { IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); _isExcludedMaxBuyTransactionAmount[address(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D)] = true; _isExcludedMaxSellTransactionAmount[address(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D)] = true; uniswapV2Router = _uniswapV2Router; uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this), _uniswapV2Router.WETH()); _isExcludedMaxBuyTransactionAmount[uniswapV2Pair] = true; _isExcludedMaxSellTransactionAmount[uniswapV2Pair] = true; _setAutomatedMarketMakerPair(address(uniswapV2Pair), true); // fees 3/6 uint256 _BuyLiquidityFee = 0; uint256 _BuyTaxFee = 5; uint256 _SellLiquidityFee = 0; uint256 _SellTaxFee = 5; uint256 totalSupply = 1000000000 * 1e18; maxWallet = 20000000 * 1e18; // Max Wallet 3% swapTokensAtAmount = 1000000 * 1e18; // 0.1% swap threshold for the CA BuyLiquidityFee = _BuyLiquidityFee; BuyTaxFee = _BuyTaxFee; BuyTotalFees = BuyLiquidityFee + BuyTaxFee; BuyInitialFees = BuyTotalFees; SellLiquidityFee = _SellLiquidityFee; SellTaxFee = _SellTaxFee; SellTotalFees = SellLiquidityFee + SellTaxFee; SellInitialFees = SellTotalFees; marketingWallet = address(0x7557e62D820084a83712A9C0AeE81f00ECFd270C); // set as marketing wallet // exclude from paying fees or having max transaction amount _isExcludedFromFees[address(0x7557e62D820084a83712A9C0AeE81f00ECFd270C)] = true; _isExcludedFromFees[address(this)] = true; _isExcludedFromFees[address(0xdead)] = true; _isExcludedMaxBuyTransactionAmount[address(0x7557e62D820084a83712A9C0AeE81f00ECFd270C)] = true; _isExcludedMaxBuyTransactionAmount[address(this)] = true; _isExcludedMaxBuyTransactionAmount[address(0xdead)] = true; _isExcludedMaxSellTransactionAmount[address(0x7557e62D820084a83712A9C0AeE81f00ECFd270C)] = true; _isExcludedMaxSellTransactionAmount[address(this)] = true; _isExcludedMaxSellTransactionAmount[address(0xdead)] = true; /* _mint is an internal function in ERC20.sol that is only called here, and CANNOT be called ever again */ _mint(msg.sender, totalSupply); } receive() external payable { } // once enabled, can never be turned off function enableTrading() external onlyOwner { tradingActive = true; swapEnabled = true; } function _setAutomatedMarketMakerPair(address pair, bool value) private { automatedMarketMakerPairs[pair] = value; emit SetAutomatedMarketMakerPair(pair, value); } function _transfer( address from, address to, uint256 amount ) internal override { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); if(amount == 0) { super._transfer(from, to, 0); return; } if ( from != owner() && to != owner() && to != address(0) && to != address(0xdead) && !swapping ){ if(!tradingActive){ require(_isExcludedFromFees[from] || _isExcludedFromFees[to], "Trading is not active."); } //when buy if (automatedMarketMakerPairs[from] && !_isExcludedMaxBuyTransactionAmount[to]) { require(amount + balanceOf(to) <= maxWallet, "Max wallet exceeded"); } } uint256 contractTokenBalance = balanceOf(address(this)); bool canSwap = contractTokenBalance >= swapTokensAtAmount; if( canSwap && swapEnabled && !swapping && !automatedMarketMakerPairs[from] && !_isExcludedFromFees[from] && !_isExcludedFromFees[to] ) { swapping = true; swapBack(); swapping = false; } bool takeFee = !swapping; bool walletToWallet = !automatedMarketMakerPairs[to] && !automatedMarketMakerPairs[from]; // if any account belongs to _isExcludedFromFee account then remove the fee if(_isExcludedFromFees[from] || _isExcludedFromFees[to] || walletToWallet) { takeFee = false; } uint256 fees = 0; // only take fees on buys/sells, do not take on wallet transfers if(takeFee){ // buy if (automatedMarketMakerPairs[from] && BuyTotalFees > 0){ fees = amount.mul(BuyTotalFees).div(100); tokensForLiquidity += fees * BuyLiquidityFee / BuyTotalFees; tokensForTax += fees * BuyTaxFee / BuyTotalFees; } // sell else if(automatedMarketMakerPairs[to] && SellTotalFees > 0) { fees = amount.mul(SellTotalFees).div(100); tokensForLiquidity += fees * SellLiquidityFee / SellTotalFees; tokensForTax += fees * SellTaxFee / SellTotalFees; } 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 address(marketingWallet), block.timestamp ); } function swapBack() private { uint256 contractBalance = balanceOf(address(this)); uint256 totalTokensToSwap = tokensForLiquidity + tokensForTax; bool success; if(contractBalance == 0 || totalTokensToSwap == 0) {return;} if(contractBalance > swapTokensAtAmount * 20){ contractBalance = swapTokensAtAmount * 20; } // Half 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 ethForTax = ethBalance.mul(tokensForTax).div(totalTokensToSwap-liquidityTokens); uint256 ethForLiquidity = ethBalance - ethForTax; if(liquidityTokens > 0){ addLiquidity(liquidityTokens, ethForLiquidity); emit SwapAndLiquify(amountToSwapForETH, ethForLiquidity, tokensForLiquidity); } (success,) = address(marketingWallet).call{value: address(this).balance}(""); tokensForLiquidity = 1; tokensForTax = 0; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"inputs":[],"name":"BuyInitialFees","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":"BuyTaxFee","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":"SellInitialFees","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":"SellTaxFee","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":"","type":"address"}],"name":"_isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxBuyTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxSellTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"enableTrading","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":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForTax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60c06040526000600960006101000a81548160ff0219169083151502179055506000600960016101000a81548160ff0219169083151502179055503480156200004757600080fd5b506040518060400160405280601281526020017f41206a65657465727320706172616469736500000000000000000000000000008152506040518060400160405280600581526020017f41454f4e530000000000000000000000000000000000000000000000000000008152508160039080519060200190620000cc92919062000c7c565b508060049080519060200190620000e592919062000c7c565b5050506000620000fa620009bc60201b60201c565b905080600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3506000737a250d5630b4cf539739df2c5dacb4c659f2488d9050600160156000737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600160166000737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b1580156200030557600080fd5b505afa1580156200031a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000340919062000d96565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015620003a357600080fd5b505afa158015620003b8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620003de919062000d96565b6040518363ffffffff1660e01b8152600401620003fd92919062000dd9565b602060405180830381600087803b1580156200041857600080fd5b505af11580156200042d573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000453919062000d96565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff168152505060016015600060a05173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555060016016600060a05173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506200054f60a0516001620009c460201b60201c565b600080600590506000806005905060006b033b2e3c9fd0803ce800000090506a108b2a2c2802909400000060088190555069d3c21bcecceda100000060078190555084600c8190555083600d81905550600d54600c54620005b1919062000e3f565b600b81905550600b54600a819055508260108190555081601181905550601154601054620005e0919062000e3f565b600f81905550600f54600e81905550737557e62d820084a83712a9c0aee81f00ecfd270c600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600160146000737557e62d820084a83712a9c0aee81f00ecfd270c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001601460003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555060016014600061dead73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600160156000737557e62d820084a83712a9c0aee81f00ecfd270c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001601560003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555060016015600061dead73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600160166000737557e62d820084a83712a9c0aee81f00ecfd270c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001601660003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555060016016600061dead73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550620009b0338262000a6560201b60201c565b50505050505062001024565b600033905090565b80601760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000ad8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000acf9062000efd565b60405180910390fd5b62000aec6000838362000c1460201b60201c565b62000b088160025462000c1960201b620012d61790919060201c565b60028190555062000b66816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205462000c1960201b620012d61790919060201c565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000c08919062000f30565b60405180910390a35050565b505050565b600080828462000c2a919062000e3f565b90508381101562000c72576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000c699062000f9d565b60405180910390fd5b8091505092915050565b82805462000c8a9062000fee565b90600052602060002090601f01602090048101928262000cae576000855562000cfa565b82601f1062000cc957805160ff191683800117855562000cfa565b8280016001018555821562000cfa579182015b8281111562000cf957825182559160200191906001019062000cdc565b5b50905062000d09919062000d0d565b5090565b5b8082111562000d2857600081600090555060010162000d0e565b5090565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000d5e8262000d31565b9050919050565b62000d708162000d51565b811462000d7c57600080fd5b50565b60008151905062000d908162000d65565b92915050565b60006020828403121562000daf5762000dae62000d2c565b5b600062000dbf8482850162000d7f565b91505092915050565b62000dd38162000d51565b82525050565b600060408201905062000df0600083018562000dc8565b62000dff602083018462000dc8565b9392505050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000e4c8262000e06565b915062000e598362000e06565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000e915762000e9062000e10565b5b828201905092915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000ee5601f8362000e9c565b915062000ef28262000ead565b602082019050919050565b6000602082019050818103600083015262000f188162000ed6565b9050919050565b62000f2a8162000e06565b82525050565b600060208201905062000f47600083018462000f1f565b92915050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b600062000f85601b8362000e9c565b915062000f928262000f4d565b602082019050919050565b6000602082019050818103600083015262000fb88162000f76565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200100757607f821691505b602082108114156200101e576200101d62000fbf565b5b50919050565b60805160a05161365b6200106d6000396000610b6e01526000818161099f015281816124df015281816125cf015281816125f60152818161269201526126b9015261365b6000f3fe6080604052600436106102135760003560e01c806382f87d2211610118578063d2943933116100a0578063e194c2b21161006f578063e194c2b2146107e0578063e2f456051461080b578063f2fde38b14610836578063f398d3041461085f578063f8b45b051461089c5761021a565b8063d294393314610710578063d64dc9bd1461073b578063dd62ed3e14610766578063e0bf7fd1146107a35761021a565b8063a457c2d7116100e7578063a457c2d714610603578063a9059cbb14610640578063b62496f51461067d578063bbc0c742146106ba578063cdbf7455146106e55761021a565b806382f87d221461056b5780638a8c523c146105965780638da5cb5b146105ad57806395d89b41146105d85761021a565b8063395093511161019b5780636ddd17131161016a5780636ddd1713146104965780636fc61774146104c157806370a08231146104ec578063715018a61461052957806375f0a874146105405761021a565b806339509351146103d857806340f979131461041557806349bd5a5e146104405780636d7adcad1461046b5761021a565b80631694505e116101e25780631694505e146102ef57806318160ddd1461031a5780631a8145bb1461034557806323b872dd14610370578063313ce567146103ad5761021a565b806303c525731461021f57806306fdde031461024a5780630855f25d14610275578063095ea7b3146102b25761021a565b3661021a57005b600080fd5b34801561022b57600080fd5b506102346108c7565b6040516102419190612813565b60405180910390f35b34801561025657600080fd5b5061025f6108cd565b60405161026c91906128c7565b60405180910390f35b34801561028157600080fd5b5061029c6004803603810190610297919061294c565b61095f565b6040516102a99190612994565b60405180910390f35b3480156102be57600080fd5b506102d960048036038101906102d491906129db565b61097f565b6040516102e69190612994565b60405180910390f35b3480156102fb57600080fd5b5061030461099d565b6040516103119190612a7a565b60405180910390f35b34801561032657600080fd5b5061032f6109c1565b60405161033c9190612813565b60405180910390f35b34801561035157600080fd5b5061035a6109cb565b6040516103679190612813565b60405180910390f35b34801561037c57600080fd5b5061039760048036038101906103929190612a95565b6109d1565b6040516103a49190612994565b60405180910390f35b3480156103b957600080fd5b506103c2610aaa565b6040516103cf9190612b04565b60405180910390f35b3480156103e457600080fd5b506103ff60048036038101906103fa91906129db565b610ab3565b60405161040c9190612994565b60405180910390f35b34801561042157600080fd5b5061042a610b66565b6040516104379190612813565b60405180910390f35b34801561044c57600080fd5b50610455610b6c565b6040516104629190612b2e565b60405180910390f35b34801561047757600080fd5b50610480610b90565b60405161048d9190612813565b60405180910390f35b3480156104a257600080fd5b506104ab610b96565b6040516104b89190612994565b60405180910390f35b3480156104cd57600080fd5b506104d6610ba9565b6040516104e39190612813565b60405180910390f35b3480156104f857600080fd5b50610513600480360381019061050e919061294c565b610baf565b6040516105209190612813565b60405180910390f35b34801561053557600080fd5b5061053e610bf7565b005b34801561054c57600080fd5b50610555610d4f565b6040516105629190612b2e565b60405180910390f35b34801561057757600080fd5b50610580610d75565b60405161058d9190612813565b60405180910390f35b3480156105a257600080fd5b506105ab610d7b565b005b3480156105b957600080fd5b506105c2610e4a565b6040516105cf9190612b2e565b60405180910390f35b3480156105e457600080fd5b506105ed610e74565b6040516105fa91906128c7565b60405180910390f35b34801561060f57600080fd5b5061062a600480360381019061062591906129db565b610f06565b6040516106379190612994565b60405180910390f35b34801561064c57600080fd5b50610667600480360381019061066291906129db565b610fd3565b6040516106749190612994565b60405180910390f35b34801561068957600080fd5b506106a4600480360381019061069f919061294c565b610ff1565b6040516106b19190612994565b60405180910390f35b3480156106c657600080fd5b506106cf611011565b6040516106dc9190612994565b60405180910390f35b3480156106f157600080fd5b506106fa611024565b6040516107079190612813565b60405180910390f35b34801561071c57600080fd5b5061072561102a565b6040516107329190612813565b60405180910390f35b34801561074757600080fd5b50610750611030565b60405161075d9190612813565b60405180910390f35b34801561077257600080fd5b5061078d60048036038101906107889190612b49565b611036565b60405161079a9190612813565b60405180910390f35b3480156107af57600080fd5b506107ca60048036038101906107c5919061294c565b6110bd565b6040516107d79190612994565b60405180910390f35b3480156107ec57600080fd5b506107f56110dd565b6040516108029190612813565b60405180910390f35b34801561081757600080fd5b506108206110e3565b60405161082d9190612813565b60405180910390f35b34801561084257600080fd5b5061085d6004803603810190610858919061294c565b6110e9565b005b34801561086b57600080fd5b506108866004803603810190610881919061294c565b6112b0565b6040516108939190612994565b60405180910390f35b3480156108a857600080fd5b506108b16112d0565b6040516108be9190612813565b60405180910390f35b600d5481565b6060600380546108dc90612bb8565b80601f016020809104026020016040519081016040528092919081815260200182805461090890612bb8565b80156109555780601f1061092a57610100808354040283529160200191610955565b820191906000526020600020905b81548152906001019060200180831161093857829003601f168201915b5050505050905090565b60166020528060005260406000206000915054906101000a900460ff1681565b600061099361098c611334565b848461133c565b6001905092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b60125481565b60006109de848484611507565b610a9f846109ea611334565b610a9a856040518060600160405280602881526020016135d960289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610a50611334565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611e279092919063ffffffff16565b61133c565b600190509392505050565b60006012905090565b6000610b5c610ac0611334565b84610b578560016000610ad1611334565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546112d690919063ffffffff16565b61133c565b6001905092915050565b600f5481565b7f000000000000000000000000000000000000000000000000000000000000000081565b60135481565b600960019054906101000a900460ff1681565b600c5481565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610bff611334565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610c8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8590612c36565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600b5481565b610d83611334565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610e12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0990612c36565b60405180910390fd5b6001600960006101000a81548160ff0219169083151502179055506001600960016101000a81548160ff021916908315150217905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610e8390612bb8565b80601f0160208091040260200160405190810160405280929190818152602001828054610eaf90612bb8565b8015610efc5780601f10610ed157610100808354040283529160200191610efc565b820191906000526020600020905b815481529060010190602001808311610edf57829003601f168201915b5050505050905090565b6000610fc9610f13611334565b84610fc4856040518060600160405280602581526020016136016025913960016000610f3d611334565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611e279092919063ffffffff16565b61133c565b6001905092915050565b6000610fe7610fe0611334565b8484611507565b6001905092915050565b60176020528060005260406000206000915054906101000a900460ff1681565b600960009054906101000a900460ff1681565b600e5481565b60105481565b600a5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60146020528060005260406000206000915054906101000a900460ff1681565b60115481565b60075481565b6110f1611334565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611180576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117790612c36565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156111f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e790612cc8565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60156020528060005260406000206000915054906101000a900460ff1681565b60085481565b60008082846112e59190612d17565b90508381101561132a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132190612db9565b60405180910390fd5b8091505092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156113ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a390612e4b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561141c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141390612edd565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516114fa9190612813565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611577576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156e90612f6f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115de90613001565b60405180910390fd5b6000811415611601576115fc83836000611e8b565b611e22565b611609610e4a565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156116775750611647610e4a565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156116b05750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156116ea575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156117035750600560149054906101000a900460ff16155b156118ff57600960009054906101000a900460ff166117fd57601460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806117bd5750601460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b6117fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f39061306d565b60405180910390fd5b5b601760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156118a05750601560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156118fe576008546118b183610baf565b826118bc9190612d17565b11156118fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f4906130d9565b60405180910390fd5b5b5b600061190a30610baf565b90506000600754821015905080801561192f5750600960019054906101000a900460ff165b80156119485750600560149054906101000a900460ff16155b801561199e5750601760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156119f45750601460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015611a4a5750601460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611a8e576001600560146101000a81548160ff021916908315150217905550611a72612120565b6000600560146101000a81548160ff0219169083151502179055505b6000600560149054906101000a900460ff161590506000601760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015611b495750601760008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b9050601460008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680611bec5750601460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b80611bf45750805b15611bfe57600091505b60008215611e1157601760008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015611c6157506000600b54115b15611cfb57611c8e6064611c80600b548961232c90919063ffffffff16565b6123a790919063ffffffff16565b9050600b54600c5482611ca191906130f9565b611cab9190613182565b60126000828254611cbc9190612d17565b92505081905550600b54600d5482611cd491906130f9565b611cde9190613182565b60136000828254611cef9190612d17565b92505081905550611ded565b601760008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015611d5657506000600f54115b15611dec57611d836064611d75600f548961232c90919063ffffffff16565b6123a790919063ffffffff16565b9050600f5460105482611d9691906130f9565b611da09190613182565b60126000828254611db19190612d17565b92505081905550600f5460115482611dc991906130f9565b611dd39190613182565b60136000828254611de49190612d17565b925050819055505b5b6000811115611e0257611e01883083611e8b565b5b8086611e0e91906131b3565b95505b611e1c888888611e8b565b50505050505b505050565b6000838311158290611e6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6691906128c7565b60405180910390fd5b5060008385611e7e91906131b3565b9050809150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611efb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef290612f6f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611f6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f6290613001565b60405180910390fd5b611f768383836123f1565b611fe1816040518060600160405280602681526020016135b3602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611e279092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612074816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546112d690919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516121139190612813565b60405180910390a3505050565b600061212b30610baf565b9050600060135460125461213f9190612d17565b90506000808314806121515750600082145b1561215e5750505061232a565b601460075461216d91906130f9565b83111561218657601460075461218391906130f9565b92505b60006002836012548661219991906130f9565b6121a39190613182565b6121ad9190613182565b905060006121c482866123f690919063ffffffff16565b905060004790506121d482612440565b60006121e982476123f690919063ffffffff16565b9050600061221f85886121fc91906131b3565b6122116013548561232c90919063ffffffff16565b6123a790919063ffffffff16565b90506000818361222f91906131b3565b9050600086111561228257612244868261268c565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618582601254604051612279939291906131e7565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16476040516122c89061324f565b60006040518083038185875af1925050503d8060008114612305576040519150601f19603f3d011682016040523d82523d6000602084013e61230a565b606091505b505080975050600160128190555060006013819055505050505050505050505b565b60008083141561233f57600090506123a1565b6000828461234d91906130f9565b905082848261235c9190613182565b1461239c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612393906132d6565b60405180910390fd5b809150505b92915050565b60006123e983836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612797565b905092915050565b505050565b600061243883836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611e27565b905092915050565b6000600267ffffffffffffffff81111561245d5761245c6132f6565b5b60405190808252806020026020018201604052801561248b5781602001602082028036833780820191505090505b50905030816000815181106124a3576124a2613325565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561254357600080fd5b505afa158015612557573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061257b9190613369565b8160018151811061258f5761258e613325565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506125f4307f00000000000000000000000000000000000000000000000000000000000000008461133c565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b815260040161265695949392919061348f565b600060405180830381600087803b15801561267057600080fd5b505af1158015612684573d6000803e3d6000fd5b505050505050565b6126b7307f00000000000000000000000000000000000000000000000000000000000000008461133c565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b815260040161273e969594939291906134e9565b6060604051808303818588803b15801561275757600080fd5b505af115801561276b573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190612790919061355f565b5050505050565b600080831182906127de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127d591906128c7565b60405180910390fd5b50600083856127ed9190613182565b9050809150509392505050565b6000819050919050565b61280d816127fa565b82525050565b60006020820190506128286000830184612804565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561286857808201518184015260208101905061284d565b83811115612877576000848401525b50505050565b6000601f19601f8301169050919050565b60006128998261282e565b6128a38185612839565b93506128b381856020860161284a565b6128bc8161287d565b840191505092915050565b600060208201905081810360008301526128e1818461288e565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612919826128ee565b9050919050565b6129298161290e565b811461293457600080fd5b50565b60008135905061294681612920565b92915050565b600060208284031215612962576129616128e9565b5b600061297084828501612937565b91505092915050565b60008115159050919050565b61298e81612979565b82525050565b60006020820190506129a96000830184612985565b92915050565b6129b8816127fa565b81146129c357600080fd5b50565b6000813590506129d5816129af565b92915050565b600080604083850312156129f2576129f16128e9565b5b6000612a0085828601612937565b9250506020612a11858286016129c6565b9150509250929050565b6000819050919050565b6000612a40612a3b612a36846128ee565b612a1b565b6128ee565b9050919050565b6000612a5282612a25565b9050919050565b6000612a6482612a47565b9050919050565b612a7481612a59565b82525050565b6000602082019050612a8f6000830184612a6b565b92915050565b600080600060608486031215612aae57612aad6128e9565b5b6000612abc86828701612937565b9350506020612acd86828701612937565b9250506040612ade868287016129c6565b9150509250925092565b600060ff82169050919050565b612afe81612ae8565b82525050565b6000602082019050612b196000830184612af5565b92915050565b612b288161290e565b82525050565b6000602082019050612b436000830184612b1f565b92915050565b60008060408385031215612b6057612b5f6128e9565b5b6000612b6e85828601612937565b9250506020612b7f85828601612937565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612bd057607f821691505b60208210811415612be457612be3612b89565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612c20602083612839565b9150612c2b82612bea565b602082019050919050565b60006020820190508181036000830152612c4f81612c13565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612cb2602683612839565b9150612cbd82612c56565b604082019050919050565b60006020820190508181036000830152612ce181612ca5565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612d22826127fa565b9150612d2d836127fa565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612d6257612d61612ce8565b5b828201905092915050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b6000612da3601b83612839565b9150612dae82612d6d565b602082019050919050565b60006020820190508181036000830152612dd281612d96565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612e35602483612839565b9150612e4082612dd9565b604082019050919050565b60006020820190508181036000830152612e6481612e28565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000612ec7602283612839565b9150612ed282612e6b565b604082019050919050565b60006020820190508181036000830152612ef681612eba565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000612f59602583612839565b9150612f6482612efd565b604082019050919050565b60006020820190508181036000830152612f8881612f4c565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000612feb602383612839565b9150612ff682612f8f565b604082019050919050565b6000602082019050818103600083015261301a81612fde565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b6000613057601683612839565b915061306282613021565b602082019050919050565b600060208201905081810360008301526130868161304a565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b60006130c3601383612839565b91506130ce8261308d565b602082019050919050565b600060208201905081810360008301526130f2816130b6565b9050919050565b6000613104826127fa565b915061310f836127fa565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561314857613147612ce8565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061318d826127fa565b9150613198836127fa565b9250826131a8576131a7613153565b5b828204905092915050565b60006131be826127fa565b91506131c9836127fa565b9250828210156131dc576131db612ce8565b5b828203905092915050565b60006060820190506131fc6000830186612804565b6132096020830185612804565b6132166040830184612804565b949350505050565b600081905092915050565b50565b600061323960008361321e565b915061324482613229565b600082019050919050565b600061325a8261322c565b9150819050919050565b7f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60008201527f7700000000000000000000000000000000000000000000000000000000000000602082015250565b60006132c0602183612839565b91506132cb82613264565b604082019050919050565b600060208201905081810360008301526132ef816132b3565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008151905061336381612920565b92915050565b60006020828403121561337f5761337e6128e9565b5b600061338d84828501613354565b91505092915050565b6000819050919050565b60006133bb6133b66133b184613396565b612a1b565b6127fa565b9050919050565b6133cb816133a0565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6134068161290e565b82525050565b600061341883836133fd565b60208301905092915050565b6000602082019050919050565b600061343c826133d1565b61344681856133dc565b9350613451836133ed565b8060005b83811015613482578151613469888261340c565b975061347483613424565b925050600181019050613455565b5085935050505092915050565b600060a0820190506134a46000830188612804565b6134b160208301876133c2565b81810360408301526134c38186613431565b90506134d26060830185612b1f565b6134df6080830184612804565b9695505050505050565b600060c0820190506134fe6000830189612b1f565b61350b6020830188612804565b61351860408301876133c2565b61352560608301866133c2565b6135326080830185612b1f565b61353f60a0830184612804565b979650505050505050565b600081519050613559816129af565b92915050565b600080600060608486031215613578576135776128e9565b5b60006135868682870161354a565b93505060206135978682870161354a565b92505060406135a88682870161354a565b915050925092509256fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220843f0254f5eaa8261d22a94f50c9d5506257e5818f5646758a4d6878a4944b2464736f6c63430008090033
Deployed Bytecode
0x6080604052600436106102135760003560e01c806382f87d2211610118578063d2943933116100a0578063e194c2b21161006f578063e194c2b2146107e0578063e2f456051461080b578063f2fde38b14610836578063f398d3041461085f578063f8b45b051461089c5761021a565b8063d294393314610710578063d64dc9bd1461073b578063dd62ed3e14610766578063e0bf7fd1146107a35761021a565b8063a457c2d7116100e7578063a457c2d714610603578063a9059cbb14610640578063b62496f51461067d578063bbc0c742146106ba578063cdbf7455146106e55761021a565b806382f87d221461056b5780638a8c523c146105965780638da5cb5b146105ad57806395d89b41146105d85761021a565b8063395093511161019b5780636ddd17131161016a5780636ddd1713146104965780636fc61774146104c157806370a08231146104ec578063715018a61461052957806375f0a874146105405761021a565b806339509351146103d857806340f979131461041557806349bd5a5e146104405780636d7adcad1461046b5761021a565b80631694505e116101e25780631694505e146102ef57806318160ddd1461031a5780631a8145bb1461034557806323b872dd14610370578063313ce567146103ad5761021a565b806303c525731461021f57806306fdde031461024a5780630855f25d14610275578063095ea7b3146102b25761021a565b3661021a57005b600080fd5b34801561022b57600080fd5b506102346108c7565b6040516102419190612813565b60405180910390f35b34801561025657600080fd5b5061025f6108cd565b60405161026c91906128c7565b60405180910390f35b34801561028157600080fd5b5061029c6004803603810190610297919061294c565b61095f565b6040516102a99190612994565b60405180910390f35b3480156102be57600080fd5b506102d960048036038101906102d491906129db565b61097f565b6040516102e69190612994565b60405180910390f35b3480156102fb57600080fd5b5061030461099d565b6040516103119190612a7a565b60405180910390f35b34801561032657600080fd5b5061032f6109c1565b60405161033c9190612813565b60405180910390f35b34801561035157600080fd5b5061035a6109cb565b6040516103679190612813565b60405180910390f35b34801561037c57600080fd5b5061039760048036038101906103929190612a95565b6109d1565b6040516103a49190612994565b60405180910390f35b3480156103b957600080fd5b506103c2610aaa565b6040516103cf9190612b04565b60405180910390f35b3480156103e457600080fd5b506103ff60048036038101906103fa91906129db565b610ab3565b60405161040c9190612994565b60405180910390f35b34801561042157600080fd5b5061042a610b66565b6040516104379190612813565b60405180910390f35b34801561044c57600080fd5b50610455610b6c565b6040516104629190612b2e565b60405180910390f35b34801561047757600080fd5b50610480610b90565b60405161048d9190612813565b60405180910390f35b3480156104a257600080fd5b506104ab610b96565b6040516104b89190612994565b60405180910390f35b3480156104cd57600080fd5b506104d6610ba9565b6040516104e39190612813565b60405180910390f35b3480156104f857600080fd5b50610513600480360381019061050e919061294c565b610baf565b6040516105209190612813565b60405180910390f35b34801561053557600080fd5b5061053e610bf7565b005b34801561054c57600080fd5b50610555610d4f565b6040516105629190612b2e565b60405180910390f35b34801561057757600080fd5b50610580610d75565b60405161058d9190612813565b60405180910390f35b3480156105a257600080fd5b506105ab610d7b565b005b3480156105b957600080fd5b506105c2610e4a565b6040516105cf9190612b2e565b60405180910390f35b3480156105e457600080fd5b506105ed610e74565b6040516105fa91906128c7565b60405180910390f35b34801561060f57600080fd5b5061062a600480360381019061062591906129db565b610f06565b6040516106379190612994565b60405180910390f35b34801561064c57600080fd5b50610667600480360381019061066291906129db565b610fd3565b6040516106749190612994565b60405180910390f35b34801561068957600080fd5b506106a4600480360381019061069f919061294c565b610ff1565b6040516106b19190612994565b60405180910390f35b3480156106c657600080fd5b506106cf611011565b6040516106dc9190612994565b60405180910390f35b3480156106f157600080fd5b506106fa611024565b6040516107079190612813565b60405180910390f35b34801561071c57600080fd5b5061072561102a565b6040516107329190612813565b60405180910390f35b34801561074757600080fd5b50610750611030565b60405161075d9190612813565b60405180910390f35b34801561077257600080fd5b5061078d60048036038101906107889190612b49565b611036565b60405161079a9190612813565b60405180910390f35b3480156107af57600080fd5b506107ca60048036038101906107c5919061294c565b6110bd565b6040516107d79190612994565b60405180910390f35b3480156107ec57600080fd5b506107f56110dd565b6040516108029190612813565b60405180910390f35b34801561081757600080fd5b506108206110e3565b60405161082d9190612813565b60405180910390f35b34801561084257600080fd5b5061085d6004803603810190610858919061294c565b6110e9565b005b34801561086b57600080fd5b506108866004803603810190610881919061294c565b6112b0565b6040516108939190612994565b60405180910390f35b3480156108a857600080fd5b506108b16112d0565b6040516108be9190612813565b60405180910390f35b600d5481565b6060600380546108dc90612bb8565b80601f016020809104026020016040519081016040528092919081815260200182805461090890612bb8565b80156109555780601f1061092a57610100808354040283529160200191610955565b820191906000526020600020905b81548152906001019060200180831161093857829003601f168201915b5050505050905090565b60166020528060005260406000206000915054906101000a900460ff1681565b600061099361098c611334565b848461133c565b6001905092915050565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b60125481565b60006109de848484611507565b610a9f846109ea611334565b610a9a856040518060600160405280602881526020016135d960289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610a50611334565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611e279092919063ffffffff16565b61133c565b600190509392505050565b60006012905090565b6000610b5c610ac0611334565b84610b578560016000610ad1611334565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546112d690919063ffffffff16565b61133c565b6001905092915050565b600f5481565b7f000000000000000000000000b4e1ac27bd984ec9a5afd467670efbe7568f710981565b60135481565b600960019054906101000a900460ff1681565b600c5481565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610bff611334565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610c8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8590612c36565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600b5481565b610d83611334565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610e12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0990612c36565b60405180910390fd5b6001600960006101000a81548160ff0219169083151502179055506001600960016101000a81548160ff021916908315150217905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610e8390612bb8565b80601f0160208091040260200160405190810160405280929190818152602001828054610eaf90612bb8565b8015610efc5780601f10610ed157610100808354040283529160200191610efc565b820191906000526020600020905b815481529060010190602001808311610edf57829003601f168201915b5050505050905090565b6000610fc9610f13611334565b84610fc4856040518060600160405280602581526020016136016025913960016000610f3d611334565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611e279092919063ffffffff16565b61133c565b6001905092915050565b6000610fe7610fe0611334565b8484611507565b6001905092915050565b60176020528060005260406000206000915054906101000a900460ff1681565b600960009054906101000a900460ff1681565b600e5481565b60105481565b600a5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60146020528060005260406000206000915054906101000a900460ff1681565b60115481565b60075481565b6110f1611334565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611180576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117790612c36565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156111f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e790612cc8565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60156020528060005260406000206000915054906101000a900460ff1681565b60085481565b60008082846112e59190612d17565b90508381101561132a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132190612db9565b60405180910390fd5b8091505092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156113ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a390612e4b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561141c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141390612edd565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516114fa9190612813565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611577576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156e90612f6f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115de90613001565b60405180910390fd5b6000811415611601576115fc83836000611e8b565b611e22565b611609610e4a565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156116775750611647610e4a565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156116b05750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156116ea575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156117035750600560149054906101000a900460ff16155b156118ff57600960009054906101000a900460ff166117fd57601460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806117bd5750601460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b6117fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f39061306d565b60405180910390fd5b5b601760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156118a05750601560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156118fe576008546118b183610baf565b826118bc9190612d17565b11156118fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f4906130d9565b60405180910390fd5b5b5b600061190a30610baf565b90506000600754821015905080801561192f5750600960019054906101000a900460ff165b80156119485750600560149054906101000a900460ff16155b801561199e5750601760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156119f45750601460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015611a4a5750601460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611a8e576001600560146101000a81548160ff021916908315150217905550611a72612120565b6000600560146101000a81548160ff0219169083151502179055505b6000600560149054906101000a900460ff161590506000601760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015611b495750601760008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b9050601460008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680611bec5750601460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b80611bf45750805b15611bfe57600091505b60008215611e1157601760008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015611c6157506000600b54115b15611cfb57611c8e6064611c80600b548961232c90919063ffffffff16565b6123a790919063ffffffff16565b9050600b54600c5482611ca191906130f9565b611cab9190613182565b60126000828254611cbc9190612d17565b92505081905550600b54600d5482611cd491906130f9565b611cde9190613182565b60136000828254611cef9190612d17565b92505081905550611ded565b601760008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015611d5657506000600f54115b15611dec57611d836064611d75600f548961232c90919063ffffffff16565b6123a790919063ffffffff16565b9050600f5460105482611d9691906130f9565b611da09190613182565b60126000828254611db19190612d17565b92505081905550600f5460115482611dc991906130f9565b611dd39190613182565b60136000828254611de49190612d17565b925050819055505b5b6000811115611e0257611e01883083611e8b565b5b8086611e0e91906131b3565b95505b611e1c888888611e8b565b50505050505b505050565b6000838311158290611e6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6691906128c7565b60405180910390fd5b5060008385611e7e91906131b3565b9050809150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611efb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef290612f6f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611f6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f6290613001565b60405180910390fd5b611f768383836123f1565b611fe1816040518060600160405280602681526020016135b3602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611e279092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612074816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546112d690919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516121139190612813565b60405180910390a3505050565b600061212b30610baf565b9050600060135460125461213f9190612d17565b90506000808314806121515750600082145b1561215e5750505061232a565b601460075461216d91906130f9565b83111561218657601460075461218391906130f9565b92505b60006002836012548661219991906130f9565b6121a39190613182565b6121ad9190613182565b905060006121c482866123f690919063ffffffff16565b905060004790506121d482612440565b60006121e982476123f690919063ffffffff16565b9050600061221f85886121fc91906131b3565b6122116013548561232c90919063ffffffff16565b6123a790919063ffffffff16565b90506000818361222f91906131b3565b9050600086111561228257612244868261268c565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618582601254604051612279939291906131e7565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16476040516122c89061324f565b60006040518083038185875af1925050503d8060008114612305576040519150601f19603f3d011682016040523d82523d6000602084013e61230a565b606091505b505080975050600160128190555060006013819055505050505050505050505b565b60008083141561233f57600090506123a1565b6000828461234d91906130f9565b905082848261235c9190613182565b1461239c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612393906132d6565b60405180910390fd5b809150505b92915050565b60006123e983836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612797565b905092915050565b505050565b600061243883836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611e27565b905092915050565b6000600267ffffffffffffffff81111561245d5761245c6132f6565b5b60405190808252806020026020018201604052801561248b5781602001602082028036833780820191505090505b50905030816000815181106124a3576124a2613325565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561254357600080fd5b505afa158015612557573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061257b9190613369565b8160018151811061258f5761258e613325565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506125f4307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d8461133c565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b815260040161265695949392919061348f565b600060405180830381600087803b15801561267057600080fd5b505af1158015612684573d6000803e3d6000fd5b505050505050565b6126b7307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d8461133c565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b815260040161273e969594939291906134e9565b6060604051808303818588803b15801561275757600080fd5b505af115801561276b573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190612790919061355f565b5050505050565b600080831182906127de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127d591906128c7565b60405180910390fd5b50600083856127ed9190613182565b9050809150509392505050565b6000819050919050565b61280d816127fa565b82525050565b60006020820190506128286000830184612804565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561286857808201518184015260208101905061284d565b83811115612877576000848401525b50505050565b6000601f19601f8301169050919050565b60006128998261282e565b6128a38185612839565b93506128b381856020860161284a565b6128bc8161287d565b840191505092915050565b600060208201905081810360008301526128e1818461288e565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612919826128ee565b9050919050565b6129298161290e565b811461293457600080fd5b50565b60008135905061294681612920565b92915050565b600060208284031215612962576129616128e9565b5b600061297084828501612937565b91505092915050565b60008115159050919050565b61298e81612979565b82525050565b60006020820190506129a96000830184612985565b92915050565b6129b8816127fa565b81146129c357600080fd5b50565b6000813590506129d5816129af565b92915050565b600080604083850312156129f2576129f16128e9565b5b6000612a0085828601612937565b9250506020612a11858286016129c6565b9150509250929050565b6000819050919050565b6000612a40612a3b612a36846128ee565b612a1b565b6128ee565b9050919050565b6000612a5282612a25565b9050919050565b6000612a6482612a47565b9050919050565b612a7481612a59565b82525050565b6000602082019050612a8f6000830184612a6b565b92915050565b600080600060608486031215612aae57612aad6128e9565b5b6000612abc86828701612937565b9350506020612acd86828701612937565b9250506040612ade868287016129c6565b9150509250925092565b600060ff82169050919050565b612afe81612ae8565b82525050565b6000602082019050612b196000830184612af5565b92915050565b612b288161290e565b82525050565b6000602082019050612b436000830184612b1f565b92915050565b60008060408385031215612b6057612b5f6128e9565b5b6000612b6e85828601612937565b9250506020612b7f85828601612937565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612bd057607f821691505b60208210811415612be457612be3612b89565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612c20602083612839565b9150612c2b82612bea565b602082019050919050565b60006020820190508181036000830152612c4f81612c13565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612cb2602683612839565b9150612cbd82612c56565b604082019050919050565b60006020820190508181036000830152612ce181612ca5565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612d22826127fa565b9150612d2d836127fa565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612d6257612d61612ce8565b5b828201905092915050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b6000612da3601b83612839565b9150612dae82612d6d565b602082019050919050565b60006020820190508181036000830152612dd281612d96565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612e35602483612839565b9150612e4082612dd9565b604082019050919050565b60006020820190508181036000830152612e6481612e28565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000612ec7602283612839565b9150612ed282612e6b565b604082019050919050565b60006020820190508181036000830152612ef681612eba565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000612f59602583612839565b9150612f6482612efd565b604082019050919050565b60006020820190508181036000830152612f8881612f4c565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000612feb602383612839565b9150612ff682612f8f565b604082019050919050565b6000602082019050818103600083015261301a81612fde565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b6000613057601683612839565b915061306282613021565b602082019050919050565b600060208201905081810360008301526130868161304a565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b60006130c3601383612839565b91506130ce8261308d565b602082019050919050565b600060208201905081810360008301526130f2816130b6565b9050919050565b6000613104826127fa565b915061310f836127fa565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561314857613147612ce8565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061318d826127fa565b9150613198836127fa565b9250826131a8576131a7613153565b5b828204905092915050565b60006131be826127fa565b91506131c9836127fa565b9250828210156131dc576131db612ce8565b5b828203905092915050565b60006060820190506131fc6000830186612804565b6132096020830185612804565b6132166040830184612804565b949350505050565b600081905092915050565b50565b600061323960008361321e565b915061324482613229565b600082019050919050565b600061325a8261322c565b9150819050919050565b7f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60008201527f7700000000000000000000000000000000000000000000000000000000000000602082015250565b60006132c0602183612839565b91506132cb82613264565b604082019050919050565b600060208201905081810360008301526132ef816132b3565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008151905061336381612920565b92915050565b60006020828403121561337f5761337e6128e9565b5b600061338d84828501613354565b91505092915050565b6000819050919050565b60006133bb6133b66133b184613396565b612a1b565b6127fa565b9050919050565b6133cb816133a0565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6134068161290e565b82525050565b600061341883836133fd565b60208301905092915050565b6000602082019050919050565b600061343c826133d1565b61344681856133dc565b9350613451836133ed565b8060005b83811015613482578151613469888261340c565b975061347483613424565b925050600181019050613455565b5085935050505092915050565b600060a0820190506134a46000830188612804565b6134b160208301876133c2565b81810360408301526134c38186613431565b90506134d26060830185612b1f565b6134df6080830184612804565b9695505050505050565b600060c0820190506134fe6000830189612b1f565b61350b6020830188612804565b61351860408301876133c2565b61352560608301866133c2565b6135326080830185612b1f565b61353f60a0830184612804565b979650505050505050565b600081519050613559816129af565b92915050565b600080600060608486031215613578576135776128e9565b5b60006135868682870161354a565b93505060206135978682870161354a565b92505060406135a88682870161354a565b915050925092509256fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220843f0254f5eaa8261d22a94f50c9d5506257e5818f5646758a4d6878a4944b2464736f6c63430008090033
Deployed Bytecode Sourcemap
28769:9745:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29287:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7621:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29763:68;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9795:169;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28845:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8744:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29467:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10447:355;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8585:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11212:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29358:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28903:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29507:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29140:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29250:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8916:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21369:148;;;;;;;;;;;;;:::i;:::-;;28982:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29216:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33094:112;;;;;;;;;;;;;:::i;:::-;;20725:79;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7841:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11934:269;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9257:175;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29990:58;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29100:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29321:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29393:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29180:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9496:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29630:52;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29431:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29026:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21673:244;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29689:67;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29066:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29287;;;;:::o;7621:100::-;7675:13;7708:5;7701:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7621:100;:::o;29763:68::-;;;;;;;;;;;;;;;;;;;;;;:::o;9795:169::-;9878:4;9895:39;9904:12;:10;:12::i;:::-;9918:7;9927:6;9895:8;:39::i;:::-;9952:4;9945:11;;9795:169;;;;:::o;28845:51::-;;;:::o;8744:108::-;8805:7;8832:12;;8825:19;;8744:108;:::o;29467:33::-;;;;:::o;10447:355::-;10587:4;10604:36;10614:6;10622:9;10633:6;10604:9;:36::i;:::-;10651:121;10660:6;10668:12;:10;:12::i;:::-;10682:89;10720:6;10682:89;;;;;;;;;;;;;;;;;:11;:19;10694:6;10682:19;;;;;;;;;;;;;;;:33;10702:12;:10;:12::i;:::-;10682:33;;;;;;;;;;;;;;;;:37;;:89;;;;;:::i;:::-;10651:8;:121::i;:::-;10790:4;10783:11;;10447:355;;;;;:::o;8585:93::-;8643:5;8668:2;8661:9;;8585:93;:::o;11212:218::-;11300:4;11317:83;11326:12;:10;:12::i;:::-;11340:7;11349:50;11388:10;11349:11;:25;11361:12;:10;:12::i;:::-;11349:25;;;;;;;;;;;;;;;:34;11375:7;11349:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;11317:8;:83::i;:::-;11418:4;11411:11;;11212:218;;;;:::o;29358:28::-;;;;:::o;28903:38::-;;;:::o;29507:27::-;;;;:::o;29140:31::-;;;;;;;;;;;;;:::o;29250:30::-;;;;:::o;8916:127::-;8990:7;9017:9;:18;9027:7;9017:18;;;;;;;;;;;;;;;;9010:25;;8916:127;;;:::o;21369:148::-;20948:12;:10;:12::i;:::-;20938:22;;:6;;;;;;;;;;;:22;;;20930:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;21476:1:::1;21439:40;;21460:6;;;;;;;;;;;21439:40;;;;;;;;;;;;21507:1;21490:6;;:19;;;;;;;;;;;;;;;;;;21369:148::o:0;28982:30::-;;;;;;;;;;;;;:::o;29216:27::-;;;;:::o;33094:112::-;20948:12;:10;:12::i;:::-;20938:22;;:6;;;;;;;;;;;:22;;;20930:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;33165:4:::1;33149:13;;:20;;;;;;;;;;;;;;;;;;33194:4;33180:11;;:18;;;;;;;;;;;;;;;;;;33094:112::o:0;20725:79::-;20763:7;20790:6;;;;;;;;;;;20783:13;;20725:79;:::o;7841:104::-;7897:13;7930:7;7923:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7841:104;:::o;11934:269::-;12027:4;12044:129;12053:12;:10;:12::i;:::-;12067:7;12076:96;12115:15;12076:96;;;;;;;;;;;;;;;;;:11;:25;12088:12;:10;:12::i;:::-;12076:25;;;;;;;;;;;;;;;:34;12102:7;12076:34;;;;;;;;;;;;;;;;:38;;:96;;;;;:::i;:::-;12044:8;:129::i;:::-;12191:4;12184:11;;11934:269;;;;:::o;9257:175::-;9343:4;9360:42;9370:12;:10;:12::i;:::-;9384:9;9395:6;9360:9;:42::i;:::-;9420:4;9413:11;;9257:175;;;;:::o;29990:58::-;;;;;;;;;;;;;;;;;;;;;;:::o;29100:33::-;;;;;;;;;;;;;:::o;29321:30::-;;;;:::o;29393:31::-;;;;:::o;29180:29::-;;;;:::o;9496:151::-;9585:7;9612:11;:18;9624:5;9612:18;;;;;;;;;;;;;;;:27;9631:7;9612:27;;;;;;;;;;;;;;;;9605:34;;9496:151;;;;:::o;29630:52::-;;;;;;;;;;;;;;;;;;;;;;:::o;29431:25::-;;;;:::o;29026:33::-;;;;:::o;21673:244::-;20948:12;:10;:12::i;:::-;20938:22;;:6;;;;;;;;;;;:22;;;20930:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;21782:1:::1;21762:22;;:8;:22;;;;21754:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;21872:8;21843:38;;21864:6;;;;;;;;;;;21843:38;;;;;;;;;;;;21901:8;21892:6;;:17;;;;;;;;;;;;;;;;;;21673:244:::0;:::o;29689:67::-;;;;;;;;;;;;;;;;;;;;;;:::o;29066:24::-;;;;:::o;15757:182::-;15815:7;15835:9;15851:1;15847;:5;;;;:::i;:::-;15835:17;;15876:1;15871;:6;;15863:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;15930:1;15923:8;;;15757:182;;;;:::o;223:98::-;276:7;303:10;296:17;;223:98;:::o;14376:381::-;14529:1;14512:19;;:5;:19;;;;14504:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14610:1;14591:21;;:7;:21;;;;14583:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14695:6;14665:11;:18;14677:5;14665:18;;;;;;;;;;;;;;;:27;14684:7;14665:27;;;;;;;;;;;;;;;:36;;;;14733:7;14717:32;;14726:5;14717:32;;;14742:6;14717:32;;;;;;:::i;:::-;;;;;;;;14376:381;;;:::o;33416:2624::-;33564:1;33548:18;;:4;:18;;;;33540:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;33641:1;33627:16;;:2;:16;;;;33619:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;33707:1;33697:6;:11;33694:92;;;33725:28;33741:4;33747:2;33751:1;33725:15;:28::i;:::-;33768:7;;33694:92;33825:7;:5;:7::i;:::-;33817:15;;:4;:15;;;;:45;;;;;33855:7;:5;:7::i;:::-;33849:13;;:2;:13;;;;33817:45;:78;;;;;33893:1;33879:16;;:2;:16;;;;33817:78;:116;;;;;33926:6;33912:21;;:2;:21;;;;33817:116;:142;;;;;33951:8;;;;;;;;;;;33950:9;33817:142;33799:564;;;33989:13;;;;;;;;;;;33985:140;;34030:19;:25;34050:4;34030:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;34059:19;:23;34079:2;34059:23;;;;;;;;;;;;;;;;;;;;;;;;;34030:52;34022:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;33985:140;34170:25;:31;34196:4;34170:31;;;;;;;;;;;;;;;;;;;;;;;;;:74;;;;;34206:34;:38;34241:2;34206:38;;;;;;;;;;;;;;;;;;;;;;;;;34205:39;34170:74;34166:186;;;34303:9;;34286:13;34296:2;34286:9;:13::i;:::-;34277:6;:22;;;;:::i;:::-;:35;;34269:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;34166:186;33799:564;34376:28;34407:24;34425:4;34407:9;:24::i;:::-;34376:55;;34445:12;34484:18;;34460:20;:42;;34445:57;;34534:7;:35;;;;;34558:11;;;;;;;;;;;34534:35;:61;;;;;34587:8;;;;;;;;;;;34586:9;34534:61;:110;;;;;34613:25;:31;34639:4;34613:31;;;;;;;;;;;;;;;;;;;;;;;;;34612:32;34534:110;:153;;;;;34662:19;:25;34682:4;34662:25;;;;;;;;;;;;;;;;;;;;;;;;;34661:26;34534:153;:194;;;;;34705:19;:23;34725:2;34705:23;;;;;;;;;;;;;;;;;;;;;;;;;34704:24;34534:194;34516:328;;;34766:4;34755:8;;:15;;;;;;;;;;;;;;;;;;34788:10;:8;:10::i;:::-;34827:5;34816:8;;:16;;;;;;;;;;;;;;;;;;34516:328;34857:12;34873:8;;;;;;;;;;;34872:9;34857:24;;34894:19;34917:25;:29;34943:2;34917:29;;;;;;;;;;;;;;;;;;;;;;;;;34916:30;:66;;;;;34951:25;:31;34977:4;34951:31;;;;;;;;;;;;;;;;;;;;;;;;;34950:32;34916:66;34894:88;;35081:19;:25;35101:4;35081:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;35110:19;:23;35130:2;35110:23;;;;;;;;;;;;;;;;;;;;;;;;;35081:52;:70;;;;35137:14;35081:70;35078:117;;;35178:5;35168:15;;35078:117;35208:12;35312:7;35309:677;;;35341:25;:31;35367:4;35341:31;;;;;;;;;;;;;;;;;;;;;;;;;:51;;;;;35391:1;35376:12;;:16;35341:51;35337:494;;;35410:33;35439:3;35410:24;35421:12;;35410:6;:10;;:24;;;;:::i;:::-;:28;;:33;;;;:::i;:::-;35403:40;;35497:12;;35479:15;;35472:4;:22;;;;:::i;:::-;:37;;;;:::i;:::-;35450:18;;:59;;;;;;;:::i;:::-;;;;;;;;35551:12;;35539:9;;35532:4;:16;;;;:::i;:::-;:31;;;;:::i;:::-;35516:12;;:47;;;;;;;:::i;:::-;;;;;;;;35337:494;;;35595:25;:29;35621:2;35595:29;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;;35644:1;35628:13;;:17;35595:50;35592:239;;;35665:34;35695:3;35665:25;35676:13;;35665:6;:10;;:25;;;;:::i;:::-;:29;;:34;;;;:::i;:::-;35658:41;;35754:13;;35735:16;;35728:4;:23;;;;:::i;:::-;:39;;;;:::i;:::-;35706:18;;:61;;;;;;;:::i;:::-;;;;;;;;35810:13;;35797:10;;35790:4;:17;;;;:::i;:::-;:33;;;;:::i;:::-;35774:12;;:49;;;;;;;:::i;:::-;;;;;;;;35592:239;35337:494;35860:1;35853:4;:8;35850:93;;;35885:42;35901:4;35915;35922;35885:15;:42::i;:::-;35850:93;35970:4;35960:14;;;;;:::i;:::-;;;35309:677;35999:33;36015:4;36021:2;36025:6;35999:15;:33::i;:::-;33529:2511;;;;;33416:2624;;;;:::o;16663:193::-;16749:7;16782:1;16777;:6;;16785:12;16769:29;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;16809:9;16825:1;16821;:5;;;;:::i;:::-;16809:17;;16847:1;16840:8;;;16663:193;;;;;:::o;12694:575::-;12852:1;12834:20;;:6;:20;;;;12826:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;12936:1;12915:23;;:9;:23;;;;12907:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;12992:47;13013:6;13021:9;13032:6;12992:20;:47::i;:::-;13073:71;13095:6;13073:71;;;;;;;;;;;;;;;;;:9;:17;13083:6;13073:17;;;;;;;;;;;;;;;;:21;;:71;;;;;:::i;:::-;13053:9;:17;13063:6;13053:17;;;;;;;;;;;;;;;:91;;;;13178:32;13203:6;13178:9;:20;13188:9;13178:20;;;;;;;;;;;;;;;;:24;;:32;;;;:::i;:::-;13155:9;:20;13165:9;13155:20;;;;;;;;;;;;;;;:55;;;;13243:9;13226:35;;13235:6;13226:35;;;13254:6;13226:35;;;;;;:::i;:::-;;;;;;;;12694:575;;;:::o;37195:1313::-;37234:23;37260:24;37278:4;37260:9;:24::i;:::-;37234:50;;37295:25;37344:12;;37323:18;;:33;;;;:::i;:::-;37295:61;;37367:12;37415:1;37396:15;:20;:46;;;;37441:1;37420:17;:22;37396:46;37393:60;;;37445:7;;;;;37393:60;37508:2;37487:18;;:23;;;;:::i;:::-;37469:15;:41;37466:111;;;37563:2;37542:18;;:23;;;;:::i;:::-;37524:41;;37466:111;37638:23;37723:1;37703:17;37682:18;;37664:15;:36;;;;:::i;:::-;:56;;;;:::i;:::-;:60;;;;:::i;:::-;37638:86;;37735:26;37764:36;37784:15;37764;:19;;:36;;;;:::i;:::-;37735:65;;37814:25;37842:21;37814:49;;37877:36;37894:18;37877:16;:36::i;:::-;37928:18;37949:44;37975:17;37949:21;:25;;:44;;;;:::i;:::-;37928:65;;38007:17;38027:67;38078:15;38060:17;:33;;;;:::i;:::-;38027:28;38042:12;;38027:10;:14;;:28;;;;:::i;:::-;:32;;:67;;;;:::i;:::-;38007:87;;38105:23;38144:9;38131:10;:22;;;;:::i;:::-;38105:48;;38191:1;38173:15;:19;38170:187;;;38208:46;38221:15;38238;38208:12;:46::i;:::-;38274:71;38289:18;38309:15;38326:18;;38274:71;;;;;;;;:::i;:::-;;;;;;;;38170:187;38386:15;;;;;;;;;;;38378:29;;38415:21;38378:63;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38365:76;;;;;38475:1;38454:18;:22;;;;38502:1;38487:12;:16;;;;37223:1285;;;;;;;;;37195:1313;:::o;17116:473::-;17174:7;17424:1;17419;:6;17415:47;;;17449:1;17442:8;;;;17415:47;17475:9;17491:1;17487;:5;;;;:::i;:::-;17475:17;;17520:1;17515;17511;:5;;;;:::i;:::-;:10;17503:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;17580:1;17573:8;;;17116:473;;;;;:::o;18066:132::-;18124:7;18151:39;18155:1;18158;18151:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;18144:46;;18066:132;;;;:::o;15361:125::-;;;;:::o;16223:136::-;16281:7;16308:43;16312:1;16315;16308:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;16301:50;;16223:136;;;;:::o;36049:597::-;36178:21;36216:1;36202:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36178:40;;36247:4;36229;36234:1;36229:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;36273:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;36263:4;36268:1;36263:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;36309:62;36326:4;36341:15;36359:11;36309:8;:62::i;:::-;36411:15;:66;;;36492:11;36518:1;36562:4;36589;36609:15;36411:224;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36104:542;36049:597;:::o;36655:531::-;36803:62;36820:4;36835:15;36853:11;36803:8;:62::i;:::-;36909:15;:31;;;36948:9;36981:4;37001:11;37027:1;37070;37121:15;;;;;;;;;;;37152;36909:269;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;36655:531;;:::o;18695:279::-;18781:7;18813:1;18809;:5;18816:12;18801:28;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;18840:9;18856:1;18852;:5;;;;:::i;:::-;18840:17;;18965:1;18958:8;;;18695:279;;;;;:::o;7:77:1:-;44:7;73:5;62:16;;7:77;;;:::o;90:118::-;177:24;195:5;177:24;:::i;:::-;172:3;165:37;90:118;;:::o;214:222::-;307:4;345:2;334:9;330:18;322:26;;358:71;426:1;415:9;411:17;402:6;358:71;:::i;:::-;214:222;;;;:::o;442:99::-;494:6;528:5;522:12;512:22;;442:99;;;:::o;547:169::-;631:11;665:6;660:3;653:19;705:4;700:3;696:14;681:29;;547:169;;;;:::o;722:307::-;790:1;800:113;814:6;811:1;808:13;800:113;;;899:1;894:3;890:11;884:18;880:1;875:3;871:11;864:39;836:2;833:1;829:10;824:15;;800:113;;;931:6;928:1;925:13;922:101;;;1011:1;1002:6;997:3;993:16;986:27;922:101;771:258;722:307;;;:::o;1035:102::-;1076:6;1127:2;1123:7;1118:2;1111:5;1107:14;1103:28;1093:38;;1035:102;;;:::o;1143:364::-;1231:3;1259:39;1292:5;1259:39;:::i;:::-;1314:71;1378:6;1373:3;1314:71;:::i;:::-;1307:78;;1394:52;1439:6;1434:3;1427:4;1420:5;1416:16;1394:52;:::i;:::-;1471:29;1493:6;1471:29;:::i;:::-;1466:3;1462:39;1455:46;;1235:272;1143:364;;;;:::o;1513:313::-;1626:4;1664:2;1653:9;1649:18;1641:26;;1713:9;1707:4;1703:20;1699:1;1688:9;1684:17;1677:47;1741:78;1814:4;1805:6;1741:78;:::i;:::-;1733:86;;1513:313;;;;:::o;1913:117::-;2022:1;2019;2012:12;2159:126;2196:7;2236:42;2229:5;2225:54;2214:65;;2159:126;;;:::o;2291:96::-;2328:7;2357:24;2375:5;2357:24;:::i;:::-;2346:35;;2291:96;;;:::o;2393:122::-;2466:24;2484:5;2466:24;:::i;:::-;2459:5;2456:35;2446:63;;2505:1;2502;2495:12;2446:63;2393:122;:::o;2521:139::-;2567:5;2605:6;2592:20;2583:29;;2621:33;2648:5;2621:33;:::i;:::-;2521:139;;;;:::o;2666:329::-;2725:6;2774:2;2762:9;2753:7;2749:23;2745:32;2742:119;;;2780:79;;:::i;:::-;2742:119;2900:1;2925:53;2970:7;2961:6;2950:9;2946:22;2925:53;:::i;:::-;2915:63;;2871:117;2666:329;;;;:::o;3001:90::-;3035:7;3078:5;3071:13;3064:21;3053:32;;3001:90;;;:::o;3097:109::-;3178:21;3193:5;3178:21;:::i;:::-;3173:3;3166:34;3097:109;;:::o;3212:210::-;3299:4;3337:2;3326:9;3322:18;3314:26;;3350:65;3412:1;3401:9;3397:17;3388:6;3350:65;:::i;:::-;3212:210;;;;:::o;3428:122::-;3501:24;3519:5;3501:24;:::i;:::-;3494:5;3491:35;3481:63;;3540:1;3537;3530:12;3481:63;3428:122;:::o;3556:139::-;3602:5;3640:6;3627:20;3618:29;;3656:33;3683:5;3656:33;:::i;:::-;3556:139;;;;:::o;3701:474::-;3769:6;3777;3826:2;3814:9;3805:7;3801:23;3797:32;3794:119;;;3832:79;;:::i;:::-;3794:119;3952:1;3977:53;4022:7;4013:6;4002:9;3998:22;3977:53;:::i;:::-;3967:63;;3923:117;4079:2;4105:53;4150:7;4141:6;4130:9;4126:22;4105:53;:::i;:::-;4095:63;;4050:118;3701:474;;;;;:::o;4181:60::-;4209:3;4230:5;4223:12;;4181:60;;;:::o;4247:142::-;4297:9;4330:53;4348:34;4357:24;4375:5;4357:24;:::i;:::-;4348:34;:::i;:::-;4330:53;:::i;:::-;4317:66;;4247:142;;;:::o;4395:126::-;4445:9;4478:37;4509:5;4478:37;:::i;:::-;4465:50;;4395:126;;;:::o;4527:153::-;4604:9;4637:37;4668:5;4637:37;:::i;:::-;4624:50;;4527:153;;;:::o;4686:185::-;4800:64;4858:5;4800:64;:::i;:::-;4795:3;4788:77;4686:185;;:::o;4877:276::-;4997:4;5035:2;5024:9;5020:18;5012:26;;5048:98;5143:1;5132:9;5128:17;5119:6;5048:98;:::i;:::-;4877:276;;;;:::o;5159:619::-;5236:6;5244;5252;5301:2;5289:9;5280:7;5276:23;5272:32;5269:119;;;5307:79;;:::i;:::-;5269:119;5427:1;5452:53;5497:7;5488:6;5477:9;5473:22;5452:53;:::i;:::-;5442:63;;5398:117;5554:2;5580:53;5625:7;5616:6;5605:9;5601:22;5580:53;:::i;:::-;5570:63;;5525:118;5682:2;5708:53;5753:7;5744:6;5733:9;5729:22;5708:53;:::i;:::-;5698:63;;5653:118;5159:619;;;;;:::o;5784:86::-;5819:7;5859:4;5852:5;5848:16;5837:27;;5784:86;;;:::o;5876:112::-;5959:22;5975:5;5959:22;:::i;:::-;5954:3;5947:35;5876:112;;:::o;5994:214::-;6083:4;6121:2;6110:9;6106:18;6098:26;;6134:67;6198:1;6187:9;6183:17;6174:6;6134:67;:::i;:::-;5994:214;;;;:::o;6214:118::-;6301:24;6319:5;6301:24;:::i;:::-;6296:3;6289:37;6214:118;;:::o;6338:222::-;6431:4;6469:2;6458:9;6454:18;6446:26;;6482:71;6550:1;6539:9;6535:17;6526:6;6482:71;:::i;:::-;6338:222;;;;:::o;6566:474::-;6634:6;6642;6691:2;6679:9;6670:7;6666:23;6662:32;6659:119;;;6697:79;;:::i;:::-;6659:119;6817:1;6842:53;6887:7;6878:6;6867:9;6863:22;6842:53;:::i;:::-;6832:63;;6788:117;6944:2;6970:53;7015:7;7006:6;6995:9;6991:22;6970:53;:::i;:::-;6960:63;;6915:118;6566:474;;;;;:::o;7046:180::-;7094:77;7091:1;7084:88;7191:4;7188:1;7181:15;7215:4;7212:1;7205:15;7232:320;7276:6;7313:1;7307:4;7303:12;7293:22;;7360:1;7354:4;7350:12;7381:18;7371:81;;7437:4;7429:6;7425:17;7415:27;;7371:81;7499:2;7491:6;7488:14;7468:18;7465:38;7462:84;;;7518:18;;:::i;:::-;7462:84;7283:269;7232:320;;;:::o;7558:182::-;7698:34;7694:1;7686:6;7682:14;7675:58;7558:182;:::o;7746:366::-;7888:3;7909:67;7973:2;7968:3;7909:67;:::i;:::-;7902:74;;7985:93;8074:3;7985:93;:::i;:::-;8103:2;8098:3;8094:12;8087:19;;7746:366;;;:::o;8118:419::-;8284:4;8322:2;8311:9;8307:18;8299:26;;8371:9;8365:4;8361:20;8357:1;8346:9;8342:17;8335:47;8399:131;8525:4;8399:131;:::i;:::-;8391:139;;8118:419;;;:::o;8543:225::-;8683:34;8679:1;8671:6;8667:14;8660:58;8752:8;8747:2;8739:6;8735:15;8728:33;8543:225;:::o;8774:366::-;8916:3;8937:67;9001:2;8996:3;8937:67;:::i;:::-;8930:74;;9013:93;9102:3;9013:93;:::i;:::-;9131:2;9126:3;9122:12;9115:19;;8774:366;;;:::o;9146:419::-;9312:4;9350:2;9339:9;9335:18;9327:26;;9399:9;9393:4;9389:20;9385:1;9374:9;9370:17;9363:47;9427:131;9553:4;9427:131;:::i;:::-;9419:139;;9146:419;;;:::o;9571:180::-;9619:77;9616:1;9609:88;9716:4;9713:1;9706:15;9740:4;9737:1;9730:15;9757:305;9797:3;9816:20;9834:1;9816:20;:::i;:::-;9811:25;;9850:20;9868:1;9850:20;:::i;:::-;9845:25;;10004:1;9936:66;9932:74;9929:1;9926:81;9923:107;;;10010:18;;:::i;:::-;9923:107;10054:1;10051;10047:9;10040:16;;9757:305;;;;:::o;10068:177::-;10208:29;10204:1;10196:6;10192:14;10185:53;10068:177;:::o;10251:366::-;10393:3;10414:67;10478:2;10473:3;10414:67;:::i;:::-;10407:74;;10490:93;10579:3;10490:93;:::i;:::-;10608:2;10603:3;10599:12;10592:19;;10251:366;;;:::o;10623:419::-;10789:4;10827:2;10816:9;10812:18;10804:26;;10876:9;10870:4;10866:20;10862:1;10851:9;10847:17;10840:47;10904:131;11030:4;10904:131;:::i;:::-;10896:139;;10623:419;;;:::o;11048:223::-;11188:34;11184:1;11176:6;11172:14;11165:58;11257:6;11252:2;11244:6;11240:15;11233:31;11048:223;:::o;11277:366::-;11419:3;11440:67;11504:2;11499:3;11440:67;:::i;:::-;11433:74;;11516:93;11605:3;11516:93;:::i;:::-;11634:2;11629:3;11625:12;11618:19;;11277:366;;;:::o;11649:419::-;11815:4;11853:2;11842:9;11838:18;11830:26;;11902:9;11896:4;11892:20;11888:1;11877:9;11873:17;11866:47;11930:131;12056:4;11930:131;:::i;:::-;11922:139;;11649:419;;;:::o;12074:221::-;12214:34;12210:1;12202:6;12198:14;12191:58;12283:4;12278:2;12270:6;12266:15;12259:29;12074:221;:::o;12301:366::-;12443:3;12464:67;12528:2;12523:3;12464:67;:::i;:::-;12457:74;;12540:93;12629:3;12540:93;:::i;:::-;12658:2;12653:3;12649:12;12642:19;;12301:366;;;:::o;12673:419::-;12839:4;12877:2;12866:9;12862:18;12854:26;;12926:9;12920:4;12916:20;12912:1;12901:9;12897:17;12890:47;12954:131;13080:4;12954:131;:::i;:::-;12946:139;;12673:419;;;:::o;13098:224::-;13238:34;13234:1;13226:6;13222:14;13215:58;13307:7;13302:2;13294:6;13290:15;13283:32;13098:224;:::o;13328:366::-;13470:3;13491:67;13555:2;13550:3;13491:67;:::i;:::-;13484:74;;13567:93;13656:3;13567:93;:::i;:::-;13685:2;13680:3;13676:12;13669:19;;13328:366;;;:::o;13700:419::-;13866:4;13904:2;13893:9;13889:18;13881:26;;13953:9;13947:4;13943:20;13939:1;13928:9;13924:17;13917:47;13981:131;14107:4;13981:131;:::i;:::-;13973:139;;13700:419;;;:::o;14125:222::-;14265:34;14261:1;14253:6;14249:14;14242:58;14334:5;14329:2;14321:6;14317:15;14310:30;14125:222;:::o;14353:366::-;14495:3;14516:67;14580:2;14575:3;14516:67;:::i;:::-;14509:74;;14592:93;14681:3;14592:93;:::i;:::-;14710:2;14705:3;14701:12;14694:19;;14353:366;;;:::o;14725:419::-;14891:4;14929:2;14918:9;14914:18;14906:26;;14978:9;14972:4;14968:20;14964:1;14953:9;14949:17;14942:47;15006:131;15132:4;15006:131;:::i;:::-;14998:139;;14725:419;;;:::o;15150:172::-;15290:24;15286:1;15278:6;15274:14;15267:48;15150:172;:::o;15328:366::-;15470:3;15491:67;15555:2;15550:3;15491:67;:::i;:::-;15484:74;;15567:93;15656:3;15567:93;:::i;:::-;15685:2;15680:3;15676:12;15669:19;;15328:366;;;:::o;15700:419::-;15866:4;15904:2;15893:9;15889:18;15881:26;;15953:9;15947:4;15943:20;15939:1;15928:9;15924:17;15917:47;15981:131;16107:4;15981:131;:::i;:::-;15973:139;;15700:419;;;:::o;16125:169::-;16265:21;16261:1;16253:6;16249:14;16242:45;16125:169;:::o;16300:366::-;16442:3;16463:67;16527:2;16522:3;16463:67;:::i;:::-;16456:74;;16539:93;16628:3;16539:93;:::i;:::-;16657:2;16652:3;16648:12;16641:19;;16300:366;;;:::o;16672:419::-;16838:4;16876:2;16865:9;16861:18;16853:26;;16925:9;16919:4;16915:20;16911:1;16900:9;16896:17;16889:47;16953:131;17079:4;16953:131;:::i;:::-;16945:139;;16672:419;;;:::o;17097:348::-;17137:7;17160:20;17178:1;17160:20;:::i;:::-;17155:25;;17194:20;17212:1;17194:20;:::i;:::-;17189:25;;17382:1;17314:66;17310:74;17307:1;17304:81;17299:1;17292:9;17285:17;17281:105;17278:131;;;17389:18;;:::i;:::-;17278:131;17437:1;17434;17430:9;17419:20;;17097:348;;;;:::o;17451:180::-;17499:77;17496:1;17489:88;17596:4;17593:1;17586:15;17620:4;17617:1;17610:15;17637:185;17677:1;17694:20;17712:1;17694:20;:::i;:::-;17689:25;;17728:20;17746:1;17728:20;:::i;:::-;17723:25;;17767:1;17757:35;;17772:18;;:::i;:::-;17757:35;17814:1;17811;17807:9;17802:14;;17637:185;;;;:::o;17828:191::-;17868:4;17888:20;17906:1;17888:20;:::i;:::-;17883:25;;17922:20;17940:1;17922:20;:::i;:::-;17917:25;;17961:1;17958;17955:8;17952:34;;;17966:18;;:::i;:::-;17952:34;18011:1;18008;18004:9;17996:17;;17828:191;;;;:::o;18025:442::-;18174:4;18212:2;18201:9;18197:18;18189:26;;18225:71;18293:1;18282:9;18278:17;18269:6;18225:71;:::i;:::-;18306:72;18374:2;18363:9;18359:18;18350:6;18306:72;:::i;:::-;18388;18456:2;18445:9;18441:18;18432:6;18388:72;:::i;:::-;18025:442;;;;;;:::o;18473:147::-;18574:11;18611:3;18596:18;;18473:147;;;;:::o;18626:114::-;;:::o;18746:398::-;18905:3;18926:83;19007:1;19002:3;18926:83;:::i;:::-;18919:90;;19018:93;19107:3;19018:93;:::i;:::-;19136:1;19131:3;19127:11;19120:18;;18746:398;;;:::o;19150:379::-;19334:3;19356:147;19499:3;19356:147;:::i;:::-;19349:154;;19520:3;19513:10;;19150:379;;;:::o;19535:220::-;19675:34;19671:1;19663:6;19659:14;19652:58;19744:3;19739:2;19731:6;19727:15;19720:28;19535:220;:::o;19761:366::-;19903:3;19924:67;19988:2;19983:3;19924:67;:::i;:::-;19917:74;;20000:93;20089:3;20000:93;:::i;:::-;20118:2;20113:3;20109:12;20102:19;;19761:366;;;:::o;20133:419::-;20299:4;20337:2;20326:9;20322:18;20314:26;;20386:9;20380:4;20376:20;20372:1;20361:9;20357:17;20350:47;20414:131;20540:4;20414:131;:::i;:::-;20406:139;;20133:419;;;:::o;20558:180::-;20606:77;20603:1;20596:88;20703:4;20700:1;20693:15;20727:4;20724:1;20717:15;20744:180;20792:77;20789:1;20782:88;20889:4;20886:1;20879:15;20913:4;20910:1;20903:15;20930:143;20987:5;21018:6;21012:13;21003:22;;21034:33;21061:5;21034:33;:::i;:::-;20930:143;;;;:::o;21079:351::-;21149:6;21198:2;21186:9;21177:7;21173:23;21169:32;21166:119;;;21204:79;;:::i;:::-;21166:119;21324:1;21349:64;21405:7;21396:6;21385:9;21381:22;21349:64;:::i;:::-;21339:74;;21295:128;21079:351;;;;:::o;21436:85::-;21481:7;21510:5;21499:16;;21436:85;;;:::o;21527:158::-;21585:9;21618:61;21636:42;21645:32;21671:5;21645:32;:::i;:::-;21636:42;:::i;:::-;21618:61;:::i;:::-;21605:74;;21527:158;;;:::o;21691:147::-;21786:45;21825:5;21786:45;:::i;:::-;21781:3;21774:58;21691:147;;:::o;21844:114::-;21911:6;21945:5;21939:12;21929:22;;21844:114;;;:::o;21964:184::-;22063:11;22097:6;22092:3;22085:19;22137:4;22132:3;22128:14;22113:29;;21964:184;;;;:::o;22154:132::-;22221:4;22244:3;22236:11;;22274:4;22269:3;22265:14;22257:22;;22154:132;;;:::o;22292:108::-;22369:24;22387:5;22369:24;:::i;:::-;22364:3;22357:37;22292:108;;:::o;22406:179::-;22475:10;22496:46;22538:3;22530:6;22496:46;:::i;:::-;22574:4;22569:3;22565:14;22551:28;;22406:179;;;;:::o;22591:113::-;22661:4;22693;22688:3;22684:14;22676:22;;22591:113;;;:::o;22740:732::-;22859:3;22888:54;22936:5;22888:54;:::i;:::-;22958:86;23037:6;23032:3;22958:86;:::i;:::-;22951:93;;23068:56;23118:5;23068:56;:::i;:::-;23147:7;23178:1;23163:284;23188:6;23185:1;23182:13;23163:284;;;23264:6;23258:13;23291:63;23350:3;23335:13;23291:63;:::i;:::-;23284:70;;23377:60;23430:6;23377:60;:::i;:::-;23367:70;;23223:224;23210:1;23207;23203:9;23198:14;;23163:284;;;23167:14;23463:3;23456:10;;22864:608;;;22740:732;;;;:::o;23478:831::-;23741:4;23779:3;23768:9;23764:19;23756:27;;23793:71;23861:1;23850:9;23846:17;23837:6;23793:71;:::i;:::-;23874:80;23950:2;23939:9;23935:18;23926:6;23874:80;:::i;:::-;24001:9;23995:4;23991:20;23986:2;23975:9;23971:18;23964:48;24029:108;24132:4;24123:6;24029:108;:::i;:::-;24021:116;;24147:72;24215:2;24204:9;24200:18;24191:6;24147:72;:::i;:::-;24229:73;24297:3;24286:9;24282:19;24273:6;24229:73;:::i;:::-;23478:831;;;;;;;;:::o;24315:807::-;24564:4;24602:3;24591:9;24587:19;24579:27;;24616:71;24684:1;24673:9;24669:17;24660:6;24616:71;:::i;:::-;24697:72;24765:2;24754:9;24750:18;24741:6;24697:72;:::i;:::-;24779:80;24855:2;24844:9;24840:18;24831:6;24779:80;:::i;:::-;24869;24945:2;24934:9;24930:18;24921:6;24869:80;:::i;:::-;24959:73;25027:3;25016:9;25012:19;25003:6;24959:73;:::i;:::-;25042;25110:3;25099:9;25095:19;25086:6;25042:73;:::i;:::-;24315:807;;;;;;;;;:::o;25128:143::-;25185:5;25216:6;25210:13;25201:22;;25232:33;25259:5;25232:33;:::i;:::-;25128:143;;;;:::o;25277:663::-;25365:6;25373;25381;25430:2;25418:9;25409:7;25405:23;25401:32;25398:119;;;25436:79;;:::i;:::-;25398:119;25556:1;25581:64;25637:7;25628:6;25617:9;25613:22;25581:64;:::i;:::-;25571:74;;25527:128;25694:2;25720:64;25776:7;25767:6;25756:9;25752:22;25720:64;:::i;:::-;25710:74;;25665:129;25833:2;25859:64;25915:7;25906:6;25895:9;25891:22;25859:64;:::i;:::-;25849:74;;25804:129;25277:663;;;;;:::o
Swarm Source
ipfs://843f0254f5eaa8261d22a94f50c9d5506257e5818f5646758a4d6878a4944b24
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.