Source Code
More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 36 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Approve | 16634020 | 1133 days ago | IN | 0 ETH | 0.00174819 | ||||
| Approve | 16631348 | 1133 days ago | IN | 0 ETH | 0.00153067 | ||||
| Approve | 16628570 | 1134 days ago | IN | 0 ETH | 0.00102133 | ||||
| Set Blacklist | 16628552 | 1134 days ago | IN | 0 ETH | 0.00105077 | ||||
| Update Sell Fees | 16628530 | 1134 days ago | IN | 0 ETH | 0.00112518 | ||||
| Approve | 16628526 | 1134 days ago | IN | 0 ETH | 0.00108141 | ||||
| Approve | 16628514 | 1134 days ago | IN | 0 ETH | 0.00132955 | ||||
| Approve | 16628506 | 1134 days ago | IN | 0 ETH | 0.00146509 | ||||
| Approve | 16628504 | 1134 days ago | IN | 0 ETH | 0.00122897 | ||||
| Approve | 16628490 | 1134 days ago | IN | 0 ETH | 0.00140591 | ||||
| Approve | 16628483 | 1134 days ago | IN | 0 ETH | 0.0013985 | ||||
| Approve | 16628444 | 1134 days ago | IN | 0 ETH | 0.00163411 | ||||
| Approve | 16628443 | 1134 days ago | IN | 0 ETH | 0.00201209 | ||||
| Approve | 16628440 | 1134 days ago | IN | 0 ETH | 0.0015757 | ||||
| Approve | 16628440 | 1134 days ago | IN | 0 ETH | 0.0015757 | ||||
| Approve | 16628432 | 1134 days ago | IN | 0 ETH | 0.00170801 | ||||
| Approve | 16628432 | 1134 days ago | IN | 0 ETH | 0.00170801 | ||||
| Approve | 16628429 | 1134 days ago | IN | 0 ETH | 0.00199566 | ||||
| Approve | 16628428 | 1134 days ago | IN | 0 ETH | 0.00195985 | ||||
| Approve | 16628427 | 1134 days ago | IN | 0 ETH | 0.0019699 | ||||
| Approve | 16628424 | 1134 days ago | IN | 0 ETH | 0.00206913 | ||||
| Approve | 16628424 | 1134 days ago | IN | 0 ETH | 0.00270671 | ||||
| Approve | 16628421 | 1134 days ago | IN | 0 ETH | 0.00233982 | ||||
| Approve | 16628418 | 1134 days ago | IN | 0 ETH | 0.00220453 | ||||
| Approve | 16628416 | 1134 days ago | IN | 0 ETH | 0.00175675 |
Latest 25 internal transactions (View All)
Advanced mode:
| Parent Transaction Hash | Method | Block |
From
|
|
To
|
||
|---|---|---|---|---|---|---|---|
| Transfer | 16628552 | 1134 days ago | 0.00334963 ETH | ||||
| Transfer | 16628552 | 1134 days ago | 0.00095543 ETH | ||||
| Add Liquidity ET... | 16628552 | 1134 days ago | 0.0023942 ETH | ||||
| Transfer | 16628552 | 1134 days ago | 0.0023942 ETH | ||||
| Transfer | 16628552 | 1134 days ago | 0.00718261 ETH | ||||
| Transfer | 16628534 | 1134 days ago | 0.00368515 ETH | ||||
| Transfer | 16628534 | 1134 days ago | 0.00105119 ETH | ||||
| Add Liquidity ET... | 16628534 | 1134 days ago | 0.00263396 ETH | ||||
| Transfer | 16628534 | 1134 days ago | 0.00263396 ETH | ||||
| Transfer | 16628534 | 1134 days ago | 0.00790188 ETH | ||||
| Transfer | 16628513 | 1134 days ago | 0.00369135 ETH | ||||
| Transfer | 16628513 | 1134 days ago | 0.00105295 ETH | ||||
| Add Liquidity ET... | 16628513 | 1134 days ago | 0.00263839 ETH | ||||
| Transfer | 16628513 | 1134 days ago | 0.00263839 ETH | ||||
| Transfer | 16628513 | 1134 days ago | 0.00791518 ETH | ||||
| Transfer | 16628513 | 1134 days ago | 0.01032373 ETH | ||||
| Transfer | 16628513 | 1134 days ago | 0.00295319 ETH | ||||
| Add Liquidity ET... | 16628513 | 1134 days ago | 0.00737053 ETH | ||||
| Transfer | 16628513 | 1134 days ago | 0.00737053 ETH | ||||
| Transfer | 16628513 | 1134 days ago | 0.02211161 ETH | ||||
| Transfer | 16628451 | 1134 days ago | 0.01511621 ETH | ||||
| Transfer | 16628451 | 1134 days ago | 0.00433426 ETH | ||||
| Add Liquidity ET... | 16628451 | 1134 days ago | 0.01078195 ETH | ||||
| Transfer | 16628451 | 1134 days ago | 0.01078195 ETH | ||||
| Transfer | 16628451 | 1134 days ago | 0.03234585 ETH |
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
WoofAI
Compiler Version
v0.8.9+commit.e5eed63a
Contract Source Code (Solidity)
/**
*Submitted for verification at Etherscan.io on 2023-02-14
*/
// WoofAI.app
// SPDX-License-Identifier: MIT
pragma solidity 0.8.9;
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes calldata) {
this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
return msg.data;
}
}
interface IUniswapV2Pair {
event Approval(address indexed owner, address indexed spender, uint value);
event Transfer(address indexed from, address indexed to, uint value);
function name() external pure returns (string memory);
function symbol() external pure returns (string memory);
function decimals() external pure returns (uint8);
function totalSupply() external view returns (uint);
function balanceOf(address owner) external view returns (uint);
function allowance(address owner, address spender) external view returns (uint);
function approve(address spender, uint value) external returns (bool);
function transfer(address to, uint value) external returns (bool);
function transferFrom(address from, address to, uint value) external returns (bool);
function DOMAIN_SEPARATOR() external view returns (bytes32);
function PERMIT_TYPEHASH() external pure returns (bytes32);
function nonces(address owner) external view returns (uint);
function permit(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s) external;
event Mint(address indexed sender, uint amount0, uint amount1);
event Burn(address indexed sender, uint amount0, uint amount1, address indexed to);
event Swap(
address indexed sender,
uint amount0In,
uint amount1In,
uint amount0Out,
uint amount1Out,
address indexed to
);
event Sync(uint112 reserve0, uint112 reserve1);
function MINIMUM_LIQUIDITY() external pure returns (uint);
function factory() external view returns (address);
function token0() external view returns (address);
function token1() external view returns (address);
function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast);
function price0CumulativeLast() external view returns (uint);
function price1CumulativeLast() external view returns (uint);
function kLast() external view returns (uint);
function mint(address to) external returns (uint liquidity);
function burn(address to) external returns (uint amount0, uint amount1);
function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external;
function skim(address to) external;
function sync() external;
function initialize(address, address) external;
}
interface IUniswapV2Factory {
event PairCreated(address indexed token0, address indexed token1, address pair, uint);
function feeTo() external view returns (address);
function feeToSetter() external view returns (address);
function getPair(address tokenA, address tokenB) external view returns (address pair);
function allPairs(uint) external view returns (address pair);
function allPairsLength() external view returns (uint);
function createPair(address tokenA, address tokenB) external returns (address pair);
function setFeeTo(address) external;
function setFeeToSetter(address) external;
}
interface IERC20 {
/**
* @dev Returns the amount of tokens in existence.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns the amount of tokens owned by `account`.
*/
function balanceOf(address account) external view returns (uint256);
/**
* @dev Moves `amount` tokens from the caller's account to `recipient`.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transfer(address recipient, uint256 amount) external returns (bool);
/**
* @dev Returns the remaining number of tokens that `spender` will be
* allowed to spend on behalf of `owner` through {transferFrom}. This is
* zero by default.
*
* This value changes when {approve} or {transferFrom} are called.
*/
function allowance(address owner, address spender) external view returns (uint256);
/**
* @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* IMPORTANT: Beware that changing an allowance with this method brings the risk
* that someone may use both the old and the new allowance by unfortunate
* transaction ordering. One possible solution to mitigate this race
* condition is to first reduce the spender's allowance to 0 and set the
* desired value afterwards:
* https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
*
* Emits an {Approval} event.
*/
function approve(address spender, uint256 amount) external returns (bool);
/**
* @dev Moves `amount` tokens from `sender` to `recipient` using the
* allowance mechanism. `amount` is then deducted from the caller's
* allowance.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transferFrom(
address sender,
address recipient,
uint256 amount
) external returns (bool);
/**
* @dev Emitted when `value` tokens are moved from one account (`from`) to
* another (`to`).
*
* Note that `value` may be zero.
*/
event Transfer(address indexed from, address indexed to, uint256 value);
/**
* @dev Emitted when the allowance of a `spender` for an `owner` is set by
* a call to {approve}. `value` is the new allowance.
*/
event Approval(address indexed owner, address indexed spender, uint256 value);
}
interface IERC20Metadata is IERC20 {
/**
* @dev Returns the name of the token.
*/
function name() external view returns (string memory);
/**
* @dev Returns the symbol of the token.
*/
function symbol() external view returns (string memory);
/**
* @dev Returns the decimals places of the token.
*/
function decimals() external view returns (uint8);
}
contract ERC20 is Context, IERC20, IERC20Metadata {
using SafeMath for uint256;
mapping(address => uint256) private _balances;
mapping(address => mapping(address => uint256)) private _allowances;
uint256 private _totalSupply;
string private _name;
string private _symbol;
/**
* @dev Sets the values for {name} and {symbol}.
*
* The default value of {decimals} is 18. To select a different value for
* {decimals} you should overload it.
*
* All two of these values are immutable: they can only be set once during
* construction.
*/
constructor(string memory name_, string memory symbol_) {
_name = name_;
_symbol = symbol_;
}
/**
* @dev Returns the name of the token.
*/
function name() public view virtual override returns (string memory) {
return _name;
}
/**
* @dev Returns the symbol of the token, usually a shorter version of the
* name.
*/
function symbol() public view virtual override returns (string memory) {
return _symbol;
}
/**
* @dev Returns the number of decimals used to get its user representation.
* For example, if `decimals` equals `2`, a balance of `505` tokens should
* be displayed to a user as `5,05` (`505 / 10 ** 2`).
*
* Tokens usually opt for a value of 18, imitating the relationship between
* Ether and Wei. This is the value {ERC20} uses, unless this function is
* overridden;
*
* NOTE: This information is only used for _display_ purposes: it in
* no way affects any of the arithmetic of the contract, including
* {IERC20-balanceOf} and {IERC20-transfer}.
*/
function decimals() public view virtual override returns (uint8) {
return 18;
}
/**
* @dev See {IERC20-totalSupply}.
*/
function totalSupply() public view virtual override returns (uint256) {
return _totalSupply;
}
/**
* @dev See {IERC20-balanceOf}.
*/
function balanceOf(address account) public view virtual override returns (uint256) {
return _balances[account];
}
/**
* @dev See {IERC20-transfer}.
*
* Requirements:
*
* - `recipient` cannot be the zero address.
* - the caller must have a balance of at least `amount`.
*/
function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
_transfer(_msgSender(), recipient, amount);
return true;
}
/**
* @dev See {IERC20-allowance}.
*/
function allowance(address owner, address spender) public view virtual override returns (uint256) {
return _allowances[owner][spender];
}
/**
* @dev See {IERC20-approve}.
*
* Requirements:
*
* - `spender` cannot be the zero address.
*/
function approve(address spender, uint256 amount) public virtual override returns (bool) {
_approve(_msgSender(), spender, amount);
return true;
}
/**
* @dev See {IERC20-transferFrom}.
*
* Emits an {Approval} event indicating the updated allowance. This is not
* required by the EIP. See the note at the beginning of {ERC20}.
*
* Requirements:
*
* - `sender` and `recipient` cannot be the zero address.
* - `sender` must have a balance of at least `amount`.
* - the caller must have allowance for ``sender``'s tokens of at least
* `amount`.
*/
function transferFrom(
address sender,
address recipient,
uint256 amount
) public virtual override returns (bool) {
_transfer(sender, recipient, amount);
_approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance"));
return true;
}
/**
* @dev Atomically increases the allowance granted to `spender` by the caller.
*
* This is an alternative to {approve} that can be used as a mitigation for
* problems described in {IERC20-approve}.
*
* Emits an {Approval} event indicating the updated allowance.
*
* Requirements:
*
* - `spender` cannot be the zero address.
*/
function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
_approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue));
return true;
}
/**
* @dev Atomically decreases the allowance granted to `spender` by the caller.
*
* This is an alternative to {approve} that can be used as a mitigation for
* problems described in {IERC20-approve}.
*
* Emits an {Approval} event indicating the updated allowance.
*
* Requirements:
*
* - `spender` cannot be the zero address.
* - `spender` must have allowance for the caller of at least
* `subtractedValue`.
*/
function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
_approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero"));
return true;
}
/**
* @dev Moves tokens `amount` from `sender` to `recipient`.
*
* This is internal function is equivalent to {transfer}, and can be used to
* e.g. implement automatic token fees, slashing mechanisms, etc.
*
* Emits a {Transfer} event.
*
* Requirements:
*
* - `sender` cannot be the zero address.
* - `recipient` cannot be the zero address.
* - `sender` must have a balance of at least `amount`.
*/
function _transfer(
address sender,
address recipient,
uint256 amount
) internal virtual {
require(sender != address(0), "ERC20: transfer from the zero address");
require(recipient != address(0), "ERC20: transfer to the zero address");
_beforeTokenTransfer(sender, recipient, amount);
_balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance");
_balances[recipient] = _balances[recipient].add(amount);
emit Transfer(sender, recipient, amount);
}
/** @dev Creates `amount` tokens and assigns them to `account`, increasing
* the total supply.
*
* Emits a {Transfer} event with `from` set to the zero address.
*
* Requirements:
*
* - `account` cannot be the zero address.
*/
function _mint(address account, uint256 amount) internal virtual {
require(account != address(0), "ERC20: mint to the zero address");
_beforeTokenTransfer(address(0), account, amount);
_totalSupply = _totalSupply.add(amount);
_balances[account] = _balances[account].add(amount);
emit Transfer(address(0), account, amount);
}
/**
* @dev Destroys `amount` tokens from `account`, reducing the
* total supply.
*
* Emits a {Transfer} event with `to` set to the zero address.
*
* Requirements:
*
* - `account` cannot be the zero address.
* - `account` must have at least `amount` tokens.
*/
function _burn(address account, uint256 amount) internal virtual {
require(account != address(0), "ERC20: burn from the zero address");
_beforeTokenTransfer(account, address(0), amount);
_balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance");
_totalSupply = _totalSupply.sub(amount);
emit Transfer(account, address(0), amount);
}
/**
* @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
*
* This internal function is equivalent to `approve`, and can be used to
* e.g. set automatic allowances for certain subsystems, etc.
*
* Emits an {Approval} event.
*
* Requirements:
*
* - `owner` cannot be the zero address.
* - `spender` cannot be the zero address.
*/
function _approve(
address owner,
address spender,
uint256 amount
) internal virtual {
require(owner != address(0), "ERC20: approve from the zero address");
require(spender != address(0), "ERC20: approve to the zero address");
_allowances[owner][spender] = amount;
emit Approval(owner, spender, amount);
}
/**
* @dev Hook that is called before any transfer of tokens. This includes
* minting and burning.
*
* Calling conditions:
*
* - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
* will be to transferred to `to`.
* - when `from` is zero, `amount` tokens will be minted for `to`.
* - when `to` is zero, `amount` of ``from``'s tokens will be burned.
* - `from` and `to` are never both zero.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _beforeTokenTransfer(
address from,
address to,
uint256 amount
) internal virtual {}
}
library SafeMath {
/**
* @dev Returns the addition of two unsigned integers, reverting on
* overflow.
*
* Counterpart to Solidity's `+` operator.
*
* Requirements:
*
* - Addition cannot overflow.
*/
function add(uint256 a, uint256 b) internal pure returns (uint256) {
uint256 c = a + b;
require(c >= a, "SafeMath: addition overflow");
return c;
}
/**
* @dev Returns the subtraction of two unsigned integers, reverting on
* overflow (when the result is negative).
*
* Counterpart to Solidity's `-` operator.
*
* Requirements:
*
* - Subtraction cannot overflow.
*/
function sub(uint256 a, uint256 b) internal pure returns (uint256) {
return sub(a, b, "SafeMath: subtraction overflow");
}
/**
* @dev Returns the subtraction of two unsigned integers, reverting with custom message on
* overflow (when the result is negative).
*
* Counterpart to Solidity's `-` operator.
*
* Requirements:
*
* - Subtraction cannot overflow.
*/
function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
require(b <= a, errorMessage);
uint256 c = a - b;
return c;
}
/**
* @dev Returns the multiplication of two unsigned integers, reverting on
* overflow.
*
* Counterpart to Solidity's `*` operator.
*
* Requirements:
*
* - Multiplication cannot overflow.
*/
function mul(uint256 a, uint256 b) internal pure returns (uint256) {
// Gas optimization: this is cheaper than requiring 'a' not being zero, but the
// benefit is lost if 'b' is also tested.
// See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
if (a == 0) {
return 0;
}
uint256 c = a * b;
require(c / a == b, "SafeMath: multiplication overflow");
return c;
}
/**
* @dev Returns the integer division of two unsigned integers. Reverts on
* division by zero. The result is rounded towards zero.
*
* Counterpart to Solidity's `/` operator. Note: this function uses a
* `revert` opcode (which leaves remaining gas untouched) while Solidity
* uses an invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function div(uint256 a, uint256 b) internal pure returns (uint256) {
return div(a, b, "SafeMath: division by zero");
}
/**
* @dev Returns the integer division of two unsigned integers. Reverts with custom message on
* division by zero. The result is rounded towards zero.
*
* Counterpart to Solidity's `/` operator. Note: this function uses a
* `revert` opcode (which leaves remaining gas untouched) while Solidity
* uses an invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
require(b > 0, errorMessage);
uint256 c = a / b;
// assert(a == b * c + a % b); // There is no case in which this doesn't hold
return c;
}
/**
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
* Reverts when dividing by zero.
*
* Counterpart to Solidity's `%` operator. This function uses a `revert`
* opcode (which leaves remaining gas untouched) while Solidity uses an
* invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function mod(uint256 a, uint256 b) internal pure returns (uint256) {
return mod(a, b, "SafeMath: modulo by zero");
}
/**
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
* Reverts with custom message when dividing by zero.
*
* Counterpart to Solidity's `%` operator. This function uses a `revert`
* opcode (which leaves remaining gas untouched) while Solidity uses an
* invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
require(b != 0, errorMessage);
return a % b;
}
}
contract Ownable is Context {
address private _owner;
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
/**
* @dev Initializes the contract setting the deployer as the initial owner.
*/
constructor () {
address msgSender = _msgSender();
_owner = msgSender;
emit OwnershipTransferred(address(0), msgSender);
}
/**
* @dev Returns the address of the current owner.
*/
function owner() public view returns (address) {
return _owner;
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
require(_owner == _msgSender(), "Ownable: caller is not the owner");
_;
}
/**
* @dev Leaves the contract without owner. It will not be possible to call
* `onlyOwner` functions anymore. Can only be called by the current owner.
*
* NOTE: Renouncing ownership will leave the contract without an owner,
* thereby removing any functionality that is only available to the owner.
*/
function renounceOwnership() public virtual onlyOwner {
emit OwnershipTransferred(_owner, address(0));
_owner = address(0);
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Can only be called by the current owner.
*/
function transferOwnership(address newOwner) public virtual onlyOwner {
require(newOwner != address(0), "Ownable: new owner is the zero address");
emit OwnershipTransferred(_owner, newOwner);
_owner = newOwner;
}
}
library SafeMathInt {
int256 private constant MIN_INT256 = int256(1) << 255;
int256 private constant MAX_INT256 = ~(int256(1) << 255);
/**
* @dev Multiplies two int256 variables and fails on overflow.
*/
function mul(int256 a, int256 b) internal pure returns (int256) {
int256 c = a * b;
// Detect overflow when multiplying MIN_INT256 with -1
require(c != MIN_INT256 || (a & MIN_INT256) != (b & MIN_INT256));
require((b == 0) || (c / b == a));
return c;
}
/**
* @dev Division of two int256 variables and fails on overflow.
*/
function div(int256 a, int256 b) internal pure returns (int256) {
// Prevent overflow when dividing MIN_INT256 by -1
require(b != -1 || a != MIN_INT256);
// Solidity already throws when dividing by 0.
return a / b;
}
/**
* @dev Subtracts two int256 variables and fails on overflow.
*/
function sub(int256 a, int256 b) internal pure returns (int256) {
int256 c = a - b;
require((b >= 0 && c <= a) || (b < 0 && c > a));
return c;
}
/**
* @dev Adds two int256 variables and fails on overflow.
*/
function add(int256 a, int256 b) internal pure returns (int256) {
int256 c = a + b;
require((b >= 0 && c >= a) || (b < 0 && c < a));
return c;
}
/**
* @dev Converts to absolute value, and fails on overflow.
*/
function abs(int256 a) internal pure returns (int256) {
require(a != MIN_INT256);
return a < 0 ? -a : a;
}
function toUint256Safe(int256 a) internal pure returns (uint256) {
require(a >= 0);
return uint256(a);
}
}
library SafeMathUint {
function toInt256Safe(uint256 a) internal pure returns (int256) {
int256 b = int256(a);
require(b >= 0);
return b;
}
}
interface IUniswapV2Router01 {
function factory() external pure returns (address);
function WETH() external pure returns (address);
function addLiquidity(
address tokenA,
address tokenB,
uint amountADesired,
uint amountBDesired,
uint amountAMin,
uint amountBMin,
address to,
uint deadline
) external returns (uint amountA, uint amountB, uint liquidity);
function addLiquidityETH(
address token,
uint amountTokenDesired,
uint amountTokenMin,
uint amountETHMin,
address to,
uint deadline
) external payable returns (uint amountToken, uint amountETH, uint liquidity);
function removeLiquidity(
address tokenA,
address tokenB,
uint liquidity,
uint amountAMin,
uint amountBMin,
address to,
uint deadline
) external returns (uint amountA, uint amountB);
function removeLiquidityETH(
address token,
uint liquidity,
uint amountTokenMin,
uint amountETHMin,
address to,
uint deadline
) external returns (uint amountToken, uint amountETH);
function removeLiquidityWithPermit(
address tokenA,
address tokenB,
uint liquidity,
uint amountAMin,
uint amountBMin,
address to,
uint deadline,
bool approveMax, uint8 v, bytes32 r, bytes32 s
) external returns (uint amountA, uint amountB);
function removeLiquidityETHWithPermit(
address token,
uint liquidity,
uint amountTokenMin,
uint amountETHMin,
address to,
uint deadline,
bool approveMax, uint8 v, bytes32 r, bytes32 s
) external returns (uint amountToken, uint amountETH);
function swapExactTokensForTokens(
uint amountIn,
uint amountOutMin,
address[] calldata path,
address to,
uint deadline
) external returns (uint[] memory amounts);
function swapTokensForExactTokens(
uint amountOut,
uint amountInMax,
address[] calldata path,
address to,
uint deadline
) external returns (uint[] memory amounts);
function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline)
external
payable
returns (uint[] memory amounts);
function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline)
external
returns (uint[] memory amounts);
function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline)
external
returns (uint[] memory amounts);
function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline)
external
payable
returns (uint[] memory amounts);
function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB);
function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut);
function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn);
function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts);
function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts);
}
interface IUniswapV2Router02 is IUniswapV2Router01 {
function removeLiquidityETHSupportingFeeOnTransferTokens(
address token,
uint liquidity,
uint amountTokenMin,
uint amountETHMin,
address to,
uint deadline
) external returns (uint amountETH);
function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
address token,
uint liquidity,
uint amountTokenMin,
uint amountETHMin,
address to,
uint deadline,
bool approveMax, uint8 v, bytes32 r, bytes32 s
) external returns (uint amountETH);
function swapExactTokensForTokensSupportingFeeOnTransferTokens(
uint amountIn,
uint amountOutMin,
address[] calldata path,
address to,
uint deadline
) external;
function swapExactETHForTokensSupportingFeeOnTransferTokens(
uint amountOutMin,
address[] calldata path,
address to,
uint deadline
) external payable;
function swapExactTokensForETHSupportingFeeOnTransferTokens(
uint amountIn,
uint amountOutMin,
address[] calldata path,
address to,
uint deadline
) external;
}
contract WoofAI is ERC20, Ownable {
using SafeMath for uint256;
IUniswapV2Router02 public immutable uniswapV2Router;
address public immutable uniswapV2Pair;
address public constant deadAddress = address(0xdead);
bool private swapping;
struct TaxWallets {
address reward;
address marketing;
}
struct Trade {
uint side;
uint256 amount;
uint256 timestamp;
}
uint256 public totalBurned = 0;
uint256 public swapTokensAtAmount;
mapping(address => Trade[]) public usersTrade;
mapping(address => bool) public isBlacklisted;
bool private blacklistEnabled = true;
bool public swapEnabled = true;
TaxWallets public _taxWallet = TaxWallets ({
reward: 0x98C63c43326f29c091ec01618e03c19629058a42,
marketing: 0x344572Bd23E027809618533918d56425E50a8991
});
uint256 public buyTotalFees;
uint256 public buyMarketingFee;
uint256 public buyLiquidityFee;
uint256 public buyRewardFee;
uint256 public sellTotalFees;
uint256 public sellMarketingFee;
uint256 public sellLiquidityFee;
uint256 public sellRewardFee;
uint256 public tokensForMarketing;
uint256 public tokensForLiquidity;
uint256 public tokensForReward;
/******************/
// exlcude from fees and max transaction amount
mapping (address => bool) private _isExcludedFromFees;
mapping (address => bool) public _isExcludedMaxTransactionAmount;
// store addresses that a automatic market maker pairs. Any transfer *to* these addresses
// could be subject to a maximum transfer amount
mapping (address => bool) public automatedMarketMakerPairs;
event EnableBlacklist(bool enabled);
event UpdateUniswapV2Router(address indexed newAddress, address indexed oldAddress);
event ExcludeFromFees(address indexed account, bool isExcluded);
event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value);
event MarketingWalletUpdated(address indexed newWallet, address indexed oldWallet);
event RewardWalletUpdated(address indexed newWallet, address indexed oldWallet);
event SwapAndLiquify(
uint256 tokensSwapped,
uint256 ethReceived,
uint256 tokensIntoLiquidity
);
event RewardTriggered(uint256 amount);
constructor() ERC20("WoofAI", "WAI") {
IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
excludeFromMaxTransaction(address(_uniswapV2Router), true);
uniswapV2Router = _uniswapV2Router;
uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this), _uniswapV2Router.WETH());
excludeFromMaxTransaction(address(uniswapV2Pair), true);
_setAutomatedMarketMakerPair(address(uniswapV2Pair), true);
uint256 _buyMarketingFee = 10;
uint256 _buyLiquidityFee = 10;
uint256 _buyRewardFee = 10;
uint256 _sellMarketingFee = 10;
uint256 _sellLiquidityFee = 10;
uint256 _sellRewardFee = 10;
uint256 totalSupply = 100 * 1e9 * 1e18;
swapTokensAtAmount = totalSupply * 5 / 10000; // 0.05% swap wallet
buyMarketingFee = _buyMarketingFee;
buyLiquidityFee = _buyLiquidityFee;
buyRewardFee = _buyRewardFee;
buyTotalFees = buyMarketingFee + buyLiquidityFee + buyRewardFee;
sellMarketingFee = _sellMarketingFee;
sellLiquidityFee = _sellLiquidityFee;
sellRewardFee = _sellRewardFee;
sellTotalFees = sellMarketingFee + sellLiquidityFee + sellRewardFee;
// exclude from paying fees or having max transaction amount
excludeFromFees(_msgSender(), true);
excludeFromFees(address(this), true);
excludeFromFees(address(0xdead), true);
excludeFromFees(_taxWallet.reward, true);
excludeFromFees(_taxWallet.marketing, true);
excludeFromMaxTransaction(_msgSender(), true);
excludeFromMaxTransaction(address(this), true);
excludeFromMaxTransaction(_taxWallet.reward, true);
excludeFromMaxTransaction(_taxWallet.marketing, true);
excludeFromMaxTransaction(address(0xdead), true);
/*
_mint is an internal function in ERC20.sol that is only called here,
and CANNOT be called ever again
*/
_mint(_msgSender(), totalSupply);
}
receive() external payable {
}
//Toggle blacklist on and off
function enableBlacklist(bool enabled) external onlyOwner {
blacklistEnabled = enabled;
emit EnableBlacklist(enabled);
}
//Set blacklist
function setBlacklist(address account, bool isBlacklist) external onlyOwner {
isBlacklisted[account] = isBlacklist;
}
// change the minimum amount of tokens to sell from fees
function updateSwapTokensAtAmount(uint256 newAmount) external onlyOwner {
require(newAmount >= totalSupply() * 1 / 100000, "Swap amount cannot be lower than 0.001% total supply.");
require(newAmount <= totalSupply() * 5 / 1000, "Swap amount cannot be higher than 0.5% total supply.");
swapTokensAtAmount = newAmount;
}
function excludeFromMaxTransaction(address updAds, bool isEx) public onlyOwner {
_isExcludedMaxTransactionAmount[updAds] = isEx;
}
// only use to disable contract sales if absolutely necessary (emergency use only)
function updateSwapEnabled(bool enabled) external onlyOwner(){
swapEnabled = enabled;
}
function updateBuyFees(uint256 _marketingFee, uint256 _liquidityFee, uint256 _rewardFee) external onlyOwner {
buyMarketingFee = _marketingFee;
buyLiquidityFee = _liquidityFee;
buyRewardFee = _rewardFee;
buyTotalFees = buyMarketingFee + buyLiquidityFee + buyRewardFee;
require(buyTotalFees <= 15, "Cannot set buyTotalFees higher than 15%");
}
function updateSellFees(uint256 _marketingFee, uint256 _liquidityFee, uint256 _rewardFee) external onlyOwner {
sellMarketingFee = _marketingFee;
sellLiquidityFee = _liquidityFee;
sellRewardFee = _rewardFee;
sellTotalFees = sellMarketingFee + sellLiquidityFee + sellRewardFee;
require(sellTotalFees <= 25, "Cannot set sellTotalFees higher than 25%");
}
function excludeFromFees(address account, bool excluded) public onlyOwner {
_isExcludedFromFees[account] = excluded;
emit ExcludeFromFees(account, excluded);
}
function recoverETH() external onlyOwner {
payable(msg.sender).transfer(address(this).balance);
}
function setAutomatedMarketMakerPair(address pair, bool value) public onlyOwner {
require(pair != uniswapV2Pair, "The pair cannot be removed from automatedMarketMakerPairs");
_setAutomatedMarketMakerPair(pair, value);
}
function _setAutomatedMarketMakerPair(address pair, bool value) private {
automatedMarketMakerPairs[pair] = value;
emit SetAutomatedMarketMakerPair(pair, value);
}
function updateMarketingWallet(address newWallet) external onlyOwner {
emit MarketingWalletUpdated(newWallet, _taxWallet.marketing);
excludeFromFees(_taxWallet.marketing, false);
excludeFromMaxTransaction(_taxWallet.marketing, false);
_taxWallet.marketing = newWallet;
excludeFromFees(_taxWallet.marketing, true);
excludeFromMaxTransaction(_taxWallet.marketing, true);
}
function updateRewardWallet(address newWallet) external onlyOwner {
emit RewardWalletUpdated(newWallet, _taxWallet.reward);
excludeFromFees(_taxWallet.reward, false);
excludeFromMaxTransaction(_taxWallet.reward, false);
_taxWallet.reward = newWallet;
excludeFromFees(_taxWallet.reward, true);
excludeFromMaxTransaction(_taxWallet.reward, true);
}
function isExcludedFromFees(address account) public view returns(bool) {
return _isExcludedFromFees[account];
}
function _transfer(
address from,
address to,
uint256 amount
) internal override {
require(from != address(0), "ERC20: transfer from the zero address");
require(to != address(0), "ERC20: transfer to the zero address");
if(amount == 0) {
super._transfer(from, to, 0);
return;
}
bool isBuy = automatedMarketMakerPairs[from];
bool isSell = automatedMarketMakerPairs[to];
if (blacklistEnabled && !_isExcludedMaxTransactionAmount[from]) {
require(!isBlacklisted[from] && !isBlacklisted[to], "User blacklisted");
}
uint256 contractTokenBalance = balanceOf(address(this));
bool canSwap = contractTokenBalance >= swapTokensAtAmount;
if(
canSwap &&
swapEnabled &&
!swapping &&
!isBuy &&
!_isExcludedFromFees[from] &&
!_isExcludedFromFees[to]
) {
swapping = true;
swapBack();
swapping = false;
}
bool takeFee = !swapping;
// if any account belongs to _isExcludedFromFee account then remove the fee
if(_isExcludedFromFees[from] || _isExcludedFromFees[to]) {
takeFee = false;
}
if (isSell || isBuy) {
Trade memory trade = Trade({
side: isSell ? 1 : 2,
amount: amount,
timestamp: block.timestamp
});
if (isSell) {
usersTrade[from].push(trade);
} else {
usersTrade[to].push(trade);
}
}
uint256 fees = 0;
// only take fees on buys/sells, do not take on wallet transfers
if(takeFee){
if(isBuy && buyTotalFees > 0) {
fees = amount.mul(buyTotalFees).div(100);
tokensForLiquidity += fees * buyLiquidityFee / buyTotalFees;
tokensForReward += fees * buyRewardFee / buyTotalFees;
tokensForMarketing += fees * buyMarketingFee / buyTotalFees;
}
// on sell
else if (isSell && sellTotalFees > 0){
fees = amount.mul(sellTotalFees).div(100);
tokensForLiquidity += fees * sellLiquidityFee / sellTotalFees;
tokensForReward += fees * sellRewardFee / sellTotalFees;
tokensForMarketing += fees * sellMarketingFee / 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
deadAddress,
block.timestamp
);
}
function swapBack() private {
uint256 contractBalance = balanceOf(address(this));
uint256 totalTokensToSwap = tokensForLiquidity + tokensForMarketing + tokensForReward;
if(contractBalance == 0 || totalTokensToSwap == 0) {return;}
// Halve the amount of liquidity tokens
uint256 liquidityTokens = contractBalance * tokensForLiquidity / totalTokensToSwap / 2;
uint256 amountToSwapForETH = contractBalance.sub(liquidityTokens);
uint256 initialETHBalance = address(this).balance;
swapTokensForEth(amountToSwapForETH);
uint256 ethBalance = address(this).balance.sub(initialETHBalance);
uint256 ethForMarketing = ethBalance.mul(tokensForMarketing).div(totalTokensToSwap);
uint256 ethForReward = ethBalance.mul(tokensForReward).div(totalTokensToSwap);
uint256 ethForLiquidity = ethBalance - ethForMarketing - ethForReward;
tokensForLiquidity = 0;
tokensForMarketing = 0;
tokensForReward = 0;
(bool success,) = address(_taxWallet.marketing).call{value: ethForMarketing}("");
if(liquidityTokens > 0 && ethForLiquidity > 0){
addLiquidity(liquidityTokens, ethForLiquidity);
emit SwapAndLiquify(amountToSwapForETH, ethForLiquidity, tokensForLiquidity);
}
// keep leftover ETH for reward
(success,) = address(_taxWallet.reward).call{value: address(this).balance}("");
}
function burn(uint256 amount) public virtual {
totalBurned += amount;
_burn(_msgSender(), amount);
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"enabled","type":"bool"}],"name":"EnableBlacklist","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":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"MarketingWalletUpdated","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":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"RewardTriggered","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"RewardWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_taxWallet","outputs":[{"internalType":"address","name":"reward","type":"address"},{"internalType":"address","name":"marketing","type":"address"}],"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":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyRewardFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"enableBlacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isBlacklisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"recoverETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellRewardFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"isBlacklist","type":"bool"}],"name":"setBlacklist","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":"tokensForMarketing","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForReward","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalBurned","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_rewardFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateRewardWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_rewardFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"usersTrade","outputs":[{"internalType":"uint256","name":"side","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"timestamp","type":"uint256"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]Contract Creation Code
60c060405260006006556001600a60006101000a81548160ff0219169083151502179055506001600a60016101000a81548160ff02191690831515021790555060405180604001604052807398c63c43326f29c091ec01618e03c19629058a4273ffffffffffffffffffffffffffffffffffffffff16815260200173344572bd23e027809618533918d56425e50a899173ffffffffffffffffffffffffffffffffffffffff16815250600b60008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160010160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050503480156200014757600080fd5b506040518060400160405280600681526020017f576f6f66414900000000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f57414900000000000000000000000000000000000000000000000000000000008152508160039080519060200190620001cc92919062000c6a565b508060049080519060200190620001e592919062000c6a565b5050506000620001fa6200076060201b60201c565b905080600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3506000737a250d5630b4cf539739df2c5dacb4c659f2488d9050620002c58160016200076860201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b1580156200034057600080fd5b505afa15801562000355573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200037b919062000d84565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015620003de57600080fd5b505afa158015620003f3573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000419919062000d84565b6040518363ffffffff1660e01b81526004016200043892919062000dc7565b602060405180830381600087803b1580156200045357600080fd5b505af115801562000468573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200048e919062000d84565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff1681525050620004d660a05160016200076860201b60201c565b620004eb60a05160016200086560201b60201c565b6000600a90506000600a90506000600a90506000600a90506000600a90506000600a905060006c01431e0fae6d7217caa0000000905061271060058262000533919062000e2d565b6200053f919062000ebd565b60078190555086600e8190555085600f8190555084601081905550601054600f54600e546200056f919062000ef5565b6200057b919062000ef5565b600d81905550836012819055508260138190555081601481905550601454601354601254620005ab919062000ef5565b620005b7919062000ef5565b601181905550620005df620005d16200076060201b60201c565b60016200090660201b60201c565b620005f23060016200090660201b60201c565b6200060761dead60016200090660201b60201c565b6200063f600b60000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200090660201b60201c565b62000677600b60010160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200090660201b60201c565b620006996200068b6200076060201b60201c565b60016200076860201b60201c565b620006ac3060016200076860201b60201c565b620006e4600b60000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200076860201b60201c565b6200071c600b60010160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200076860201b60201c565b6200073161dead60016200076860201b60201c565b62000752620007456200076060201b60201c565b8262000a5360201b60201c565b505050505050505062001186565b600033905090565b620007786200076060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146200080a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008019062000fb3565b60405180910390fd5b80601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b80601a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b620009166200076060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614620009a8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200099f9062000fb3565b60405180910390fd5b80601860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78260405162000a47919062000ff2565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000ac6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000abd906200105f565b60405180910390fd5b62000ada6000838362000c0260201b60201c565b62000af68160025462000c0760201b620024941790919060201c565b60028190555062000b54816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205462000c0760201b620024941790919060201c565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000bf6919062001092565b60405180910390a35050565b505050565b600080828462000c18919062000ef5565b90508381101562000c60576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000c5790620010ff565b60405180910390fd5b8091505092915050565b82805462000c789062001150565b90600052602060002090601f01602090048101928262000c9c576000855562000ce8565b82601f1062000cb757805160ff191683800117855562000ce8565b8280016001018555821562000ce8579182015b8281111562000ce757825182559160200191906001019062000cca565b5b50905062000cf7919062000cfb565b5090565b5b8082111562000d1657600081600090555060010162000cfc565b5090565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000d4c8262000d1f565b9050919050565b62000d5e8162000d3f565b811462000d6a57600080fd5b50565b60008151905062000d7e8162000d53565b92915050565b60006020828403121562000d9d5762000d9c62000d1a565b5b600062000dad8482850162000d6d565b91505092915050565b62000dc18162000d3f565b82525050565b600060408201905062000dde600083018562000db6565b62000ded602083018462000db6565b9392505050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000e3a8262000df4565b915062000e478362000df4565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000e835762000e8262000dfe565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600062000eca8262000df4565b915062000ed78362000df4565b92508262000eea5762000ee962000e8e565b5b828204905092915050565b600062000f028262000df4565b915062000f0f8362000df4565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000f475762000f4662000dfe565b5b828201905092915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062000f9b60208362000f52565b915062000fa88262000f63565b602082019050919050565b6000602082019050818103600083015262000fce8162000f8c565b9050919050565b60008115159050919050565b62000fec8162000fd5565b82525050565b600060208201905062001009600083018462000fe1565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062001047601f8362000f52565b915062001054826200100f565b602082019050919050565b600060208201905081810360008301526200107a8162001038565b9050919050565b6200108c8162000df4565b82525050565b6000602082019050620010a9600083018462001081565b92915050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b6000620010e7601b8362000f52565b9150620010f482620010af565b602082019050919050565b600060208201905081810360008301526200111a81620010d8565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200116957607f821691505b6020821081141562001180576200117f62001121565b5b50919050565b60805160a051614e87620011d66000396000818161116f0152611813015260008181610e82015281816138c7015281816139b7015281816139de01528181613a7a0152613aa10152614e876000f3fe6080604052600436106102cd5760003560e01c80638095d56411610175578063c0246668116100dc578063dd62ed3e11610095578063f11a24d31161006f578063f11a24d314610b1c578063f2fde38b14610b47578063f637434214610b70578063fe575a8714610b9b576102d4565b8063dd62ed3e14610a89578063de0aad5314610ac6578063e2f4560514610af1576102d4565b8063c02466681461098f578063c17b5b8c146109b8578063cc600f91146109e1578063d257b34f14610a0a578063d85ba06314610a33578063d89135cd14610a5e576102d4565b8063a002959c1161012e578063a002959c14610845578063a457c2d714610870578063a7d8fb46146108ad578063a9059cbb146108ec578063aacebbe314610929578063b62496f514610952576102d4565b80638095d564146107495780638da5cb5b14610772578063921369131461079d578063924de9b7146107c857806395d89b41146107f15780639a7a23d61461081c576102d4565b80632aea52ab116102345780636a486a8e116101ed57806370a08231116101c757806370a08231146106a1578063715018a6146106de5780637571336a146106f55780637bce5a041461071e576102d4565b80636a486a8e1461061f5780636ddd17131461064a5780636f268a9914610675576102d4565b80632aea52ab146104fd578063313ce56714610526578063395093511461055157806342966c681461058e57806349bd5a5e146105b75780634fbee193146105e2576102d4565b80631694505e116102865780631694505e146103e957806318160ddd146104145780631a8145bb1461043f5780631f3fed8f1461046a57806323b872dd1461049557806327c8f835146104d2576102d4565b80630614117a146102d957806306fdde03146102f0578063095ea7b31461031b5780630cfe2f3f1461035857806310d5de5314610383578063153b0d1e146103c0576102d4565b366102d457005b600080fd5b3480156102e557600080fd5b506102ee610bd8565b005b3480156102fc57600080fd5b50610305610cb8565b6040516103129190613c5b565b60405180910390f35b34801561032757600080fd5b50610342600480360381019061033d9190613d16565b610d4a565b60405161034f9190613d71565b60405180910390f35b34801561036457600080fd5b5061036d610d68565b60405161037a9190613d9b565b60405180910390f35b34801561038f57600080fd5b506103aa60048036038101906103a59190613db6565b610d6e565b6040516103b79190613d71565b60405180910390f35b3480156103cc57600080fd5b506103e760048036038101906103e29190613e0f565b610d8e565b005b3480156103f557600080fd5b506103fe610e80565b60405161040b9190613eae565b60405180910390f35b34801561042057600080fd5b50610429610ea4565b6040516104369190613d9b565b60405180910390f35b34801561044b57600080fd5b50610454610eae565b6040516104619190613d9b565b60405180910390f35b34801561047657600080fd5b5061047f610eb4565b60405161048c9190613d9b565b60405180910390f35b3480156104a157600080fd5b506104bc60048036038101906104b79190613ec9565b610eba565b6040516104c99190613d71565b60405180910390f35b3480156104de57600080fd5b506104e7610f93565b6040516104f49190613f2b565b60405180910390f35b34801561050957600080fd5b50610524600480360381019061051f9190613f46565b610f99565b005b34801561053257600080fd5b5061053b611084565b6040516105489190613f8f565b60405180910390f35b34801561055d57600080fd5b5061057860048036038101906105739190613d16565b61108d565b6040516105859190613d71565b60405180910390f35b34801561059a57600080fd5b506105b560048036038101906105b09190613faa565b611140565b005b3480156105c357600080fd5b506105cc61116d565b6040516105d99190613f2b565b60405180910390f35b3480156105ee57600080fd5b5061060960048036038101906106049190613db6565b611191565b6040516106169190613d71565b60405180910390f35b34801561062b57600080fd5b506106346111e7565b6040516106419190613d9b565b60405180910390f35b34801561065657600080fd5b5061065f6111ed565b60405161066c9190613d71565b60405180910390f35b34801561068157600080fd5b5061068a611200565b604051610698929190613fd7565b60405180910390f35b3480156106ad57600080fd5b506106c860048036038101906106c39190613db6565b611252565b6040516106d59190613d9b565b60405180910390f35b3480156106ea57600080fd5b506106f361129a565b005b34801561070157600080fd5b5061071c60048036038101906107179190613e0f565b6113f2565b005b34801561072a57600080fd5b506107336114e4565b6040516107409190613d9b565b60405180910390f35b34801561075557600080fd5b50610770600480360381019061076b9190614000565b6114ea565b005b34801561077e57600080fd5b50610787611604565b6040516107949190613f2b565b60405180910390f35b3480156107a957600080fd5b506107b261162e565b6040516107bf9190613d9b565b60405180910390f35b3480156107d457600080fd5b506107ef60048036038101906107ea9190613f46565b611634565b005b3480156107fd57600080fd5b506108066116e8565b6040516108139190613c5b565b60405180910390f35b34801561082857600080fd5b50610843600480360381019061083e9190613e0f565b61177a565b005b34801561085157600080fd5b5061085a6118ae565b6040516108679190613d9b565b60405180910390f35b34801561087c57600080fd5b5061089760048036038101906108929190613d16565b6118b4565b6040516108a49190613d71565b60405180910390f35b3480156108b957600080fd5b506108d460048036038101906108cf9190613d16565b611981565b6040516108e393929190614053565b60405180910390f35b3480156108f857600080fd5b50610913600480360381019061090e9190613d16565b6119c8565b6040516109209190613d71565b60405180910390f35b34801561093557600080fd5b50610950600480360381019061094b9190613db6565b6119e6565b005b34801561095e57600080fd5b5061097960048036038101906109749190613db6565b611c03565b6040516109869190613d71565b60405180910390f35b34801561099b57600080fd5b506109b660048036038101906109b19190613e0f565b611c23565b005b3480156109c457600080fd5b506109df60048036038101906109da9190614000565b611d63565b005b3480156109ed57600080fd5b50610a086004803603810190610a039190613db6565b611e7d565b005b348015610a1657600080fd5b50610a316004803603810190610a2c9190613faa565b61209a565b005b348015610a3f57600080fd5b50610a48612202565b604051610a559190613d9b565b60405180910390f35b348015610a6a57600080fd5b50610a73612208565b604051610a809190613d9b565b60405180910390f35b348015610a9557600080fd5b50610ab06004803603810190610aab919061408a565b61220e565b604051610abd9190613d9b565b60405180910390f35b348015610ad257600080fd5b50610adb612295565b604051610ae89190613d9b565b60405180910390f35b348015610afd57600080fd5b50610b0661229b565b604051610b139190613d9b565b60405180910390f35b348015610b2857600080fd5b50610b316122a1565b604051610b3e9190613d9b565b60405180910390f35b348015610b5357600080fd5b50610b6e6004803603810190610b699190613db6565b6122a7565b005b348015610b7c57600080fd5b50610b8561246e565b604051610b929190613d9b565b60405180910390f35b348015610ba757600080fd5b50610bc26004803603810190610bbd9190613db6565b612474565b604051610bcf9190613d71565b60405180910390f35b610be06124f2565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610c6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6690614116565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610cb5573d6000803e3d6000fd5b50565b606060038054610cc790614165565b80601f0160208091040260200160405190810160405280929190818152602001828054610cf390614165565b8015610d405780601f10610d1557610100808354040283529160200191610d40565b820191906000526020600020905b815481529060010190602001808311610d2357829003601f168201915b5050505050905090565b6000610d5e610d576124f2565b84846124fa565b6001905092915050565b60105481565b60196020528060005260406000206000915054906101000a900460ff1681565b610d966124f2565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610e25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1c90614116565b60405180910390fd5b80600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b60165481565b60155481565b6000610ec78484846126c5565b610f8884610ed36124f2565b610f8385604051806060016040528060288152602001614e0560289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610f396124f2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612f099092919063ffffffff16565b6124fa565b600190509392505050565b61dead81565b610fa16124f2565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611030576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102790614116565b60405180910390fd5b80600a60006101000a81548160ff0219169083151502179055507f6348668a830a74027e9848759e660a45c2afe456096e26d17cc84eb20509c9e7816040516110799190613d71565b60405180910390a150565b60006012905090565b600061113661109a6124f2565b8461113185600160006110ab6124f2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461249490919063ffffffff16565b6124fa565b6001905092915050565b806006600082825461115291906141c6565b9250508190555061116a6111646124f2565b82612f6d565b50565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000601860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60115481565b600a60019054906101000a900460ff1681565b600b8060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16908060010160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905082565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6112a26124f2565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611331576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132890614116565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6113fa6124f2565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611489576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148090614116565b60405180910390fd5b80601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600e5481565b6114f26124f2565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611581576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157890614116565b60405180910390fd5b82600e8190555081600f8190555080601081905550601054600f54600e546115a991906141c6565b6115b391906141c6565b600d81905550600f600d5411156115ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f69061428e565b60405180910390fd5b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60125481565b61163c6124f2565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146116cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c290614116565b60405180910390fd5b80600a60016101000a81548160ff02191690831515021790555050565b6060600480546116f790614165565b80601f016020809104026020016040519081016040528092919081815260200182805461172390614165565b80156117705780601f1061174557610100808354040283529160200191611770565b820191906000526020600020905b81548152906001019060200180831161175357829003601f168201915b5050505050905090565b6117826124f2565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611811576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180890614116565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156118a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189790614320565b60405180910390fd5b6118aa828261311b565b5050565b60175481565b60006119776118c16124f2565b8461197285604051806060016040528060258152602001614e2d60259139600160006118eb6124f2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612f099092919063ffffffff16565b6124fa565b6001905092915050565b6008602052816000526040600020818154811061199d57600080fd5b9060005260206000209060030201600091509150508060000154908060010154908060020154905083565b60006119dc6119d56124f2565b84846126c5565b6001905092915050565b6119ee6124f2565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611a7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7490614116565b60405180910390fd5b600b60010160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8616c7a330e3cf61290821331585511f1e2778171e2b005fb5ec60cfe874dc6760405160405180910390a3611b2c600b60010160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166000611c23565b611b5c600b60010160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660006113f2565b80600b60010160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550611bd0600b60010160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166001611c23565b611c00600b60010160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016113f2565b50565b601a6020528060005260406000206000915054906101000a900460ff1681565b611c2b6124f2565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611cba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cb190614116565b60405180910390fd5b80601860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611d579190613d71565b60405180910390a25050565b611d6b6124f2565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611dfa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611df190614116565b60405180910390fd5b826012819055508160138190555080601481905550601454601354601254611e2291906141c6565b611e2c91906141c6565b60118190555060196011541115611e78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6f906143b2565b60405180910390fd5b505050565b611e856124f2565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611f14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f0b90614116565b60405180910390fd5b600b60000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f53a789b033e632f89772129774e70aa81a1a130a54c0297cdbb4585dfcfd9a7f60405160405180910390a3611fc3600b60000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166000611c23565b611ff3600b60000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660006113f2565b80600b60000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550612067600b60000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166001611c23565b612097600b60000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016113f2565b50565b6120a26124f2565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612131576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161212890614116565b60405180910390fd5b620186a0600161213f610ea4565b61214991906143d2565b612153919061445b565b811015612195576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161218c906144fe565b60405180910390fd5b6103e860056121a2610ea4565b6121ac91906143d2565b6121b6919061445b565b8111156121f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121ef90614590565b60405180910390fd5b8060078190555050565b600d5481565b60065481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60145481565b60075481565b600f5481565b6122af6124f2565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461233e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161233590614116565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156123ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123a590614622565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60135481565b60096020528060005260406000206000915054906101000a900460ff1681565b60008082846124a391906141c6565b9050838110156124e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124df9061468e565b60405180910390fd5b8091505092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561256a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161256190614720565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156125da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125d1906147b2565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516126b89190613d9b565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612735576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161272c90614844565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156127a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161279c906148d6565b60405180910390fd5b60008114156127bf576127ba838360006131bc565b612f04565b6000601a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1690506000601a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050600a60009054906101000a900460ff1680156128c75750601960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156129b057600960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156129705750600960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b6129af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129a690614942565b60405180910390fd5b5b60006129bb30611252565b9050600060075482101590508080156129e05750600a60019054906101000a900460ff165b80156129f95750600560149054906101000a900460ff16155b8015612a03575083155b8015612a595750601860008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612aaf5750601860008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612af3576001600560146101000a81548160ff021916908315150217905550612ad7613451565b6000600560146101000a81548160ff0219169083151502179055505b6000600560149054906101000a900460ff16159050601860008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612ba95750601860008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15612bb357600090505b8380612bbc5750845b15612d11576000604051806060016040528086612bda576002612bdd565b60015b60ff1681526020018881526020014281525090508415612c8557600860008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190806001815401808255809150506001900390600052602060002090600302016000909190919091506000820151816000015560208201518160010155604082015181600201555050612d0f565b600860008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081908060018154018082558091505060019003906000526020600020906003020160009091909190915060008201518160000155602082015181600101556040820151816002015550505b505b60008115612ef257858015612d2857506000600d54115b15612df557612d556064612d47600d548a61371490919063ffffffff16565b61378f90919063ffffffff16565b9050600d54600f5482612d6891906143d2565b612d72919061445b565b60166000828254612d8391906141c6565b92505081905550600d5460105482612d9b91906143d2565b612da5919061445b565b60176000828254612db691906141c6565b92505081905550600d54600e5482612dce91906143d2565b612dd8919061445b565b60156000828254612de991906141c6565b92505081905550612ece565b848015612e0457506000601154115b15612ecd57612e316064612e236011548a61371490919063ffffffff16565b61378f90919063ffffffff16565b905060115460135482612e4491906143d2565b612e4e919061445b565b60166000828254612e5f91906141c6565b9250508190555060115460145482612e7791906143d2565b612e81919061445b565b60176000828254612e9291906141c6565b9250508190555060115460125482612eaa91906143d2565b612eb4919061445b565b60156000828254612ec591906141c6565b925050819055505b5b6000811115612ee357612ee28930836131bc565b5b8087612eef9190614962565b96505b612efd8989896131bc565b5050505050505b505050565b6000838311158290612f51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f489190613c5b565b60405180910390fd5b5060008385612f609190614962565b9050809150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612fdd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fd490614a08565b60405180910390fd5b612fe9826000836137d9565b61305481604051806060016040528060228152602001614dbd602291396000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612f099092919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506130ab816002546137de90919063ffffffff16565b600281905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161310f9190613d9b565b60405180910390a35050565b80601a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561322c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161322390614844565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561329c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613293906148d6565b60405180910390fd5b6132a78383836137d9565b61331281604051806060016040528060268152602001614ddf602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612f099092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506133a5816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461249490919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516134449190613d9b565b60405180910390a3505050565b600061345c30611252565b9050600060175460155460165461347391906141c6565b61347d91906141c6565b9050600082148061348e5750600081145b1561349a575050613712565b6000600282601654856134ad91906143d2565b6134b7919061445b565b6134c1919061445b565b905060006134d882856137de90919063ffffffff16565b905060004790506134e882613828565b60006134fd82476137de90919063ffffffff16565b905060006135288661351a6015548561371490919063ffffffff16565b61378f90919063ffffffff16565b90506000613553876135456017548661371490919063ffffffff16565b61378f90919063ffffffff16565b905060008183856135649190614962565b61356e9190614962565b90506000601681905550600060158190555060006017819055506000600b60010160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16846040516135d390614a59565b60006040518083038185875af1925050503d8060008114613610576040519150601f19603f3d011682016040523d82523d6000602084013e613615565b606091505b505090506000881180156136295750600082115b15613676576136388883613a74565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb561878360165460405161366d93929190614053565b60405180910390a15b600b60000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16476040516136bf90614a59565b60006040518083038185875af1925050503d80600081146136fc576040519150601f19603f3d011682016040523d82523d6000602084013e613701565b606091505b505080915050505050505050505050505b565b6000808314156137275760009050613789565b6000828461373591906143d2565b9050828482613744919061445b565b14613784576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161377b90614ae0565b60405180910390fd5b809150505b92915050565b60006137d183836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250613b5f565b905092915050565b505050565b600061382083836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250612f09565b905092915050565b6000600267ffffffffffffffff81111561384557613844614b00565b5b6040519080825280602002602001820160405280156138735781602001602082028036833780820191505090505b509050308160008151811061388b5761388a614b2f565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561392b57600080fd5b505afa15801561393f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906139639190614b73565b8160018151811061397757613976614b2f565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506139dc307f0000000000000000000000000000000000000000000000000000000000000000846124fa565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401613a3e959493929190614c99565b600060405180830381600087803b158015613a5857600080fd5b505af1158015613a6c573d6000803e3d6000fd5b505050505050565b613a9f307f0000000000000000000000000000000000000000000000000000000000000000846124fa565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008061dead426040518863ffffffff1660e01b8152600401613b0696959493929190614cf3565b6060604051808303818588803b158015613b1f57600080fd5b505af1158015613b33573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190613b589190614d69565b5050505050565b60008083118290613ba6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613b9d9190613c5b565b60405180910390fd5b5060008385613bb5919061445b565b9050809150509392505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613bfc578082015181840152602081019050613be1565b83811115613c0b576000848401525b50505050565b6000601f19601f8301169050919050565b6000613c2d82613bc2565b613c378185613bcd565b9350613c47818560208601613bde565b613c5081613c11565b840191505092915050565b60006020820190508181036000830152613c758184613c22565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613cad82613c82565b9050919050565b613cbd81613ca2565b8114613cc857600080fd5b50565b600081359050613cda81613cb4565b92915050565b6000819050919050565b613cf381613ce0565b8114613cfe57600080fd5b50565b600081359050613d1081613cea565b92915050565b60008060408385031215613d2d57613d2c613c7d565b5b6000613d3b85828601613ccb565b9250506020613d4c85828601613d01565b9150509250929050565b60008115159050919050565b613d6b81613d56565b82525050565b6000602082019050613d866000830184613d62565b92915050565b613d9581613ce0565b82525050565b6000602082019050613db06000830184613d8c565b92915050565b600060208284031215613dcc57613dcb613c7d565b5b6000613dda84828501613ccb565b91505092915050565b613dec81613d56565b8114613df757600080fd5b50565b600081359050613e0981613de3565b92915050565b60008060408385031215613e2657613e25613c7d565b5b6000613e3485828601613ccb565b9250506020613e4585828601613dfa565b9150509250929050565b6000819050919050565b6000613e74613e6f613e6a84613c82565b613e4f565b613c82565b9050919050565b6000613e8682613e59565b9050919050565b6000613e9882613e7b565b9050919050565b613ea881613e8d565b82525050565b6000602082019050613ec36000830184613e9f565b92915050565b600080600060608486031215613ee257613ee1613c7d565b5b6000613ef086828701613ccb565b9350506020613f0186828701613ccb565b9250506040613f1286828701613d01565b9150509250925092565b613f2581613ca2565b82525050565b6000602082019050613f406000830184613f1c565b92915050565b600060208284031215613f5c57613f5b613c7d565b5b6000613f6a84828501613dfa565b91505092915050565b600060ff82169050919050565b613f8981613f73565b82525050565b6000602082019050613fa46000830184613f80565b92915050565b600060208284031215613fc057613fbf613c7d565b5b6000613fce84828501613d01565b91505092915050565b6000604082019050613fec6000830185613f1c565b613ff96020830184613f1c565b9392505050565b60008060006060848603121561401957614018613c7d565b5b600061402786828701613d01565b935050602061403886828701613d01565b925050604061404986828701613d01565b9150509250925092565b60006060820190506140686000830186613d8c565b6140756020830185613d8c565b6140826040830184613d8c565b949350505050565b600080604083850312156140a1576140a0613c7d565b5b60006140af85828601613ccb565b92505060206140c085828601613ccb565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614100602083613bcd565b915061410b826140ca565b602082019050919050565b6000602082019050818103600083015261412f816140f3565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061417d57607f821691505b6020821081141561419157614190614136565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006141d182613ce0565b91506141dc83613ce0565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561421157614210614197565b5b828201905092915050565b7f43616e6e6f742073657420627579546f74616c4665657320686967686572207460008201527f68616e2031352500000000000000000000000000000000000000000000000000602082015250565b6000614278602783613bcd565b91506142838261421c565b604082019050919050565b600060208201905081810360008301526142a78161426b565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b600061430a603983613bcd565b9150614315826142ae565b604082019050919050565b60006020820190508181036000830152614339816142fd565b9050919050565b7f43616e6e6f74207365742073656c6c546f74616c46656573206869676865722060008201527f7468616e20323525000000000000000000000000000000000000000000000000602082015250565b600061439c602883613bcd565b91506143a782614340565b604082019050919050565b600060208201905081810360008301526143cb8161438f565b9050919050565b60006143dd82613ce0565b91506143e883613ce0565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561442157614420614197565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061446682613ce0565b915061447183613ce0565b9250826144815761448061442c565b5b828204905092915050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b60006144e8603583613bcd565b91506144f38261448c565b604082019050919050565b60006020820190508181036000830152614517816144db565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b600061457a603483613bcd565b91506145858261451e565b604082019050919050565b600060208201905081810360008301526145a98161456d565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061460c602683613bcd565b9150614617826145b0565b604082019050919050565b6000602082019050818103600083015261463b816145ff565b9050919050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b6000614678601b83613bcd565b915061468382614642565b602082019050919050565b600060208201905081810360008301526146a78161466b565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061470a602483613bcd565b9150614715826146ae565b604082019050919050565b60006020820190508181036000830152614739816146fd565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061479c602283613bcd565b91506147a782614740565b604082019050919050565b600060208201905081810360008301526147cb8161478f565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061482e602583613bcd565b9150614839826147d2565b604082019050919050565b6000602082019050818103600083015261485d81614821565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006148c0602383613bcd565b91506148cb82614864565b604082019050919050565b600060208201905081810360008301526148ef816148b3565b9050919050565b7f5573657220626c61636b6c697374656400000000000000000000000000000000600082015250565b600061492c601083613bcd565b9150614937826148f6565b602082019050919050565b6000602082019050818103600083015261495b8161491f565b9050919050565b600061496d82613ce0565b915061497883613ce0565b92508282101561498b5761498a614197565b5b828203905092915050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b60006149f2602183613bcd565b91506149fd82614996565b604082019050919050565b60006020820190508181036000830152614a21816149e5565b9050919050565b600081905092915050565b50565b6000614a43600083614a28565b9150614a4e82614a33565b600082019050919050565b6000614a6482614a36565b9150819050919050565b7f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60008201527f7700000000000000000000000000000000000000000000000000000000000000602082015250565b6000614aca602183613bcd565b9150614ad582614a6e565b604082019050919050565b60006020820190508181036000830152614af981614abd565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050614b6d81613cb4565b92915050565b600060208284031215614b8957614b88613c7d565b5b6000614b9784828501614b5e565b91505092915050565b6000819050919050565b6000614bc5614bc0614bbb84614ba0565b613e4f565b613ce0565b9050919050565b614bd581614baa565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b614c1081613ca2565b82525050565b6000614c228383614c07565b60208301905092915050565b6000602082019050919050565b6000614c4682614bdb565b614c508185614be6565b9350614c5b83614bf7565b8060005b83811015614c8c578151614c738882614c16565b9750614c7e83614c2e565b925050600181019050614c5f565b5085935050505092915050565b600060a082019050614cae6000830188613d8c565b614cbb6020830187614bcc565b8181036040830152614ccd8186614c3b565b9050614cdc6060830185613f1c565b614ce96080830184613d8c565b9695505050505050565b600060c082019050614d086000830189613f1c565b614d156020830188613d8c565b614d226040830187614bcc565b614d2f6060830186614bcc565b614d3c6080830185613f1c565b614d4960a0830184613d8c565b979650505050505050565b600081519050614d6381613cea565b92915050565b600080600060608486031215614d8257614d81613c7d565b5b6000614d9086828701614d54565b9350506020614da186828701614d54565b9250506040614db286828701614d54565b915050925092509256fe45524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220335370c487b6f0a2ec79fda3c4608555cd33733d47df98372585df68d1458d1664736f6c63430008090033
Deployed Bytecode
0x6080604052600436106102cd5760003560e01c80638095d56411610175578063c0246668116100dc578063dd62ed3e11610095578063f11a24d31161006f578063f11a24d314610b1c578063f2fde38b14610b47578063f637434214610b70578063fe575a8714610b9b576102d4565b8063dd62ed3e14610a89578063de0aad5314610ac6578063e2f4560514610af1576102d4565b8063c02466681461098f578063c17b5b8c146109b8578063cc600f91146109e1578063d257b34f14610a0a578063d85ba06314610a33578063d89135cd14610a5e576102d4565b8063a002959c1161012e578063a002959c14610845578063a457c2d714610870578063a7d8fb46146108ad578063a9059cbb146108ec578063aacebbe314610929578063b62496f514610952576102d4565b80638095d564146107495780638da5cb5b14610772578063921369131461079d578063924de9b7146107c857806395d89b41146107f15780639a7a23d61461081c576102d4565b80632aea52ab116102345780636a486a8e116101ed57806370a08231116101c757806370a08231146106a1578063715018a6146106de5780637571336a146106f55780637bce5a041461071e576102d4565b80636a486a8e1461061f5780636ddd17131461064a5780636f268a9914610675576102d4565b80632aea52ab146104fd578063313ce56714610526578063395093511461055157806342966c681461058e57806349bd5a5e146105b75780634fbee193146105e2576102d4565b80631694505e116102865780631694505e146103e957806318160ddd146104145780631a8145bb1461043f5780631f3fed8f1461046a57806323b872dd1461049557806327c8f835146104d2576102d4565b80630614117a146102d957806306fdde03146102f0578063095ea7b31461031b5780630cfe2f3f1461035857806310d5de5314610383578063153b0d1e146103c0576102d4565b366102d457005b600080fd5b3480156102e557600080fd5b506102ee610bd8565b005b3480156102fc57600080fd5b50610305610cb8565b6040516103129190613c5b565b60405180910390f35b34801561032757600080fd5b50610342600480360381019061033d9190613d16565b610d4a565b60405161034f9190613d71565b60405180910390f35b34801561036457600080fd5b5061036d610d68565b60405161037a9190613d9b565b60405180910390f35b34801561038f57600080fd5b506103aa60048036038101906103a59190613db6565b610d6e565b6040516103b79190613d71565b60405180910390f35b3480156103cc57600080fd5b506103e760048036038101906103e29190613e0f565b610d8e565b005b3480156103f557600080fd5b506103fe610e80565b60405161040b9190613eae565b60405180910390f35b34801561042057600080fd5b50610429610ea4565b6040516104369190613d9b565b60405180910390f35b34801561044b57600080fd5b50610454610eae565b6040516104619190613d9b565b60405180910390f35b34801561047657600080fd5b5061047f610eb4565b60405161048c9190613d9b565b60405180910390f35b3480156104a157600080fd5b506104bc60048036038101906104b79190613ec9565b610eba565b6040516104c99190613d71565b60405180910390f35b3480156104de57600080fd5b506104e7610f93565b6040516104f49190613f2b565b60405180910390f35b34801561050957600080fd5b50610524600480360381019061051f9190613f46565b610f99565b005b34801561053257600080fd5b5061053b611084565b6040516105489190613f8f565b60405180910390f35b34801561055d57600080fd5b5061057860048036038101906105739190613d16565b61108d565b6040516105859190613d71565b60405180910390f35b34801561059a57600080fd5b506105b560048036038101906105b09190613faa565b611140565b005b3480156105c357600080fd5b506105cc61116d565b6040516105d99190613f2b565b60405180910390f35b3480156105ee57600080fd5b5061060960048036038101906106049190613db6565b611191565b6040516106169190613d71565b60405180910390f35b34801561062b57600080fd5b506106346111e7565b6040516106419190613d9b565b60405180910390f35b34801561065657600080fd5b5061065f6111ed565b60405161066c9190613d71565b60405180910390f35b34801561068157600080fd5b5061068a611200565b604051610698929190613fd7565b60405180910390f35b3480156106ad57600080fd5b506106c860048036038101906106c39190613db6565b611252565b6040516106d59190613d9b565b60405180910390f35b3480156106ea57600080fd5b506106f361129a565b005b34801561070157600080fd5b5061071c60048036038101906107179190613e0f565b6113f2565b005b34801561072a57600080fd5b506107336114e4565b6040516107409190613d9b565b60405180910390f35b34801561075557600080fd5b50610770600480360381019061076b9190614000565b6114ea565b005b34801561077e57600080fd5b50610787611604565b6040516107949190613f2b565b60405180910390f35b3480156107a957600080fd5b506107b261162e565b6040516107bf9190613d9b565b60405180910390f35b3480156107d457600080fd5b506107ef60048036038101906107ea9190613f46565b611634565b005b3480156107fd57600080fd5b506108066116e8565b6040516108139190613c5b565b60405180910390f35b34801561082857600080fd5b50610843600480360381019061083e9190613e0f565b61177a565b005b34801561085157600080fd5b5061085a6118ae565b6040516108679190613d9b565b60405180910390f35b34801561087c57600080fd5b5061089760048036038101906108929190613d16565b6118b4565b6040516108a49190613d71565b60405180910390f35b3480156108b957600080fd5b506108d460048036038101906108cf9190613d16565b611981565b6040516108e393929190614053565b60405180910390f35b3480156108f857600080fd5b50610913600480360381019061090e9190613d16565b6119c8565b6040516109209190613d71565b60405180910390f35b34801561093557600080fd5b50610950600480360381019061094b9190613db6565b6119e6565b005b34801561095e57600080fd5b5061097960048036038101906109749190613db6565b611c03565b6040516109869190613d71565b60405180910390f35b34801561099b57600080fd5b506109b660048036038101906109b19190613e0f565b611c23565b005b3480156109c457600080fd5b506109df60048036038101906109da9190614000565b611d63565b005b3480156109ed57600080fd5b50610a086004803603810190610a039190613db6565b611e7d565b005b348015610a1657600080fd5b50610a316004803603810190610a2c9190613faa565b61209a565b005b348015610a3f57600080fd5b50610a48612202565b604051610a559190613d9b565b60405180910390f35b348015610a6a57600080fd5b50610a73612208565b604051610a809190613d9b565b60405180910390f35b348015610a9557600080fd5b50610ab06004803603810190610aab919061408a565b61220e565b604051610abd9190613d9b565b60405180910390f35b348015610ad257600080fd5b50610adb612295565b604051610ae89190613d9b565b60405180910390f35b348015610afd57600080fd5b50610b0661229b565b604051610b139190613d9b565b60405180910390f35b348015610b2857600080fd5b50610b316122a1565b604051610b3e9190613d9b565b60405180910390f35b348015610b5357600080fd5b50610b6e6004803603810190610b699190613db6565b6122a7565b005b348015610b7c57600080fd5b50610b8561246e565b604051610b929190613d9b565b60405180910390f35b348015610ba757600080fd5b50610bc26004803603810190610bbd9190613db6565b612474565b604051610bcf9190613d71565b60405180910390f35b610be06124f2565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610c6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6690614116565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610cb5573d6000803e3d6000fd5b50565b606060038054610cc790614165565b80601f0160208091040260200160405190810160405280929190818152602001828054610cf390614165565b8015610d405780601f10610d1557610100808354040283529160200191610d40565b820191906000526020600020905b815481529060010190602001808311610d2357829003601f168201915b5050505050905090565b6000610d5e610d576124f2565b84846124fa565b6001905092915050565b60105481565b60196020528060005260406000206000915054906101000a900460ff1681565b610d966124f2565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610e25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1c90614116565b60405180910390fd5b80600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b60165481565b60155481565b6000610ec78484846126c5565b610f8884610ed36124f2565b610f8385604051806060016040528060288152602001614e0560289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610f396124f2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612f099092919063ffffffff16565b6124fa565b600190509392505050565b61dead81565b610fa16124f2565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611030576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102790614116565b60405180910390fd5b80600a60006101000a81548160ff0219169083151502179055507f6348668a830a74027e9848759e660a45c2afe456096e26d17cc84eb20509c9e7816040516110799190613d71565b60405180910390a150565b60006012905090565b600061113661109a6124f2565b8461113185600160006110ab6124f2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461249490919063ffffffff16565b6124fa565b6001905092915050565b806006600082825461115291906141c6565b9250508190555061116a6111646124f2565b82612f6d565b50565b7f000000000000000000000000c6fdbe57e8cafe7b9130868697304afc3592bb7481565b6000601860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60115481565b600a60019054906101000a900460ff1681565b600b8060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16908060010160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905082565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6112a26124f2565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611331576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132890614116565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6113fa6124f2565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611489576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148090614116565b60405180910390fd5b80601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600e5481565b6114f26124f2565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611581576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157890614116565b60405180910390fd5b82600e8190555081600f8190555080601081905550601054600f54600e546115a991906141c6565b6115b391906141c6565b600d81905550600f600d5411156115ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f69061428e565b60405180910390fd5b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60125481565b61163c6124f2565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146116cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c290614116565b60405180910390fd5b80600a60016101000a81548160ff02191690831515021790555050565b6060600480546116f790614165565b80601f016020809104026020016040519081016040528092919081815260200182805461172390614165565b80156117705780601f1061174557610100808354040283529160200191611770565b820191906000526020600020905b81548152906001019060200180831161175357829003601f168201915b5050505050905090565b6117826124f2565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611811576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180890614116565b60405180910390fd5b7f000000000000000000000000c6fdbe57e8cafe7b9130868697304afc3592bb7473ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156118a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189790614320565b60405180910390fd5b6118aa828261311b565b5050565b60175481565b60006119776118c16124f2565b8461197285604051806060016040528060258152602001614e2d60259139600160006118eb6124f2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612f099092919063ffffffff16565b6124fa565b6001905092915050565b6008602052816000526040600020818154811061199d57600080fd5b9060005260206000209060030201600091509150508060000154908060010154908060020154905083565b60006119dc6119d56124f2565b84846126c5565b6001905092915050565b6119ee6124f2565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611a7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7490614116565b60405180910390fd5b600b60010160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8616c7a330e3cf61290821331585511f1e2778171e2b005fb5ec60cfe874dc6760405160405180910390a3611b2c600b60010160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166000611c23565b611b5c600b60010160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660006113f2565b80600b60010160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550611bd0600b60010160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166001611c23565b611c00600b60010160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016113f2565b50565b601a6020528060005260406000206000915054906101000a900460ff1681565b611c2b6124f2565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611cba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cb190614116565b60405180910390fd5b80601860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611d579190613d71565b60405180910390a25050565b611d6b6124f2565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611dfa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611df190614116565b60405180910390fd5b826012819055508160138190555080601481905550601454601354601254611e2291906141c6565b611e2c91906141c6565b60118190555060196011541115611e78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6f906143b2565b60405180910390fd5b505050565b611e856124f2565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611f14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f0b90614116565b60405180910390fd5b600b60000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f53a789b033e632f89772129774e70aa81a1a130a54c0297cdbb4585dfcfd9a7f60405160405180910390a3611fc3600b60000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166000611c23565b611ff3600b60000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660006113f2565b80600b60000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550612067600b60000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166001611c23565b612097600b60000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016113f2565b50565b6120a26124f2565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612131576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161212890614116565b60405180910390fd5b620186a0600161213f610ea4565b61214991906143d2565b612153919061445b565b811015612195576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161218c906144fe565b60405180910390fd5b6103e860056121a2610ea4565b6121ac91906143d2565b6121b6919061445b565b8111156121f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121ef90614590565b60405180910390fd5b8060078190555050565b600d5481565b60065481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60145481565b60075481565b600f5481565b6122af6124f2565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461233e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161233590614116565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156123ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123a590614622565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60135481565b60096020528060005260406000206000915054906101000a900460ff1681565b60008082846124a391906141c6565b9050838110156124e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124df9061468e565b60405180910390fd5b8091505092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561256a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161256190614720565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156125da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125d1906147b2565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516126b89190613d9b565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612735576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161272c90614844565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156127a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161279c906148d6565b60405180910390fd5b60008114156127bf576127ba838360006131bc565b612f04565b6000601a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1690506000601a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050600a60009054906101000a900460ff1680156128c75750601960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156129b057600960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156129705750600960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b6129af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129a690614942565b60405180910390fd5b5b60006129bb30611252565b9050600060075482101590508080156129e05750600a60019054906101000a900460ff165b80156129f95750600560149054906101000a900460ff16155b8015612a03575083155b8015612a595750601860008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612aaf5750601860008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612af3576001600560146101000a81548160ff021916908315150217905550612ad7613451565b6000600560146101000a81548160ff0219169083151502179055505b6000600560149054906101000a900460ff16159050601860008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612ba95750601860008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15612bb357600090505b8380612bbc5750845b15612d11576000604051806060016040528086612bda576002612bdd565b60015b60ff1681526020018881526020014281525090508415612c8557600860008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190806001815401808255809150506001900390600052602060002090600302016000909190919091506000820151816000015560208201518160010155604082015181600201555050612d0f565b600860008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081908060018154018082558091505060019003906000526020600020906003020160009091909190915060008201518160000155602082015181600101556040820151816002015550505b505b60008115612ef257858015612d2857506000600d54115b15612df557612d556064612d47600d548a61371490919063ffffffff16565b61378f90919063ffffffff16565b9050600d54600f5482612d6891906143d2565b612d72919061445b565b60166000828254612d8391906141c6565b92505081905550600d5460105482612d9b91906143d2565b612da5919061445b565b60176000828254612db691906141c6565b92505081905550600d54600e5482612dce91906143d2565b612dd8919061445b565b60156000828254612de991906141c6565b92505081905550612ece565b848015612e0457506000601154115b15612ecd57612e316064612e236011548a61371490919063ffffffff16565b61378f90919063ffffffff16565b905060115460135482612e4491906143d2565b612e4e919061445b565b60166000828254612e5f91906141c6565b9250508190555060115460145482612e7791906143d2565b612e81919061445b565b60176000828254612e9291906141c6565b9250508190555060115460125482612eaa91906143d2565b612eb4919061445b565b60156000828254612ec591906141c6565b925050819055505b5b6000811115612ee357612ee28930836131bc565b5b8087612eef9190614962565b96505b612efd8989896131bc565b5050505050505b505050565b6000838311158290612f51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f489190613c5b565b60405180910390fd5b5060008385612f609190614962565b9050809150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612fdd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fd490614a08565b60405180910390fd5b612fe9826000836137d9565b61305481604051806060016040528060228152602001614dbd602291396000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612f099092919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506130ab816002546137de90919063ffffffff16565b600281905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161310f9190613d9b565b60405180910390a35050565b80601a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561322c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161322390614844565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561329c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613293906148d6565b60405180910390fd5b6132a78383836137d9565b61331281604051806060016040528060268152602001614ddf602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612f099092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506133a5816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461249490919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516134449190613d9b565b60405180910390a3505050565b600061345c30611252565b9050600060175460155460165461347391906141c6565b61347d91906141c6565b9050600082148061348e5750600081145b1561349a575050613712565b6000600282601654856134ad91906143d2565b6134b7919061445b565b6134c1919061445b565b905060006134d882856137de90919063ffffffff16565b905060004790506134e882613828565b60006134fd82476137de90919063ffffffff16565b905060006135288661351a6015548561371490919063ffffffff16565b61378f90919063ffffffff16565b90506000613553876135456017548661371490919063ffffffff16565b61378f90919063ffffffff16565b905060008183856135649190614962565b61356e9190614962565b90506000601681905550600060158190555060006017819055506000600b60010160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16846040516135d390614a59565b60006040518083038185875af1925050503d8060008114613610576040519150601f19603f3d011682016040523d82523d6000602084013e613615565b606091505b505090506000881180156136295750600082115b15613676576136388883613a74565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb561878360165460405161366d93929190614053565b60405180910390a15b600b60000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16476040516136bf90614a59565b60006040518083038185875af1925050503d80600081146136fc576040519150601f19603f3d011682016040523d82523d6000602084013e613701565b606091505b505080915050505050505050505050505b565b6000808314156137275760009050613789565b6000828461373591906143d2565b9050828482613744919061445b565b14613784576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161377b90614ae0565b60405180910390fd5b809150505b92915050565b60006137d183836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250613b5f565b905092915050565b505050565b600061382083836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250612f09565b905092915050565b6000600267ffffffffffffffff81111561384557613844614b00565b5b6040519080825280602002602001820160405280156138735781602001602082028036833780820191505090505b509050308160008151811061388b5761388a614b2f565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561392b57600080fd5b505afa15801561393f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906139639190614b73565b8160018151811061397757613976614b2f565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506139dc307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846124fa565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401613a3e959493929190614c99565b600060405180830381600087803b158015613a5857600080fd5b505af1158015613a6c573d6000803e3d6000fd5b505050505050565b613a9f307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846124fa565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008061dead426040518863ffffffff1660e01b8152600401613b0696959493929190614cf3565b6060604051808303818588803b158015613b1f57600080fd5b505af1158015613b33573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190613b589190614d69565b5050505050565b60008083118290613ba6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613b9d9190613c5b565b60405180910390fd5b5060008385613bb5919061445b565b9050809150509392505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613bfc578082015181840152602081019050613be1565b83811115613c0b576000848401525b50505050565b6000601f19601f8301169050919050565b6000613c2d82613bc2565b613c378185613bcd565b9350613c47818560208601613bde565b613c5081613c11565b840191505092915050565b60006020820190508181036000830152613c758184613c22565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613cad82613c82565b9050919050565b613cbd81613ca2565b8114613cc857600080fd5b50565b600081359050613cda81613cb4565b92915050565b6000819050919050565b613cf381613ce0565b8114613cfe57600080fd5b50565b600081359050613d1081613cea565b92915050565b60008060408385031215613d2d57613d2c613c7d565b5b6000613d3b85828601613ccb565b9250506020613d4c85828601613d01565b9150509250929050565b60008115159050919050565b613d6b81613d56565b82525050565b6000602082019050613d866000830184613d62565b92915050565b613d9581613ce0565b82525050565b6000602082019050613db06000830184613d8c565b92915050565b600060208284031215613dcc57613dcb613c7d565b5b6000613dda84828501613ccb565b91505092915050565b613dec81613d56565b8114613df757600080fd5b50565b600081359050613e0981613de3565b92915050565b60008060408385031215613e2657613e25613c7d565b5b6000613e3485828601613ccb565b9250506020613e4585828601613dfa565b9150509250929050565b6000819050919050565b6000613e74613e6f613e6a84613c82565b613e4f565b613c82565b9050919050565b6000613e8682613e59565b9050919050565b6000613e9882613e7b565b9050919050565b613ea881613e8d565b82525050565b6000602082019050613ec36000830184613e9f565b92915050565b600080600060608486031215613ee257613ee1613c7d565b5b6000613ef086828701613ccb565b9350506020613f0186828701613ccb565b9250506040613f1286828701613d01565b9150509250925092565b613f2581613ca2565b82525050565b6000602082019050613f406000830184613f1c565b92915050565b600060208284031215613f5c57613f5b613c7d565b5b6000613f6a84828501613dfa565b91505092915050565b600060ff82169050919050565b613f8981613f73565b82525050565b6000602082019050613fa46000830184613f80565b92915050565b600060208284031215613fc057613fbf613c7d565b5b6000613fce84828501613d01565b91505092915050565b6000604082019050613fec6000830185613f1c565b613ff96020830184613f1c565b9392505050565b60008060006060848603121561401957614018613c7d565b5b600061402786828701613d01565b935050602061403886828701613d01565b925050604061404986828701613d01565b9150509250925092565b60006060820190506140686000830186613d8c565b6140756020830185613d8c565b6140826040830184613d8c565b949350505050565b600080604083850312156140a1576140a0613c7d565b5b60006140af85828601613ccb565b92505060206140c085828601613ccb565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614100602083613bcd565b915061410b826140ca565b602082019050919050565b6000602082019050818103600083015261412f816140f3565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061417d57607f821691505b6020821081141561419157614190614136565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006141d182613ce0565b91506141dc83613ce0565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561421157614210614197565b5b828201905092915050565b7f43616e6e6f742073657420627579546f74616c4665657320686967686572207460008201527f68616e2031352500000000000000000000000000000000000000000000000000602082015250565b6000614278602783613bcd565b91506142838261421c565b604082019050919050565b600060208201905081810360008301526142a78161426b565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b600061430a603983613bcd565b9150614315826142ae565b604082019050919050565b60006020820190508181036000830152614339816142fd565b9050919050565b7f43616e6e6f74207365742073656c6c546f74616c46656573206869676865722060008201527f7468616e20323525000000000000000000000000000000000000000000000000602082015250565b600061439c602883613bcd565b91506143a782614340565b604082019050919050565b600060208201905081810360008301526143cb8161438f565b9050919050565b60006143dd82613ce0565b91506143e883613ce0565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561442157614420614197565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061446682613ce0565b915061447183613ce0565b9250826144815761448061442c565b5b828204905092915050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b60006144e8603583613bcd565b91506144f38261448c565b604082019050919050565b60006020820190508181036000830152614517816144db565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b600061457a603483613bcd565b91506145858261451e565b604082019050919050565b600060208201905081810360008301526145a98161456d565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061460c602683613bcd565b9150614617826145b0565b604082019050919050565b6000602082019050818103600083015261463b816145ff565b9050919050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b6000614678601b83613bcd565b915061468382614642565b602082019050919050565b600060208201905081810360008301526146a78161466b565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061470a602483613bcd565b9150614715826146ae565b604082019050919050565b60006020820190508181036000830152614739816146fd565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061479c602283613bcd565b91506147a782614740565b604082019050919050565b600060208201905081810360008301526147cb8161478f565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061482e602583613bcd565b9150614839826147d2565b604082019050919050565b6000602082019050818103600083015261485d81614821565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006148c0602383613bcd565b91506148cb82614864565b604082019050919050565b600060208201905081810360008301526148ef816148b3565b9050919050565b7f5573657220626c61636b6c697374656400000000000000000000000000000000600082015250565b600061492c601083613bcd565b9150614937826148f6565b602082019050919050565b6000602082019050818103600083015261495b8161491f565b9050919050565b600061496d82613ce0565b915061497883613ce0565b92508282101561498b5761498a614197565b5b828203905092915050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b60006149f2602183613bcd565b91506149fd82614996565b604082019050919050565b60006020820190508181036000830152614a21816149e5565b9050919050565b600081905092915050565b50565b6000614a43600083614a28565b9150614a4e82614a33565b600082019050919050565b6000614a6482614a36565b9150819050919050565b7f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60008201527f7700000000000000000000000000000000000000000000000000000000000000602082015250565b6000614aca602183613bcd565b9150614ad582614a6e565b604082019050919050565b60006020820190508181036000830152614af981614abd565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050614b6d81613cb4565b92915050565b600060208284031215614b8957614b88613c7d565b5b6000614b9784828501614b5e565b91505092915050565b6000819050919050565b6000614bc5614bc0614bbb84614ba0565b613e4f565b613ce0565b9050919050565b614bd581614baa565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b614c1081613ca2565b82525050565b6000614c228383614c07565b60208301905092915050565b6000602082019050919050565b6000614c4682614bdb565b614c508185614be6565b9350614c5b83614bf7565b8060005b83811015614c8c578151614c738882614c16565b9750614c7e83614c2e565b925050600181019050614c5f565b5085935050505092915050565b600060a082019050614cae6000830188613d8c565b614cbb6020830187614bcc565b8181036040830152614ccd8186614c3b565b9050614cdc6060830185613f1c565b614ce96080830184613d8c565b9695505050505050565b600060c082019050614d086000830189613f1c565b614d156020830188613d8c565b614d226040830187614bcc565b614d2f6060830186614bcc565b614d3c6080830185613f1c565b614d4960a0830184613d8c565b979650505050505050565b600081519050614d6381613cea565b92915050565b600080600060608486031215614d8257614d81613c7d565b5b6000614d9086828701614d54565b9350506020614da186828701614d54565b9250506040614db286828701614d54565b915050925092509256fe45524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220335370c487b6f0a2ec79fda3c4608555cd33733d47df98372585df68d1458d1664736f6c63430008090033
Deployed Bytecode Sourcemap
29281:13771:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35989:111;;;;;;;;;;;;;:::i;:::-;;7471:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9638:169;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30301:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30745:64;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34083:131;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29357:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8591:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30525:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30485;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10289:355;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29460:53;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33911:143;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8433:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11053:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42926:123;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29415:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37404:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30337:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29969:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30008:176;;;;;;;;;;;;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;8762:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21932:148;;;;;;;;;;;;;:::i;:::-;;34642:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30227:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34991:391;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21290:79;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30372:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34882:101;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7690:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36108:242;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30565:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11774:269;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29820:45;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;;:::i;:::-;;;;;;;;9102:175;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36554:429;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30967:58;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35799:182;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35390:401;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36991:405;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34284:350;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30193:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29741:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9340:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30448:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29778:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30264:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22235:244;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30410:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29874:45;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35989:111;21512:12;:10;:12::i;:::-;21502:22;;:6;;;;;;;;;;;:22;;;21494:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;36049:10:::1;36041:28;;:51;36070:21;36041:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;35989:111::o:0;7471:100::-;7525:13;7558:5;7551:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7471:100;:::o;9638:169::-;9721:4;9738:39;9747:12;:10;:12::i;:::-;9761:7;9770:6;9738:8;:39::i;:::-;9795:4;9788:11;;9638:169;;;;:::o;30301:27::-;;;;:::o;30745:64::-;;;;;;;;;;;;;;;;;;;;;;:::o;34083:131::-;21512:12;:10;:12::i;:::-;21502:22;;:6;;;;;;;;;;;:22;;;21494:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;34195:11:::1;34170:13;:22;34184:7;34170:22;;;;;;;;;;;;;;;;:36;;;;;;;;;;;;;;;;;;34083:131:::0;;:::o;29357:51::-;;;:::o;8591:108::-;8652:7;8679:12;;8672:19;;8591:108;:::o;30525:33::-;;;;:::o;30485:::-;;;;:::o;10289:355::-;10429:4;10446:36;10456:6;10464:9;10475:6;10446:9;:36::i;:::-;10493:121;10502:6;10510:12;:10;:12::i;:::-;10524:89;10562:6;10524:89;;;;;;;;;;;;;;;;;:11;:19;10536:6;10524:19;;;;;;;;;;;;;;;:33;10544:12;:10;:12::i;:::-;10524:33;;;;;;;;;;;;;;;;:37;;:89;;;;;:::i;:::-;10493:8;:121::i;:::-;10632:4;10625:11;;10289:355;;;;;:::o;29460:53::-;29506:6;29460:53;:::o;33911:143::-;21512:12;:10;:12::i;:::-;21502:22;;:6;;;;;;;;;;;:22;;;21494:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;33999:7:::1;33980:16;;:26;;;;;;;;;;;;;;;;;;34022:24;34038:7;34022:24;;;;;;:::i;:::-;;;;;;;;33911:143:::0;:::o;8433:93::-;8491:5;8516:2;8509:9;;8433:93;:::o;11053:218::-;11141:4;11158:83;11167:12;:10;:12::i;:::-;11181:7;11190:50;11229:10;11190:11;:25;11202:12;:10;:12::i;:::-;11190:25;;;;;;;;;;;;;;;:34;11216:7;11190:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;11158:8;:83::i;:::-;11259:4;11252:11;;11053:218;;;;:::o;42926:123::-;42997:6;42982:11;;:21;;;;;;;:::i;:::-;;;;;;;;43014:27;43020:12;:10;:12::i;:::-;43034:6;43014:5;:27::i;:::-;42926:123;:::o;29415:38::-;;;:::o;37404:125::-;37469:4;37493:19;:28;37513:7;37493:28;;;;;;;;;;;;;;;;;;;;;;;;;37486:35;;37404:125;;;:::o;30337:28::-;;;;:::o;29969:30::-;;;;;;;;;;;;;:::o;30008:176::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;8762:127::-;8836:7;8863:9;:18;8873:7;8863:18;;;;;;;;;;;;;;;;8856:25;;8762:127;;;:::o;21932:148::-;21512:12;:10;:12::i;:::-;21502:22;;:6;;;;;;;;;;;:22;;;21494:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;22039:1:::1;22002:40;;22023:6;;;;;;;;;;;22002:40;;;;;;;;;;;;22070:1;22053:6;;:19;;;;;;;;;;;;;;;;;;21932:148::o:0;34642:144::-;21512:12;:10;:12::i;:::-;21502:22;;:6;;;;;;;;;;;:22;;;21494:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;34774:4:::1;34732:31;:39;34764:6;34732:39;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;34642:144:::0;;:::o;30227:30::-;;;;:::o;34991:391::-;21512:12;:10;:12::i;:::-;21502:22;;:6;;;;;;;;;;;:22;;;21494:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;35128:13:::1;35110:15;:31;;;;35170:13;35152:15;:31;;;;35209:10;35194:12;:25;;;;35281:12;;35263:15;;35245;;:33;;;;:::i;:::-;:48;;;;:::i;:::-;35230:12;:63;;;;35328:2;35312:12;;:18;;35304:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;34991:391:::0;;;:::o;21290:79::-;21328:7;21355:6;;;;;;;;;;;21348:13;;21290:79;:::o;30372:31::-;;;;:::o;34882:101::-;21512:12;:10;:12::i;:::-;21502:22;;:6;;;;;;;;;;;:22;;;21494:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;34968:7:::1;34954:11;;:21;;;;;;;;;;;;;;;;;;34882:101:::0;:::o;7690:104::-;7746:13;7779:7;7772:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7690:104;:::o;36108:242::-;21512:12;:10;:12::i;:::-;21502:22;;:6;;;;;;;;;;;:22;;;21494:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;36215:13:::1;36207:21;;:4;:21;;;;36199:91;;;;;;;;;;;;:::i;:::-;;;;;;;;;36301:41;36330:4;36336:5;36301:28;:41::i;:::-;36108:242:::0;;:::o;30565:30::-;;;;:::o;11774:269::-;11867:4;11884:129;11893:12;:10;:12::i;:::-;11907:7;11916:96;11955:15;11916:96;;;;;;;;;;;;;;;;;:11;:25;11928:12;:10;:12::i;:::-;11916:25;;;;;;;;;;;;;;;:34;11942:7;11916:34;;;;;;;;;;;;;;;;:38;;:96;;;;;:::i;:::-;11884:8;:129::i;:::-;12031:4;12024:11;;11774:269;;;;:::o;29820:45::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;9102:175::-;9188:4;9205:42;9215:12;:10;:12::i;:::-;9229:9;9240:6;9205:9;:42::i;:::-;9265:4;9258:11;;9102:175;;;;:::o;36554:429::-;21512:12;:10;:12::i;:::-;21502:22;;:6;;;;;;;;;;;:22;;;21494:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;36673:10:::1;:20;;;;;;;;;;;;36639:55;;36662:9;36639:55;;;;;;;;;;;;36705:44;36721:10;:20;;;;;;;;;;;;36743:5;36705:15;:44::i;:::-;36760:54;36786:10;:20;;;;;;;;;;;;36808:5;36760:25;:54::i;:::-;36848:9;36825:10;:20;;;:32;;;;;;;;;;;;;;;;;;36868:43;36884:10;:20;;;;;;;;;;;;36906:4;36868:15;:43::i;:::-;36922:53;36948:10;:20;;;;;;;;;;;;36970:4;36922:25;:53::i;:::-;36554:429:::0;:::o;30967:58::-;;;;;;;;;;;;;;;;;;;;;;:::o;35799:182::-;21512:12;:10;:12::i;:::-;21502:22;;:6;;;;;;;;;;;:22;;;21494:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;35915:8:::1;35884:19;:28;35904:7;35884:28;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;35955:7;35939:34;;;35964:8;35939:34;;;;;;:::i;:::-;;;;;;;;35799:182:::0;;:::o;35390:401::-;21512:12;:10;:12::i;:::-;21502:22;;:6;;;;;;;;;;;:22;;;21494:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;35529:13:::1;35510:16;:32;;;;35572:13;35553:16;:32;;;;35612:10;35596:13;:26;;;;35687:13;;35668:16;;35649;;:35;;;;:::i;:::-;:51;;;;:::i;:::-;35633:13;:67;;;;35736:2;35719:13;;:19;;35711:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;35390:401:::0;;;:::o;36991:405::-;21512:12;:10;:12::i;:::-;21502:22;;:6;;;;;;;;;;;:22;;;21494:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;37104:10:::1;:17;;;;;;;;;;;;37073:49;;37093:9;37073:49;;;;;;;;;;;;37133:41;37149:10;:17;;;;;;;;;;;;37168:5;37133:15;:41::i;:::-;37185:51;37211:10;:17;;;;;;;;;;;;37230:5;37185:25;:51::i;:::-;37267:9;37247:10;:17;;;:29;;;;;;;;;;;;;;;;;;37287:40;37303:10;:17;;;;;;;;;;;;37322:4;37287:15;:40::i;:::-;37338:50;37364:10;:17;;;;;;;;;;;;37383:4;37338:25;:50::i;:::-;36991:405:::0;:::o;34284:350::-;21512:12;:10;:12::i;:::-;21502:22;;:6;;;;;;;;;;;:22;;;21494:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;34408:6:::1;34404:1;34388:13;:11;:13::i;:::-;:17;;;;:::i;:::-;:26;;;;:::i;:::-;34375:9;:39;;34367:105;;;;;;;;;;;;:::i;:::-;;;;;;;;;34524:4;34520:1;34504:13;:11;:13::i;:::-;:17;;;;:::i;:::-;:24;;;;:::i;:::-;34491:9;:37;;34483:102;;;;;;;;;;;;:::i;:::-;;;;;;;;;34617:9;34596:18;:30;;;;34284:350:::0;:::o;30193:27::-;;;;:::o;29741:30::-;;;;:::o;9340:151::-;9429:7;9456:11;:18;9468:5;9456:18;;;;;;;;;;;;;;;:27;9475:7;9456:27;;;;;;;;;;;;;;;;9449:34;;9340:151;;;;:::o;30448:28::-;;;;:::o;29778:33::-;;;;:::o;30264:30::-;;;;:::o;22235:244::-;21512:12;:10;:12::i;:::-;21502:22;;:6;;;;;;;;;;;:22;;;21494:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;22344:1:::1;22324:22;;:8;:22;;;;22316:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;22434:8;22405:38;;22426:6;;;;;;;;;;;22405:38;;;;;;;;;;;;22463:8;22454:6;;:17;;;;;;;;;;;;;;;;;;22235:244:::0;:::o;30410:31::-;;;;:::o;29874:45::-;;;;;;;;;;;;;;;;;;;;;;:::o;16338:181::-;16396:7;16416:9;16432:1;16428;:5;;;;:::i;:::-;16416:17;;16457:1;16452;:6;;16444:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;16510:1;16503:8;;;16338:181;;;;:::o;109:98::-;162:7;189:10;182:17;;109:98;:::o;14960:380::-;15113:1;15096:19;;:5;:19;;;;15088:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15194:1;15175:21;;:7;:21;;;;15167:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15278:6;15248:11;:18;15260:5;15248:18;;;;;;;;;;;;;;;:27;15267:7;15248:27;;;;;;;;;;;;;;;:36;;;;15316:7;15300:32;;15309:5;15300:32;;;15325:6;15300:32;;;;;;:::i;:::-;;;;;;;;14960:380;;;:::o;37537:2760::-;37685:1;37669:18;;:4;:18;;;;37661:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37762:1;37748:16;;:2;:16;;;;37740:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;37830:1;37820:6;:11;37817:92;;;37848:28;37864:4;37870:2;37874:1;37848:15;:28::i;:::-;37891:7;;37817:92;37921:10;37934:25;:31;37960:4;37934:31;;;;;;;;;;;;;;;;;;;;;;;;;37921:44;;37976:11;37990:25;:29;38016:2;37990:29;;;;;;;;;;;;;;;;;;;;;;;;;37976:43;;38036:16;;;;;;;;;;;:58;;;;;38057:31;:37;38089:4;38057:37;;;;;;;;;;;;;;;;;;;;;;;;;38056:38;38036:58;38032:162;;;38120:13;:19;38134:4;38120:19;;;;;;;;;;;;;;;;;;;;;;;;;38119:20;:42;;;;;38144:13;:17;38158:2;38144:17;;;;;;;;;;;;;;;;;;;;;;;;;38143:18;38119:42;38111:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;38032:162;38206:28;38237:24;38255:4;38237:9;:24::i;:::-;38206:55;;38274:12;38313:18;;38289:20;:42;;38274:57;;38361:7;:35;;;;;38385:11;;;;;;;;;;;38361:35;:61;;;;;38414:8;;;;;;;;;;;38413:9;38361:61;:84;;;;;38440:5;38439:6;38361:84;:127;;;;;38463:19;:25;38483:4;38463:25;;;;;;;;;;;;;;;;;;;;;;;;;38462:26;38361:127;:168;;;;;38506:19;:23;38526:2;38506:23;;;;;;;;;;;;;;;;;;;;;;;;;38505:24;38361:168;38344:299;;;38567:4;38556:8;;:15;;;;;;;;;;;;;;;;;;38588:10;:8;:10::i;:::-;38626:5;38615:8;;:16;;;;;;;;;;;;;;;;;;38344:299;38655:12;38671:8;;;;;;;;;;;38670:9;38655:24;;38780:19;:25;38800:4;38780:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;38809:19;:23;38829:2;38809:23;;;;;;;;;;;;;;;;;;;;;;;;;38780:52;38777:99;;;38859:5;38849:15;;38777:99;38892:6;:15;;;;38902:5;38892:15;38888:352;;;38924:18;38945:127;;;;;;;;38972:6;:14;;38985:1;38972:14;;;38981:1;38972:14;38945:127;;;;;;39009:6;38945:127;;;;39041:15;38945:127;;;38924:148;;39091:6;39087:142;;;39118:10;:16;39129:4;39118:16;;;;;;;;;;;;;;;39140:5;39118:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39087:142;;;39187:10;:14;39198:2;39187:14;;;;;;;;;;;;;;;39207:5;39187:26;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39087:142;38909:331;38888:352;39252:12;39356:7;39353:891;;;39382:5;:25;;;;;39406:1;39391:12;;:16;39382:25;39379:718;;;39435:33;39464:3;39435:24;39446:12;;39435:6;:10;;:24;;;;:::i;:::-;:28;;:33;;;;:::i;:::-;39428:40;;39534:12;;39516:15;;39509:4;:22;;;;:::i;:::-;:37;;;;:::i;:::-;39487:18;;:59;;;;;;;:::i;:::-;;;;;;;;39606:12;;39591;;39584:4;:19;;;;:::i;:::-;:34;;;;:::i;:::-;39565:15;;:53;;;;;;;:::i;:::-;;;;;;;;39684:12;;39666:15;;39659:4;:22;;;;:::i;:::-;:37;;;;:::i;:::-;39637:18;;:59;;;;;;;:::i;:::-;;;;;;;;39379:718;;;39759:6;:27;;;;;39785:1;39769:13;;:17;39759:27;39755:342;;;39813:34;39843:3;39813:25;39824:13;;39813:6;:10;;:25;;;;:::i;:::-;:29;;:34;;;;:::i;:::-;39806:41;;39914:13;;39895:16;;39888:4;:23;;;;:::i;:::-;:39;;;;:::i;:::-;39866:18;;:61;;;;;;;:::i;:::-;;;;;;;;39988:13;;39972;;39965:4;:20;;;;:::i;:::-;:36;;;;:::i;:::-;39946:15;;:55;;;;;;;:::i;:::-;;;;;;;;40068:13;;40049:16;;40042:4;:23;;;;:::i;:::-;:39;;;;:::i;:::-;40020:18;;:61;;;;;;;:::i;:::-;;;;;;;;39755:342;39379:718;40123:1;40116:4;:8;40113:89;;;40144:42;40160:4;40174;40181;40144:15;:42::i;:::-;40113:89;40228:4;40218:14;;;;;:::i;:::-;;;39353:891;40256:33;40272:4;40278:2;40282:6;40256:15;:33::i;:::-;37650:2647;;;;;;37537:2760;;;;:::o;17241:192::-;17327:7;17360:1;17355;:6;;17363:12;17347:29;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;17387:9;17403:1;17399;:5;;;;:::i;:::-;17387:17;;17424:1;17417:8;;;17241:192;;;;;:::o;14104:418::-;14207:1;14188:21;;:7;:21;;;;14180:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;14260:49;14281:7;14298:1;14302:6;14260:20;:49::i;:::-;14343:68;14366:6;14343:68;;;;;;;;;;;;;;;;;:9;:18;14353:7;14343:18;;;;;;;;;;;;;;;;:22;;:68;;;;;:::i;:::-;14322:9;:18;14332:7;14322:18;;;;;;;;;;;;;;;:89;;;;14437:24;14454:6;14437:12;;:16;;:24;;;;:::i;:::-;14422:12;:39;;;;14503:1;14477:37;;14486:7;14477:37;;;14507:6;14477:37;;;;;;:::i;:::-;;;;;;;;14104:418;;:::o;36358:188::-;36475:5;36441:25;:31;36467:4;36441:31;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;36532:5;36498:40;;36526:4;36498:40;;;;;;;;;;;;36358:188;;:::o;12533:573::-;12691:1;12673:20;;:6;:20;;;;12665:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;12775:1;12754:23;;:9;:23;;;;12746:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;12830:47;12851:6;12859:9;12870:6;12830:20;:47::i;:::-;12910:71;12932:6;12910:71;;;;;;;;;;;;;;;;;:9;:17;12920:6;12910:17;;;;;;;;;;;;;;;;:21;;:71;;;;;:::i;:::-;12890:9;:17;12900:6;12890:17;;;;;;;;;;;;;;;:91;;;;13015:32;13040:6;13015:9;:20;13025:9;13015:20;;;;;;;;;;;;;;;;:24;;:32;;;;:::i;:::-;12992:9;:20;13002:9;12992:20;;;;;;;;;;;;;;;:55;;;;13080:9;13063:35;;13072:6;13063:35;;;13091:6;13063:35;;;;;;:::i;:::-;;;;;;;;12533:573;;;:::o;41431:1487::-;41470:23;41496:24;41514:4;41496:9;:24::i;:::-;41470:50;;41531:25;41601:15;;41580:18;;41559;;:39;;;;:::i;:::-;:57;;;;:::i;:::-;41531:85;;41651:1;41632:15;:20;:46;;;;41677:1;41656:17;:22;41632:46;41629:60;;;41681:7;;;;41629:60;41750:23;41835:1;41815:17;41794:18;;41776:15;:36;;;;:::i;:::-;:56;;;;:::i;:::-;:60;;;;:::i;:::-;41750:86;;41847:26;41876:36;41896:15;41876;:19;;:36;;;;:::i;:::-;41847:65;;41925:25;41953:21;41925:49;;41987:36;42004:18;41987:16;:36::i;:::-;42036:18;42057:44;42083:17;42057:21;:25;;:44;;;;:::i;:::-;42036:65;;42114:23;42140:57;42179:17;42140:34;42155:18;;42140:10;:14;;:34;;;;:::i;:::-;:38;;:57;;;;:::i;:::-;42114:83;;42208:20;42231:54;42267:17;42231:31;42246:15;;42231:10;:14;;:31;;;;:::i;:::-;:35;;:54;;;;:::i;:::-;42208:77;;42298:23;42355:12;42337:15;42324:10;:28;;;;:::i;:::-;:43;;;;:::i;:::-;42298:69;;42401:1;42380:18;:22;;;;42434:1;42413:18;:22;;;;42464:1;42446:15;:19;;;;42479:12;42504:10;:20;;;;;;;;;;;;42496:34;;42538:15;42496:62;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42478:80;;;42590:1;42572:15;:19;:42;;;;;42613:1;42595:15;:19;42572:42;42569:210;;;42630:46;42643:15;42660;42630:12;:46::i;:::-;42696:71;42711:18;42731:15;42748:18;;42696:71;;;;;;;;:::i;:::-;;;;;;;;42569:210;42853:10;:17;;;;;;;;;;;;42845:31;;42884:21;42845:65;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42832:78;;;;;41459:1459;;;;;;;;;;41431:1487;:::o;17692:471::-;17750:7;18000:1;17995;:6;17991:47;;;18025:1;18018:8;;;;17991:47;18050:9;18066:1;18062;:5;;;;:::i;:::-;18050:17;;18095:1;18090;18086;:5;;;;:::i;:::-;:10;18078:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;18154:1;18147:8;;;17692:471;;;;;:::o;18639:132::-;18697:7;18724:39;18728:1;18731;18724:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;18717:46;;18639:132;;;;:::o;15943:125::-;;;;:::o;16802:136::-;16860:7;16887:43;16891:1;16894;16887:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;16880:50;;16802:136;;;;:::o;40305:593::-;40433:21;40471:1;40457:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40433:40;;40502:4;40484;40489:1;40484:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;40528:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;40518:4;40523:1;40518:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;40563:62;40580:4;40595:15;40613:11;40563:8;:62::i;:::-;40664:15;:66;;;40745:11;40771:1;40815:4;40842;40862:15;40664:224;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40360:538;40305:593;:::o;40906:517::-;41054:62;41071:4;41086:15;41104:11;41054:8;:62::i;:::-;41159:15;:31;;;41198:9;41231:4;41251:11;41277:1;41320;29506:6;41389:15;41159:256;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;40906:517;;:::o;19267:278::-;19353:7;19385:1;19381;:5;19388:12;19373:28;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;19412:9;19428:1;19424;:5;;;;:::i;:::-;19412:17;;19536:1;19529:8;;;19267:278;;;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:307::-;355:1;365:113;379:6;376:1;373:13;365:113;;;464:1;459:3;455:11;449:18;445:1;440:3;436:11;429:39;401:2;398:1;394:10;389:15;;365:113;;;496:6;493:1;490:13;487:101;;;576:1;567:6;562:3;558:16;551:27;487:101;336:258;287:307;;;:::o;600:102::-;641:6;692:2;688:7;683:2;676:5;672:14;668:28;658:38;;600:102;;;:::o;708:364::-;796:3;824:39;857:5;824:39;:::i;:::-;879:71;943:6;938:3;879:71;:::i;:::-;872:78;;959:52;1004:6;999:3;992:4;985:5;981:16;959:52;:::i;:::-;1036:29;1058:6;1036:29;:::i;:::-;1031:3;1027:39;1020:46;;800:272;708:364;;;;:::o;1078:313::-;1191:4;1229:2;1218:9;1214:18;1206:26;;1278:9;1272:4;1268:20;1264:1;1253:9;1249:17;1242:47;1306:78;1379:4;1370:6;1306:78;:::i;:::-;1298:86;;1078:313;;;;:::o;1478:117::-;1587:1;1584;1577:12;1724:126;1761:7;1801:42;1794:5;1790:54;1779:65;;1724:126;;;:::o;1856:96::-;1893:7;1922:24;1940:5;1922:24;:::i;:::-;1911:35;;1856:96;;;:::o;1958:122::-;2031:24;2049:5;2031:24;:::i;:::-;2024:5;2021:35;2011:63;;2070:1;2067;2060:12;2011:63;1958:122;:::o;2086:139::-;2132:5;2170:6;2157:20;2148:29;;2186:33;2213:5;2186:33;:::i;:::-;2086:139;;;;:::o;2231:77::-;2268:7;2297:5;2286:16;;2231:77;;;:::o;2314:122::-;2387:24;2405:5;2387:24;:::i;:::-;2380:5;2377:35;2367:63;;2426:1;2423;2416:12;2367:63;2314:122;:::o;2442:139::-;2488:5;2526:6;2513:20;2504:29;;2542:33;2569:5;2542:33;:::i;:::-;2442:139;;;;:::o;2587:474::-;2655:6;2663;2712:2;2700:9;2691:7;2687:23;2683:32;2680:119;;;2718:79;;:::i;:::-;2680:119;2838:1;2863:53;2908:7;2899:6;2888:9;2884:22;2863:53;:::i;:::-;2853:63;;2809:117;2965:2;2991:53;3036:7;3027:6;3016:9;3012:22;2991:53;:::i;:::-;2981:63;;2936:118;2587:474;;;;;:::o;3067:90::-;3101:7;3144:5;3137:13;3130:21;3119:32;;3067:90;;;:::o;3163:109::-;3244:21;3259:5;3244:21;:::i;:::-;3239:3;3232:34;3163:109;;:::o;3278:210::-;3365:4;3403:2;3392:9;3388:18;3380:26;;3416:65;3478:1;3467:9;3463:17;3454:6;3416:65;:::i;:::-;3278:210;;;;:::o;3494:118::-;3581:24;3599:5;3581:24;:::i;:::-;3576:3;3569:37;3494:118;;:::o;3618:222::-;3711:4;3749:2;3738:9;3734:18;3726:26;;3762:71;3830:1;3819:9;3815:17;3806:6;3762:71;:::i;:::-;3618:222;;;;:::o;3846:329::-;3905:6;3954:2;3942:9;3933:7;3929:23;3925:32;3922:119;;;3960:79;;:::i;:::-;3922:119;4080:1;4105:53;4150:7;4141:6;4130:9;4126:22;4105:53;:::i;:::-;4095:63;;4051:117;3846:329;;;;:::o;4181:116::-;4251:21;4266:5;4251:21;:::i;:::-;4244:5;4241:32;4231:60;;4287:1;4284;4277:12;4231:60;4181:116;:::o;4303:133::-;4346:5;4384:6;4371:20;4362:29;;4400:30;4424:5;4400:30;:::i;:::-;4303:133;;;;:::o;4442:468::-;4507:6;4515;4564:2;4552:9;4543:7;4539:23;4535:32;4532:119;;;4570:79;;:::i;:::-;4532:119;4690:1;4715:53;4760:7;4751:6;4740:9;4736:22;4715:53;:::i;:::-;4705:63;;4661:117;4817:2;4843:50;4885:7;4876:6;4865:9;4861:22;4843:50;:::i;:::-;4833:60;;4788:115;4442:468;;;;;:::o;4916:60::-;4944:3;4965:5;4958:12;;4916:60;;;:::o;4982:142::-;5032:9;5065:53;5083:34;5092:24;5110:5;5092:24;:::i;:::-;5083:34;:::i;:::-;5065:53;:::i;:::-;5052:66;;4982:142;;;:::o;5130:126::-;5180:9;5213:37;5244:5;5213:37;:::i;:::-;5200:50;;5130:126;;;:::o;5262:153::-;5339:9;5372:37;5403:5;5372:37;:::i;:::-;5359:50;;5262:153;;;:::o;5421:185::-;5535:64;5593:5;5535:64;:::i;:::-;5530:3;5523:77;5421:185;;:::o;5612:276::-;5732:4;5770:2;5759:9;5755:18;5747:26;;5783:98;5878:1;5867:9;5863:17;5854:6;5783:98;:::i;:::-;5612:276;;;;:::o;5894:619::-;5971:6;5979;5987;6036:2;6024:9;6015:7;6011:23;6007:32;6004:119;;;6042:79;;:::i;:::-;6004:119;6162:1;6187:53;6232:7;6223:6;6212:9;6208:22;6187:53;:::i;:::-;6177:63;;6133:117;6289:2;6315:53;6360:7;6351:6;6340:9;6336:22;6315:53;:::i;:::-;6305:63;;6260:118;6417:2;6443:53;6488:7;6479:6;6468:9;6464:22;6443:53;:::i;:::-;6433:63;;6388:118;5894:619;;;;;:::o;6519:118::-;6606:24;6624:5;6606:24;:::i;:::-;6601:3;6594:37;6519:118;;:::o;6643:222::-;6736:4;6774:2;6763:9;6759:18;6751:26;;6787:71;6855:1;6844:9;6840:17;6831:6;6787:71;:::i;:::-;6643:222;;;;:::o;6871:323::-;6927:6;6976:2;6964:9;6955:7;6951:23;6947:32;6944:119;;;6982:79;;:::i;:::-;6944:119;7102:1;7127:50;7169:7;7160:6;7149:9;7145:22;7127:50;:::i;:::-;7117:60;;7073:114;6871:323;;;;:::o;7200:86::-;7235:7;7275:4;7268:5;7264:16;7253:27;;7200:86;;;:::o;7292:112::-;7375:22;7391:5;7375:22;:::i;:::-;7370:3;7363:35;7292:112;;:::o;7410:214::-;7499:4;7537:2;7526:9;7522:18;7514:26;;7550:67;7614:1;7603:9;7599:17;7590:6;7550:67;:::i;:::-;7410:214;;;;:::o;7630:329::-;7689:6;7738:2;7726:9;7717:7;7713:23;7709:32;7706:119;;;7744:79;;:::i;:::-;7706:119;7864:1;7889:53;7934:7;7925:6;7914:9;7910:22;7889:53;:::i;:::-;7879:63;;7835:117;7630:329;;;;:::o;7965:332::-;8086:4;8124:2;8113:9;8109:18;8101:26;;8137:71;8205:1;8194:9;8190:17;8181:6;8137:71;:::i;:::-;8218:72;8286:2;8275:9;8271:18;8262:6;8218:72;:::i;:::-;7965:332;;;;;:::o;8303:619::-;8380:6;8388;8396;8445:2;8433:9;8424:7;8420:23;8416:32;8413:119;;;8451:79;;:::i;:::-;8413:119;8571:1;8596:53;8641:7;8632:6;8621:9;8617:22;8596:53;:::i;:::-;8586:63;;8542:117;8698:2;8724:53;8769:7;8760:6;8749:9;8745:22;8724:53;:::i;:::-;8714:63;;8669:118;8826:2;8852:53;8897:7;8888:6;8877:9;8873:22;8852:53;:::i;:::-;8842:63;;8797:118;8303:619;;;;;:::o;8928:442::-;9077:4;9115:2;9104:9;9100:18;9092:26;;9128:71;9196:1;9185:9;9181:17;9172:6;9128:71;:::i;:::-;9209:72;9277:2;9266:9;9262:18;9253:6;9209:72;:::i;:::-;9291;9359:2;9348:9;9344:18;9335:6;9291:72;:::i;:::-;8928:442;;;;;;:::o;9376:474::-;9444:6;9452;9501:2;9489:9;9480:7;9476:23;9472:32;9469:119;;;9507:79;;:::i;:::-;9469:119;9627:1;9652:53;9697:7;9688:6;9677:9;9673:22;9652:53;:::i;:::-;9642:63;;9598:117;9754:2;9780:53;9825:7;9816:6;9805:9;9801:22;9780:53;:::i;:::-;9770:63;;9725:118;9376:474;;;;;:::o;9856:182::-;9996:34;9992:1;9984:6;9980:14;9973:58;9856:182;:::o;10044:366::-;10186:3;10207:67;10271:2;10266:3;10207:67;:::i;:::-;10200:74;;10283:93;10372:3;10283:93;:::i;:::-;10401:2;10396:3;10392:12;10385:19;;10044:366;;;:::o;10416:419::-;10582:4;10620:2;10609:9;10605:18;10597:26;;10669:9;10663:4;10659:20;10655:1;10644:9;10640:17;10633:47;10697:131;10823:4;10697:131;:::i;:::-;10689:139;;10416:419;;;:::o;10841:180::-;10889:77;10886:1;10879:88;10986:4;10983:1;10976:15;11010:4;11007:1;11000:15;11027:320;11071:6;11108:1;11102:4;11098:12;11088:22;;11155:1;11149:4;11145:12;11176:18;11166:81;;11232:4;11224:6;11220:17;11210:27;;11166:81;11294:2;11286:6;11283:14;11263:18;11260:38;11257:84;;;11313:18;;:::i;:::-;11257:84;11078:269;11027:320;;;:::o;11353:180::-;11401:77;11398:1;11391:88;11498:4;11495:1;11488:15;11522:4;11519:1;11512:15;11539:305;11579:3;11598:20;11616:1;11598:20;:::i;:::-;11593:25;;11632:20;11650:1;11632:20;:::i;:::-;11627:25;;11786:1;11718:66;11714:74;11711:1;11708:81;11705:107;;;11792:18;;:::i;:::-;11705:107;11836:1;11833;11829:9;11822:16;;11539:305;;;;:::o;11850:226::-;11990:34;11986:1;11978:6;11974:14;11967:58;12059:9;12054:2;12046:6;12042:15;12035:34;11850:226;:::o;12082:366::-;12224:3;12245:67;12309:2;12304:3;12245:67;:::i;:::-;12238:74;;12321:93;12410:3;12321:93;:::i;:::-;12439:2;12434:3;12430:12;12423:19;;12082:366;;;:::o;12454:419::-;12620:4;12658:2;12647:9;12643:18;12635:26;;12707:9;12701:4;12697:20;12693:1;12682:9;12678:17;12671:47;12735:131;12861:4;12735:131;:::i;:::-;12727:139;;12454:419;;;:::o;12879:244::-;13019:34;13015:1;13007:6;13003:14;12996:58;13088:27;13083:2;13075:6;13071:15;13064:52;12879:244;:::o;13129:366::-;13271:3;13292:67;13356:2;13351:3;13292:67;:::i;:::-;13285:74;;13368:93;13457:3;13368:93;:::i;:::-;13486:2;13481:3;13477:12;13470:19;;13129:366;;;:::o;13501:419::-;13667:4;13705:2;13694:9;13690:18;13682:26;;13754:9;13748:4;13744:20;13740:1;13729:9;13725:17;13718:47;13782:131;13908:4;13782:131;:::i;:::-;13774:139;;13501:419;;;:::o;13926:227::-;14066:34;14062:1;14054:6;14050:14;14043:58;14135:10;14130:2;14122:6;14118:15;14111:35;13926:227;:::o;14159:366::-;14301:3;14322:67;14386:2;14381:3;14322:67;:::i;:::-;14315:74;;14398:93;14487:3;14398:93;:::i;:::-;14516:2;14511:3;14507:12;14500:19;;14159:366;;;:::o;14531:419::-;14697:4;14735:2;14724:9;14720:18;14712:26;;14784:9;14778:4;14774:20;14770:1;14759:9;14755:17;14748:47;14812:131;14938:4;14812:131;:::i;:::-;14804:139;;14531:419;;;:::o;14956:348::-;14996:7;15019:20;15037:1;15019:20;:::i;:::-;15014:25;;15053:20;15071:1;15053:20;:::i;:::-;15048:25;;15241:1;15173:66;15169:74;15166:1;15163:81;15158:1;15151:9;15144:17;15140:105;15137:131;;;15248:18;;:::i;:::-;15137:131;15296:1;15293;15289:9;15278:20;;14956:348;;;;:::o;15310:180::-;15358:77;15355:1;15348:88;15455:4;15452:1;15445:15;15479:4;15476:1;15469:15;15496:185;15536:1;15553:20;15571:1;15553:20;:::i;:::-;15548:25;;15587:20;15605:1;15587:20;:::i;:::-;15582:25;;15626:1;15616:35;;15631:18;;:::i;:::-;15616:35;15673:1;15670;15666:9;15661:14;;15496:185;;;;:::o;15687:240::-;15827:34;15823:1;15815:6;15811:14;15804:58;15896:23;15891:2;15883:6;15879:15;15872:48;15687:240;:::o;15933:366::-;16075:3;16096:67;16160:2;16155:3;16096:67;:::i;:::-;16089:74;;16172:93;16261:3;16172:93;:::i;:::-;16290:2;16285:3;16281:12;16274:19;;15933:366;;;:::o;16305:419::-;16471:4;16509:2;16498:9;16494:18;16486:26;;16558:9;16552:4;16548:20;16544:1;16533:9;16529:17;16522:47;16586:131;16712:4;16586:131;:::i;:::-;16578:139;;16305:419;;;:::o;16730:239::-;16870:34;16866:1;16858:6;16854:14;16847:58;16939:22;16934:2;16926:6;16922:15;16915:47;16730:239;:::o;16975:366::-;17117:3;17138:67;17202:2;17197:3;17138:67;:::i;:::-;17131:74;;17214:93;17303:3;17214:93;:::i;:::-;17332:2;17327:3;17323:12;17316:19;;16975:366;;;:::o;17347:419::-;17513:4;17551:2;17540:9;17536:18;17528:26;;17600:9;17594:4;17590:20;17586:1;17575:9;17571:17;17564:47;17628:131;17754:4;17628:131;:::i;:::-;17620:139;;17347:419;;;:::o;17772:225::-;17912:34;17908:1;17900:6;17896:14;17889:58;17981:8;17976:2;17968:6;17964:15;17957:33;17772:225;:::o;18003:366::-;18145:3;18166:67;18230:2;18225:3;18166:67;:::i;:::-;18159:74;;18242:93;18331:3;18242:93;:::i;:::-;18360:2;18355:3;18351:12;18344:19;;18003:366;;;:::o;18375:419::-;18541:4;18579:2;18568:9;18564:18;18556:26;;18628:9;18622:4;18618:20;18614:1;18603:9;18599:17;18592:47;18656:131;18782:4;18656:131;:::i;:::-;18648:139;;18375:419;;;:::o;18800:177::-;18940:29;18936:1;18928:6;18924:14;18917:53;18800:177;:::o;18983:366::-;19125:3;19146:67;19210:2;19205:3;19146:67;:::i;:::-;19139:74;;19222:93;19311:3;19222:93;:::i;:::-;19340:2;19335:3;19331:12;19324:19;;18983:366;;;:::o;19355:419::-;19521:4;19559:2;19548:9;19544:18;19536:26;;19608:9;19602:4;19598:20;19594:1;19583:9;19579:17;19572:47;19636:131;19762:4;19636:131;:::i;:::-;19628:139;;19355:419;;;:::o;19780:223::-;19920:34;19916:1;19908:6;19904:14;19897:58;19989:6;19984:2;19976:6;19972:15;19965:31;19780:223;:::o;20009:366::-;20151:3;20172:67;20236:2;20231:3;20172:67;:::i;:::-;20165:74;;20248:93;20337:3;20248:93;:::i;:::-;20366:2;20361:3;20357:12;20350:19;;20009:366;;;:::o;20381:419::-;20547:4;20585:2;20574:9;20570:18;20562:26;;20634:9;20628:4;20624:20;20620:1;20609:9;20605:17;20598:47;20662:131;20788:4;20662:131;:::i;:::-;20654:139;;20381:419;;;:::o;20806:221::-;20946:34;20942:1;20934:6;20930:14;20923:58;21015:4;21010:2;21002:6;20998:15;20991:29;20806:221;:::o;21033:366::-;21175:3;21196:67;21260:2;21255:3;21196:67;:::i;:::-;21189:74;;21272:93;21361:3;21272:93;:::i;:::-;21390:2;21385:3;21381:12;21374:19;;21033:366;;;:::o;21405:419::-;21571:4;21609:2;21598:9;21594:18;21586:26;;21658:9;21652:4;21648:20;21644:1;21633:9;21629:17;21622:47;21686:131;21812:4;21686:131;:::i;:::-;21678:139;;21405:419;;;:::o;21830:224::-;21970:34;21966:1;21958:6;21954:14;21947:58;22039:7;22034:2;22026:6;22022:15;22015:32;21830:224;:::o;22060:366::-;22202:3;22223:67;22287:2;22282:3;22223:67;:::i;:::-;22216:74;;22299:93;22388:3;22299:93;:::i;:::-;22417:2;22412:3;22408:12;22401:19;;22060:366;;;:::o;22432:419::-;22598:4;22636:2;22625:9;22621:18;22613:26;;22685:9;22679:4;22675:20;22671:1;22660:9;22656:17;22649:47;22713:131;22839:4;22713:131;:::i;:::-;22705:139;;22432:419;;;:::o;22857:222::-;22997:34;22993:1;22985:6;22981:14;22974:58;23066:5;23061:2;23053:6;23049:15;23042:30;22857:222;:::o;23085:366::-;23227:3;23248:67;23312:2;23307:3;23248:67;:::i;:::-;23241:74;;23324:93;23413:3;23324:93;:::i;:::-;23442:2;23437:3;23433:12;23426:19;;23085:366;;;:::o;23457:419::-;23623:4;23661:2;23650:9;23646:18;23638:26;;23710:9;23704:4;23700:20;23696:1;23685:9;23681:17;23674:47;23738:131;23864:4;23738:131;:::i;:::-;23730:139;;23457:419;;;:::o;23882:166::-;24022:18;24018:1;24010:6;24006:14;23999:42;23882:166;:::o;24054:366::-;24196:3;24217:67;24281:2;24276:3;24217:67;:::i;:::-;24210:74;;24293:93;24382:3;24293:93;:::i;:::-;24411:2;24406:3;24402:12;24395:19;;24054:366;;;:::o;24426:419::-;24592:4;24630:2;24619:9;24615:18;24607:26;;24679:9;24673:4;24669:20;24665:1;24654:9;24650:17;24643:47;24707:131;24833:4;24707:131;:::i;:::-;24699:139;;24426:419;;;:::o;24851:191::-;24891:4;24911:20;24929:1;24911:20;:::i;:::-;24906:25;;24945:20;24963:1;24945:20;:::i;:::-;24940:25;;24984:1;24981;24978:8;24975:34;;;24989:18;;:::i;:::-;24975:34;25034:1;25031;25027:9;25019:17;;24851:191;;;;:::o;25048:220::-;25188:34;25184:1;25176:6;25172:14;25165:58;25257:3;25252:2;25244:6;25240:15;25233:28;25048:220;:::o;25274:366::-;25416:3;25437:67;25501:2;25496:3;25437:67;:::i;:::-;25430:74;;25513:93;25602:3;25513:93;:::i;:::-;25631:2;25626:3;25622:12;25615:19;;25274:366;;;:::o;25646:419::-;25812:4;25850:2;25839:9;25835:18;25827:26;;25899:9;25893:4;25889:20;25885:1;25874:9;25870:17;25863:47;25927:131;26053:4;25927:131;:::i;:::-;25919:139;;25646:419;;;:::o;26071:147::-;26172:11;26209:3;26194:18;;26071:147;;;;:::o;26224:114::-;;:::o;26344:398::-;26503:3;26524:83;26605:1;26600:3;26524:83;:::i;:::-;26517:90;;26616:93;26705:3;26616:93;:::i;:::-;26734:1;26729:3;26725:11;26718:18;;26344:398;;;:::o;26748:379::-;26932:3;26954:147;27097:3;26954:147;:::i;:::-;26947:154;;27118:3;27111:10;;26748:379;;;:::o;27133:220::-;27273:34;27269:1;27261:6;27257:14;27250:58;27342:3;27337:2;27329:6;27325:15;27318:28;27133:220;:::o;27359:366::-;27501:3;27522:67;27586:2;27581:3;27522:67;:::i;:::-;27515:74;;27598:93;27687:3;27598:93;:::i;:::-;27716:2;27711:3;27707:12;27700:19;;27359:366;;;:::o;27731:419::-;27897:4;27935:2;27924:9;27920:18;27912:26;;27984:9;27978:4;27974:20;27970:1;27959:9;27955:17;27948:47;28012:131;28138:4;28012:131;:::i;:::-;28004:139;;27731:419;;;:::o;28156:180::-;28204:77;28201:1;28194:88;28301:4;28298:1;28291:15;28325:4;28322:1;28315:15;28342:180;28390:77;28387:1;28380:88;28487:4;28484:1;28477:15;28511:4;28508:1;28501:15;28528:143;28585:5;28616:6;28610:13;28601:22;;28632:33;28659:5;28632:33;:::i;:::-;28528:143;;;;:::o;28677:351::-;28747:6;28796:2;28784:9;28775:7;28771:23;28767:32;28764:119;;;28802:79;;:::i;:::-;28764:119;28922:1;28947:64;29003:7;28994:6;28983:9;28979:22;28947:64;:::i;:::-;28937:74;;28893:128;28677:351;;;;:::o;29034:85::-;29079:7;29108:5;29097:16;;29034:85;;;:::o;29125:158::-;29183:9;29216:61;29234:42;29243:32;29269:5;29243:32;:::i;:::-;29234:42;:::i;:::-;29216:61;:::i;:::-;29203:74;;29125:158;;;:::o;29289:147::-;29384:45;29423:5;29384:45;:::i;:::-;29379:3;29372:58;29289:147;;:::o;29442:114::-;29509:6;29543:5;29537:12;29527:22;;29442:114;;;:::o;29562:184::-;29661:11;29695:6;29690:3;29683:19;29735:4;29730:3;29726:14;29711:29;;29562:184;;;;:::o;29752:132::-;29819:4;29842:3;29834:11;;29872:4;29867:3;29863:14;29855:22;;29752:132;;;:::o;29890:108::-;29967:24;29985:5;29967:24;:::i;:::-;29962:3;29955:37;29890:108;;:::o;30004:179::-;30073:10;30094:46;30136:3;30128:6;30094:46;:::i;:::-;30172:4;30167:3;30163:14;30149:28;;30004:179;;;;:::o;30189:113::-;30259:4;30291;30286:3;30282:14;30274:22;;30189:113;;;:::o;30338:732::-;30457:3;30486:54;30534:5;30486:54;:::i;:::-;30556:86;30635:6;30630:3;30556:86;:::i;:::-;30549:93;;30666:56;30716:5;30666:56;:::i;:::-;30745:7;30776:1;30761:284;30786:6;30783:1;30780:13;30761:284;;;30862:6;30856:13;30889:63;30948:3;30933:13;30889:63;:::i;:::-;30882:70;;30975:60;31028:6;30975:60;:::i;:::-;30965:70;;30821:224;30808:1;30805;30801:9;30796:14;;30761:284;;;30765:14;31061:3;31054:10;;30462:608;;;30338:732;;;;:::o;31076:831::-;31339:4;31377:3;31366:9;31362:19;31354:27;;31391:71;31459:1;31448:9;31444:17;31435:6;31391:71;:::i;:::-;31472:80;31548:2;31537:9;31533:18;31524:6;31472:80;:::i;:::-;31599:9;31593:4;31589:20;31584:2;31573:9;31569:18;31562:48;31627:108;31730:4;31721:6;31627:108;:::i;:::-;31619:116;;31745:72;31813:2;31802:9;31798:18;31789:6;31745:72;:::i;:::-;31827:73;31895:3;31884:9;31880:19;31871:6;31827:73;:::i;:::-;31076:831;;;;;;;;:::o;31913:807::-;32162:4;32200:3;32189:9;32185:19;32177:27;;32214:71;32282:1;32271:9;32267:17;32258:6;32214:71;:::i;:::-;32295:72;32363:2;32352:9;32348:18;32339:6;32295:72;:::i;:::-;32377:80;32453:2;32442:9;32438:18;32429:6;32377:80;:::i;:::-;32467;32543:2;32532:9;32528:18;32519:6;32467:80;:::i;:::-;32557:73;32625:3;32614:9;32610:19;32601:6;32557:73;:::i;:::-;32640;32708:3;32697:9;32693:19;32684:6;32640:73;:::i;:::-;31913:807;;;;;;;;;:::o;32726:143::-;32783:5;32814:6;32808:13;32799:22;;32830:33;32857:5;32830:33;:::i;:::-;32726:143;;;;:::o;32875:663::-;32963:6;32971;32979;33028:2;33016:9;33007:7;33003:23;32999:32;32996:119;;;33034:79;;:::i;:::-;32996:119;33154:1;33179:64;33235:7;33226:6;33215:9;33211:22;33179:64;:::i;:::-;33169:74;;33125:128;33292:2;33318:64;33374:7;33365:6;33354:9;33350:22;33318:64;:::i;:::-;33308:74;;33263:129;33431:2;33457:64;33513:7;33504:6;33493:9;33489:22;33457:64;:::i;:::-;33447:74;;33402:129;32875:663;;;;;:::o
Swarm Source
ipfs://335370c487b6f0a2ec79fda3c4608555cd33733d47df98372585df68d1458d16
Loading...
Loading
Loading...
Loading
Net Worth in USD
$0.00
Net Worth in ETH
0
Multichain Portfolio | 33 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.