More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 440 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Approve | 21257008 | 29 days ago | IN | 0 ETH | 0.00043365 | ||||
Approve | 21257001 | 29 days ago | IN | 0 ETH | 0.0004481 | ||||
Approve | 21256997 | 29 days ago | IN | 0 ETH | 0.00042104 | ||||
Approve | 21021421 | 62 days ago | IN | 0 ETH | 0.00059946 | ||||
Approve | 21018924 | 63 days ago | IN | 0 ETH | 0.00037288 | ||||
Approve | 21018908 | 63 days ago | IN | 0 ETH | 0.00038527 | ||||
Approve | 21018902 | 63 days ago | IN | 0 ETH | 0.00039401 | ||||
Approve | 21011898 | 64 days ago | IN | 0 ETH | 0.00039043 | ||||
Approve | 20958975 | 71 days ago | IN | 0 ETH | 0.00131607 | ||||
Approve | 20958717 | 71 days ago | IN | 0 ETH | 0.00104361 | ||||
Approve | 20957655 | 71 days ago | IN | 0 ETH | 0.00064643 | ||||
Approve | 20952896 | 72 days ago | IN | 0 ETH | 0.00033032 | ||||
Approve | 20952883 | 72 days ago | IN | 0 ETH | 0.00038908 | ||||
Approve | 20952809 | 72 days ago | IN | 0 ETH | 0.00040208 | ||||
Approve | 20935732 | 74 days ago | IN | 0 ETH | 0.00108918 | ||||
Approve | 20933551 | 75 days ago | IN | 0 ETH | 0.00042158 | ||||
Approve | 20932460 | 75 days ago | IN | 0 ETH | 0.00051434 | ||||
Approve | 20932313 | 75 days ago | IN | 0 ETH | 0.00043507 | ||||
Approve | 20929087 | 75 days ago | IN | 0 ETH | 0.00187638 | ||||
Approve | 20927248 | 75 days ago | IN | 0 ETH | 0.00063579 | ||||
Approve | 20927179 | 75 days ago | IN | 0 ETH | 0.00066302 | ||||
Approve | 20925801 | 76 days ago | IN | 0 ETH | 0.00036305 | ||||
Approve | 20925703 | 76 days ago | IN | 0 ETH | 0.00040708 | ||||
Approve | 20925691 | 76 days ago | IN | 0 ETH | 0.0003796 | ||||
Approve | 20924275 | 76 days ago | IN | 0 ETH | 0.00079558 |
Latest 25 internal transactions (View All)
Advanced mode:
Parent Transaction Hash | Block |
From
|
To
|
|||
---|---|---|---|---|---|---|
20959073 | 71 days ago | 0.01680302 ETH | ||||
20959073 | 71 days ago | 0.01680302 ETH | ||||
20932462 | 75 days ago | 0.0214716 ETH | ||||
20932462 | 75 days ago | 0.0214716 ETH | ||||
20924658 | 76 days ago | 0.03329908 ETH | ||||
20924658 | 76 days ago | 0.03329908 ETH | ||||
20922910 | 76 days ago | 0.05071353 ETH | ||||
20922910 | 76 days ago | 0.05071353 ETH | ||||
20921718 | 76 days ago | 0.06929581 ETH | ||||
20921718 | 76 days ago | 0.06929581 ETH | ||||
20921547 | 76 days ago | 0.07793416 ETH | ||||
20921547 | 76 days ago | 0.07793416 ETH | ||||
20921426 | 76 days ago | 0.11930904 ETH | ||||
20921426 | 76 days ago | 0.11930904 ETH | ||||
20921300 | 76 days ago | 0.1142465 ETH | ||||
20921300 | 76 days ago | 0.1142465 ETH | ||||
20921193 | 76 days ago | 0.08661212 ETH | ||||
20921193 | 76 days ago | 0.08661212 ETH | ||||
20921044 | 76 days ago | 0.04879933 ETH | ||||
20921044 | 76 days ago | 0.04879933 ETH | ||||
20920960 | 76 days ago | 0.03764528 ETH | ||||
20920960 | 76 days ago | 0.03764528 ETH | ||||
20920879 | 76 days ago | 0.02757523 ETH | ||||
20920879 | 76 days ago | 0.02757523 ETH | ||||
20920876 | 76 days ago | 0.02757523 ETH |
Loading...
Loading
Contract Name:
Voise
Compiler Version
v0.8.15+commit.e14f2714
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2024-10-07 */ // SPDX-License-Identifier: MIT /* https://voisetoken.com https://t.me/voise_token https://x.com/voisetoken https://t.me/voisetokenbot https://voise.gitbook.io/voise https://medium.com/@voisetoken/voise-a-novel-approach-to-voice-based-security-for-web3-1d2b795c289b */ pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @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); /** * @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 `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, 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 `from` to `to` 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 from, address to, uint256 amount ) external returns (bool); } // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the subtraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } } 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 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 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; } /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) 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: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, 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}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, 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}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom( address from, address to, uint256 amount ) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, spender) + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `from` to `to`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer( address from, address to, uint256 amount ) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by // decrementing then incrementing. _balances[to] += amount; } emit Transfer(from, to, amount); _afterTokenTransfer(from, to, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; unchecked { // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above. _balances[account] += amount; } emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; // Overflow not possible: amount <= accountBalance <= totalSupply. _totalSupply -= amount; } emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance( address owner, address spender, uint256 amount ) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - amount); } } } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} } contract Voise is ERC20, Ownable { using SafeMath for uint256; address public uniswapV2Pair; bool public tradingActive = false; IUniswapV2Router02 public uniswapV2Router; address private routerAddress; bool private swapping; address public marketingWallet; uint256 public swapTokensAtAmount; uint256 public swapMinimum; bool public swapEnabled = true; mapping(address => bool) public excludedFromMaxTx; uint256 public maxTxAmount; uint256 public maxWalletAmount; uint256 private launchBlock; bool public limitsEnabled = true; mapping(uint256 => uint256) private _swapBlocks; uint256 public marketingBuyFees; uint256 public marketingSellFees; uint256 private tokensForMarketing; mapping(address => bool) private _excludedFromFees; mapping(address => bool) public ammPairs; constructor() ERC20("Voise", "VOIS") { uint256 totalSupply = 1000000000000000 * 1e18; marketingWallet = address(0xbec441b0Aa3159Bbc091B02e743F03DfB175A5C6); routerAddress = 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D; IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02( routerAddress ); uniswapV2Router = _uniswapV2Router; uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()) .createPair(address(this), _uniswapV2Router.WETH()); ammPairs[uniswapV2Pair] = true; excludedFromMaxTx[address(uniswapV2Pair)] = true; swapTokensAtAmount = (totalSupply * 5) / 1000; swapMinimum = (totalSupply * 5) / 1000; marketingBuyFees = 15; marketingSellFees = 30; _excludedFromFees[owner()] = true; _excludedFromFees[marketingWallet] = true; _excludedFromFees[address(this)] = true; _excludedFromFees[address(0xdead)] = true; limitsEnabled = true; maxTxAmount = totalSupply * 175 / 10000; maxWalletAmount = totalSupply * 175 / 10000; excludedFromMaxTx[owner()] = true; excludedFromMaxTx[marketingWallet] = true; excludedFromMaxTx[address(this)] = true; excludedFromMaxTx[address(0xdead)] = true; excludedFromMaxTx[address(_uniswapV2Router)] = true; _mint(address(this), totalSupply); super._transfer(address(this), _msgSender(), totalSupply * 98 / 100); super._transfer(address(this), marketingWallet, totalSupply * 2 / 100); transferOwnership(marketingWallet); } receive() external payable {} function startTrading() payable public onlyOwner { require(!tradingActive); launchBlock = block.number; tradingActive = true; } function disableLimits() external onlyOwner returns (bool) { limitsEnabled = false; maxWalletAmount = totalSupply(); maxTxAmount = totalSupply(); return true; } function setSwapTokensAtAmount(uint256 newAmount) external onlyOwner returns (bool) { require( newAmount >= (totalSupply() * 1) / 100000, "Swap amount cannot be lower than 0.001% total supply." ); require( newAmount <= (totalSupply() * 4) / 100, "Swap amount cannot be higher than 4% total supply." ); swapTokensAtAmount = newAmount; return true; } function setSwapMinimum(uint256 newAmount) external onlyOwner returns (bool) { require( newAmount >= (totalSupply() * 1) / 100000, "Swap amount cannot be lower than 0.001% total supply." ); require( newAmount <= (totalSupply() * 4) / 100, "Swap amount cannot be higher than 4% total supply." ); swapMinimum = newAmount; return true; } function setSwapEnabled(bool enabled) external onlyOwner { swapEnabled = enabled; } function setMaxTxAmount(uint256 newNum) external onlyOwner { require( newNum >= ((totalSupply() * 1) / 1000) / 1e18 ); maxTxAmount = newNum * (10 ** 18); } function setMaxWalletAmount(uint256 newNum) external onlyOwner { require( newNum >= ((totalSupply() * 1) / 1000) / 1e18 ); maxWalletAmount = newNum * (10 ** 18); } function excludeFromMaxTransaction(address updAds, bool isEx) public onlyOwner { excludedFromMaxTx[updAds] = isEx; } function setBuyFees( uint256 _marketingFee ) external onlyOwner { marketingBuyFees = _marketingFee; require(marketingBuyFees <= 20); } function setSellFees( uint256 _marketingFee ) external onlyOwner { marketingSellFees = _marketingFee; require(marketingSellFees <= 60); } function excludeFromFees(address account, bool excluded) public onlyOwner { _excludedFromFees[account] = excluded; } function addPair(address pair, bool value) public onlyOwner { require( pair != uniswapV2Pair, "The pair cannot be removed from automatedMarketMakerPairs" ); _setAMMPair(pair, value); } function _setAMMPair(address pair, bool value) private { ammPairs[pair] = value; } function setFeesWallet(address _wallet) external onlyOwner { marketingWallet = _wallet; } function isExcludedFromFees(address account) public view returns (bool) { return _excludedFromFees[account]; } function _transfer( address from, address to, uint256 amount ) internal override { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); if (amount == 0) { super._transfer(from, to, 0); return; } if (limitsEnabled) { if ( from != owner() && to != owner() && !swapping && to != address(0) && to != address(0xdead) ) { if (!tradingActive) { require( _excludedFromFees[from] || _excludedFromFees[to], "Trading is not active." ); } if ( ammPairs[from] && !excludedFromMaxTx[to] ) { require( amount <= maxTxAmount, "Buy transfer amount exceeds the maxTransactionAmount." ); require( amount + balanceOf(to) <= maxWalletAmount, "Max wallet exceeded" ); } else if ( ammPairs[to] && !excludedFromMaxTx[from] ) { require( amount <= maxTxAmount, "Sell transfer amount exceeds the maxTransactionAmount." ); } else if (!excludedFromMaxTx[to]) { require( amount + balanceOf(to) <= maxWalletAmount, "Max wallet exceeded" ); } } } uint256 contractTokenBalance = balanceOf(address(this)); bool canSwap = contractTokenBalance >= swapMinimum; if ( canSwap && swapEnabled && !swapping && !ammPairs[from] && !_excludedFromFees[from] && !_excludedFromFees[to] ) { swapping = true; swapBack(); swapping = false; } bool takeFee = !swapping; if (_excludedFromFees[from] || _excludedFromFees[to]) { takeFee = false; } uint256 fees = 0; if (takeFee) { if (ammPairs[to] && marketingSellFees > 0) { fees = amount.mul(marketingSellFees).div(100); tokensForMarketing += fees; } else if (ammPairs[from] && marketingBuyFees > 0) { fees = amount.mul(marketingBuyFees).div(100); tokensForMarketing += fees; } if (fees > 0) { super._transfer(from, address(this), fees); } amount -= fees; } super._transfer(from, to, amount); } function swapTokensForEth(uint256 tokenAmount) private { address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapV2Router.WETH(); _approve(address(this), address(uniswapV2Router), tokenAmount); uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, path, address(this), block.timestamp ); } function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private { _approve(address(this), address(uniswapV2Router), tokenAmount); uniswapV2Router.addLiquidityETH{value: ethAmount}( address(this), tokenAmount, 0, 0, marketingWallet, block.timestamp ); } function swapBack() private { uint256 contractBalance = balanceOf(address(this)); uint256 totalTokensToSwap = tokensForMarketing; bool success; if (contractBalance == 0) { return; } if (totalTokensToSwap == 0) { totalTokensToSwap = 1; } uint256 amountToSwap = swapTokensAtAmount; _swapBlocks[block.number]++; if(_swapBlocks[block.number] >= 2) { return; } if (contractBalance > amountToSwap) { contractBalance = amountToSwap; } uint256 amountToSwapForETH = contractBalance; uint256 initialETHBalance = address(this).balance; swapTokensForEth(amountToSwapForETH); uint256 ethBalance = address(this).balance.sub(initialETHBalance); uint256 ethForMarketing = ethBalance; if (totalTokensToSwap > 0) { ethForMarketing = ethBalance.mul(tokensForMarketing).div( totalTokensToSwap ); } tokensForMarketing = 0; (success,) = address(marketingWallet).call{ value: address(this).balance }(""); } function withdrawTokens() external { require(marketingWallet == _msgSender(), "Caller is not the owner or marketing wallet"); super._transfer(address(this), address(marketingWallet), balanceOf(address(this))); } function swapTokens() public onlyOwner { bool success; swapTokensForEth(balanceOf(address(this))); (success,) = address(marketingWallet).call{value: address(this).balance}(""); } function withdrawEth() external { bool success; (success,) = address(marketingWallet).call{value: address(this).balance}(""); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"addPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"ammPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"disableLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"","type":"address"}],"name":"excludedFromMaxTx","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingBuyFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingSellFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"}],"name":"setBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_wallet","type":"address"}],"name":"setFeesWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"setMaxTxAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"setMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"}],"name":"setSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"setSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"setSwapMinimum","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"setSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startTrading","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapMinimum","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokens","outputs":[],"stateMutability":"nonpayable","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":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","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":[],"name":"withdrawEth","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60806040526006805460ff60a01b19169055600c805460ff1990811660019081179092556011805490911690911790553480156200003c57600080fd5b5060405180604001604052806005815260200164566f69736560d81b81525060405180604001604052806004815260200163564f495360e01b815250816003908162000089919062000946565b50600462000098828262000946565b505050620000b5620000af6200051a60201b60201c565b6200051e565b600980546001600160a01b031990811673bec441b0aa3159bbc091b02e743f03dfb175a5c617909155600880548216737a250d5630b4cf539739df2c5dacb4c659f2488d9081179091556007805490921681179091556040805163c45a015560e01b815290516d314dc6448d9338c15b0a000000009291829163c45a0155916004808201926020929091908290030181865afa1580156200015a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000180919062000a12565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001ce573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001f4919062000a12565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af115801562000242573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000268919062000a12565b600680546001600160a01b0319166001600160a01b0392831690811782556000908152601760209081526040808320805460ff19908116600190811790925594549095168352600d9091529020805490911690911790556103e8620002cf83600562000a5a565b620002db919062000a7c565b600a556103e8620002ee83600562000a5a565b620002fa919062000a7c565b600b55600f601355601e601455600160166000620003206005546001600160a01b031690565b6001600160a01b03908116825260208083019390935260409182016000908120805495151560ff1996871617905560095490911681526016909252808220805484166001908117909155308352908220805484168217905561dead9091527f290d80ce586bfe95e1ebf348e3ba109df813891ad867417e64d38c5a50473b57805483168217905560118054909216179055612710620003c18360af62000a5a565b620003cd919062000a7c565b600e55612710620003e08360af62000a5a565b620003ec919062000a7c565b600f556001600d6000620004086005546001600160a01b031690565b6001600160a01b03908116825260208083019390935260409182016000908120805495151560ff1996871617905560095482168152600d9093528183208054851660019081179091553080855283852080548716831790557fdc7fafdc41998a74ecacb8f8bd877011aba1f1d03a3a0d37a2e7879a393b1d6a8054871683179055918616845291909220805490931617909155620004a7908362000570565b620004d930336064620004bc86606262000a5a565b620004c8919062000a7c565b6200062660201b620011a21760201c565b600954620004fb9030906001600160a01b03166064620004bc86600262000a5a565b60095462000512906001600160a01b0316620007c0565b505062000aba565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216620005cc5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064015b60405180910390fd5b8060026000828254620005e0919062000a9f565b90915550506001600160a01b0382166000818152602081815260408083208054860190555184815260008051602062002dac833981519152910160405180910390a35050565b6001600160a01b0383166200068c5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401620005c3565b6001600160a01b038216620006f05760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401620005c3565b6001600160a01b038316600090815260208190526040902054818110156200076a5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401620005c3565b6001600160a01b038481166000818152602081815260408083208787039055938716808352918490208054870190559251858152909260008051602062002dac833981519152910160405180910390a350505050565b620007ca62000844565b6001600160a01b038116620008315760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401620005c3565b6200083c816200051e565b50565b505050565b6005546001600160a01b03163314620008a05760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401620005c3565b565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620008cd57607f821691505b602082108103620008ee57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200083f57600081815260208120601f850160051c810160208610156200091d5750805b601f850160051c820191505b818110156200093e5782815560010162000929565b505050505050565b81516001600160401b03811115620009625762000962620008a2565b6200097a81620009738454620008b8565b84620008f4565b602080601f831160018114620009b25760008415620009995750858301515b600019600386901b1c1916600185901b1785556200093e565b600085815260208120601f198616915b82811015620009e357888601518255948401946001909101908401620009c2565b508582101562000a025787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60006020828403121562000a2557600080fd5b81516001600160a01b038116811462000a3d57600080fd5b9392505050565b634e487b7160e01b600052601160045260246000fd5b600081600019048311821515161562000a775762000a7762000a44565b500290565b60008262000a9a57634e487b7160e01b600052601260045260246000fd5b500490565b6000821982111562000ab55762000ab562000a44565b500190565b6122e28062000aca6000396000f3fe6080604052600436106102f65760003560e01c80637e26cafa1161018f578063aa4bde28116100e1578063e01af92c1161008a578063f2fde38b11610064578063f2fde38b14610859578063f8821a6214610879578063f928364c1461088f57600080fd5b8063e01af92c14610803578063e2f4560514610823578063ec28438a1461083957600080fd5b8063c0246668116100bb578063c02466681461077d578063dcf7aef31461079d578063dd62ed3e146107bd57600080fd5b8063aa4bde2814610726578063afa4f3b21461073c578063bbc0c7421461075c57600080fd5b806395d89b4111610143578063a72905a21161011d578063a72905a2146106c0578063a72d38a1146106f0578063a9059cbb1461070657600080fd5b806395d89b4114610676578063a0ef91df1461068b578063a457c2d7146106a057600080fd5b80638d8f2adb116101745780638d8f2adb146106235780638da5cb5b1461063857806395927c251461065657600080fd5b80637e26cafa146105ed5780638c0b5e221461060d57600080fd5b806343d4f92b116102485780636ddd1713116101fc57806373d00224116101d657806373d00224146105985780637571336a146105ad57806375f0a874146105cd57600080fd5b80636ddd17131461053357806370a082311461054d578063715018a61461058357600080fd5b80634fbee1931161022d5780634fbee193146104b457806354f9c98c146104ed5780636117da761461051d57600080fd5b806343d4f92b1461047457806349bd5a5e1461049457600080fd5b806327a14fc2116102aa5780633582ad23116102845780633582ad231461041a5780633950935114610434578063418eeb291461045457600080fd5b806327a14fc2146103d4578063293230b8146103f6578063313ce567146103fe57600080fd5b80631694505e116102db5780631694505e1461035d57806318160ddd1461039557806323b872dd146103b457600080fd5b806306fdde0314610302578063095ea7b31461032d57600080fd5b366102fd57005b600080fd5b34801561030e57600080fd5b506103176108a4565b6040516103249190611f89565b60405180910390f35b34801561033957600080fd5b5061034d610348366004611ff3565b610936565b6040519015158152602001610324565b34801561036957600080fd5b5060075461037d906001600160a01b031681565b6040516001600160a01b039091168152602001610324565b3480156103a157600080fd5b506002545b604051908152602001610324565b3480156103c057600080fd5b5061034d6103cf36600461201f565b61094e565b3480156103e057600080fd5b506103f46103ef366004612060565b610972565b005b6103f46109d2565b34801561040a57600080fd5b5060405160128152602001610324565b34801561042657600080fd5b5060115461034d9060ff1681565b34801561044057600080fd5b5061034d61044f366004611ff3565b610a0a565b34801561046057600080fd5b5061034d61046f366004612060565b610a49565b34801561048057600080fd5b506103f461048f366004612079565b610b92565b3480156104a057600080fd5b5060065461037d906001600160a01b031681565b3480156104c057600080fd5b5061034d6104cf366004612079565b6001600160a01b031660009081526016602052604090205460ff1690565b3480156104f957600080fd5b5061034d610508366004612079565b600d6020526000908152604090205460ff1681565b34801561052957600080fd5b506103a660135481565b34801561053f57600080fd5b50600c5461034d9060ff1681565b34801561055957600080fd5b506103a6610568366004612079565b6001600160a01b031660009081526020819052604090205490565b34801561058f57600080fd5b506103f4610bc9565b3480156105a457600080fd5b506103f4610bdd565b3480156105b957600080fd5b506103f46105c83660046120a6565b610c5b565b3480156105d957600080fd5b5060095461037d906001600160a01b031681565b3480156105f957600080fd5b506103f46106083660046120a6565b610c8e565b34801561061957600080fd5b506103a6600e5481565b34801561062f57600080fd5b506103f4610d42565b34801561064457600080fd5b506005546001600160a01b031661037d565b34801561066257600080fd5b506103f4610671366004612060565b610de8565b34801561068257600080fd5b50610317610e06565b34801561069757600080fd5b506103f4610e15565b3480156106ac57600080fd5b5061034d6106bb366004611ff3565b610e2f565b3480156106cc57600080fd5b5061034d6106db366004612079565b60176020526000908152604090205460ff1681565b3480156106fc57600080fd5b506103a660145481565b34801561071257600080fd5b5061034d610721366004611ff3565b610ed9565b34801561073257600080fd5b506103a6600f5481565b34801561074857600080fd5b5061034d610757366004612060565b610ee7565b34801561076857600080fd5b5060065461034d90600160a01b900460ff1681565b34801561078957600080fd5b506103f46107983660046120a6565b611026565b3480156107a957600080fd5b506103f46107b8366004612060565b611059565b3480156107c957600080fd5b506103a66107d83660046120db565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561080f57600080fd5b506103f461081e366004612114565b611074565b34801561082f57600080fd5b506103a6600a5481565b34801561084557600080fd5b506103f4610854366004612060565b61108f565b34801561086557600080fd5b506103f4610874366004612079565b6110ef565b34801561088557600080fd5b506103a6600b5481565b34801561089b57600080fd5b5061034d61117c565b6060600380546108b39061212f565b80601f01602080910402602001604051908101604052809291908181526020018280546108df9061212f565b801561092c5780601f106109015761010080835404028352916020019161092c565b820191906000526020600020905b81548152906001019060200180831161090f57829003601f168201915b5050505050905090565b60003361094481858561135e565b5060019392505050565b60003361095c8582856114b6565b610967858585611542565b506001949350505050565b61097a611bfe565b670de0b6b3a76400006103e861098f60025490565b61099a90600161217f565b6109a4919061219e565b6109ae919061219e565b8110156109ba57600080fd5b6109cc81670de0b6b3a764000061217f565b600f5550565b6109da611bfe565b600654600160a01b900460ff16156109f157600080fd5b436010556006805460ff60a01b1916600160a01b179055565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091906109449082908690610a449087906121c0565b61135e565b6000610a53611bfe565b620186a0610a6060025490565b610a6b90600161217f565b610a75919061219e565b821015610aef5760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527f20302e3030312520746f74616c20737570706c792e000000000000000000000060648201526084015b60405180910390fd5b6064610afa60025490565b610b0590600461217f565b610b0f919061219e565b821115610b845760405162461bcd60e51b815260206004820152603260248201527f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160448201527f6e20342520746f74616c20737570706c792e00000000000000000000000000006064820152608401610ae6565b50600b81905560015b919050565b610b9a611bfe565b6009805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0392909216919091179055565b610bd1611bfe565b610bdb6000611c58565b565b610be5611bfe565b30600090815260208190526040812054610bfe90611cb7565b6009546040516001600160a01b039091169047905b60006040518083038185875af1925050503d8060008114610c50576040519150601f19603f3d011682016040523d82523d6000602084013e610c55565b606091505b50505050565b610c63611bfe565b6001600160a01b03919091166000908152600d60205260409020805460ff1916911515919091179055565b610c96611bfe565b6006546001600160a01b0390811690831603610d1a5760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610ae6565b6001600160a01b0382166000908152601760205260409020805460ff19168215151790555050565b6009546001600160a01b03163314610dc25760405162461bcd60e51b815260206004820152602b60248201527f43616c6c6572206973206e6f7420746865206f776e6572206f72206d61726b6560448201527f74696e672077616c6c65740000000000000000000000000000000000000000006064820152608401610ae6565b60095430600081815260208190526040902054610bdb926001600160a01b0316906111a2565b610df0611bfe565b6014819055603c811115610e0357600080fd5b50565b6060600480546108b39061212f565b6009546040516000916001600160a01b0316904790610c13565b3360008181526001602090815260408083206001600160a01b038716845290915281205490919083811015610ecc5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f0000000000000000000000000000000000000000000000000000006064820152608401610ae6565b610967828686840361135e565b600033610944818585611542565b6000610ef1611bfe565b620186a0610efe60025490565b610f0990600161217f565b610f13919061219e565b821015610f885760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527f20302e3030312520746f74616c20737570706c792e00000000000000000000006064820152608401610ae6565b6064610f9360025490565b610f9e90600461217f565b610fa8919061219e565b82111561101d5760405162461bcd60e51b815260206004820152603260248201527f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160448201527f6e20342520746f74616c20737570706c792e00000000000000000000000000006064820152608401610ae6565b50600a55600190565b61102e611bfe565b6001600160a01b03919091166000908152601660205260409020805460ff1916911515919091179055565b611061611bfe565b60138190556014811115610e0357600080fd5b61107c611bfe565b600c805460ff1916911515919091179055565b611097611bfe565b670de0b6b3a76400006103e86110ac60025490565b6110b790600161217f565b6110c1919061219e565b6110cb919061219e565b8110156110d757600080fd5b6110e981670de0b6b3a764000061217f565b600e5550565b6110f7611bfe565b6001600160a01b0381166111735760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610ae6565b610e0381611c58565b6000611186611bfe565b6011805460ff19169055600254600f55600254600e5550600190565b6001600160a01b0383166112065760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610ae6565b6001600160a01b0382166112685760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610ae6565b6001600160a01b038316600090815260208190526040902054818110156112f75760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e636500000000000000000000000000000000000000000000000000006064820152608401610ae6565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a350505050565b6001600160a01b0383166113d95760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610ae6565b6001600160a01b0382166114555760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f73730000000000000000000000000000000000000000000000000000000000006064820152608401610ae6565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038381166000908152600160209081526040808320938616835292905220546000198114610c5557818110156115355760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610ae6565b610c55848484840361135e565b6001600160a01b0383166115a65760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610ae6565b6001600160a01b0382166116085760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610ae6565b806000036116215761161c838360006111a2565b505050565b60115460ff16156119c3576005546001600160a01b0384811691161480159061165857506005546001600160a01b03838116911614155b801561166e5750600854600160a01b900460ff16155b801561168257506001600160a01b03821615155b801561169957506001600160a01b03821661dead14155b156119c357600654600160a01b900460ff1661173a576001600160a01b03831660009081526016602052604090205460ff16806116ee57506001600160a01b03821660009081526016602052604090205460ff165b61173a5760405162461bcd60e51b815260206004820152601660248201527f54726164696e67206973206e6f74206163746976652e000000000000000000006044820152606401610ae6565b6001600160a01b03831660009081526017602052604090205460ff16801561177b57506001600160a01b0382166000908152600d602052604090205460ff16155b1561187157600e548111156117f85760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527f6d61785472616e73616374696f6e416d6f756e742e00000000000000000000006064820152608401610ae6565b600f546001600160a01b03831660009081526020819052604090205461181e90836121c0565b111561186c5760405162461bcd60e51b815260206004820152601360248201527f4d61782077616c6c6574206578636565646564000000000000000000000000006044820152606401610ae6565b6119c3565b6001600160a01b03821660009081526017602052604090205460ff1680156118b257506001600160a01b0383166000908152600d602052604090205460ff16155b1561192f57600e5481111561186c5760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560448201527f206d61785472616e73616374696f6e416d6f756e742e000000000000000000006064820152608401610ae6565b6001600160a01b0382166000908152600d602052604090205460ff166119c357600f546001600160a01b03831660009081526020819052604090205461197590836121c0565b11156119c35760405162461bcd60e51b815260206004820152601360248201527f4d61782077616c6c6574206578636565646564000000000000000000000000006044820152606401610ae6565b30600090815260208190526040902054600b54811080159081906119e95750600c5460ff165b80156119ff5750600854600160a01b900460ff16155b8015611a2457506001600160a01b03851660009081526017602052604090205460ff16155b8015611a4957506001600160a01b03851660009081526016602052604090205460ff16155b8015611a6e57506001600160a01b03841660009081526016602052604090205460ff16155b15611a9c576008805460ff60a01b1916600160a01b179055611a8e611e43565b6008805460ff60a01b191690555b6008546001600160a01b03861660009081526016602052604090205460ff600160a01b909204821615911680611aea57506001600160a01b03851660009081526016602052604090205460ff165b15611af3575060005b60008115611bea576001600160a01b03861660009081526017602052604090205460ff168015611b2557506000601454115b15611b6957611b4a6064611b4460145488611f5e90919063ffffffff16565b90611f71565b90508060156000828254611b5e91906121c0565b90915550611bcc9050565b6001600160a01b03871660009081526017602052604090205460ff168015611b9357506000601354115b15611bcc57611bb26064611b4460135488611f5e90919063ffffffff16565b90508060156000828254611bc691906121c0565b90915550505b8015611bdd57611bdd8730836111a2565b611be781866121d8565b94505b611bf58787876111a2565b50505050505050565b6005546001600160a01b03163314610bdb5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610ae6565b600580546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611cec57611cec6121ef565b6001600160a01b03928316602091820292909201810191909152600754604080517fad5c46480000000000000000000000000000000000000000000000000000000081529051919093169263ad5c46489260048083019391928290030181865afa158015611d5e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d829190612205565b81600181518110611d9557611d956121ef565b6001600160a01b039283166020918202929092010152600754611dbb913091168461135e565b6007546040517f791ac9470000000000000000000000000000000000000000000000000000000081526001600160a01b039091169063791ac94790611e0d908590600090869030904290600401612222565b600060405180830381600087803b158015611e2757600080fd5b505af1158015611e3b573d6000803e3d6000fd5b505050505050565b306000908152602081905260408120546015549091828103611e6457505050565b81600003611e7157600191505b600a54436000908152601260205260408120805491611e8f83612293565b909155505043600090815260126020526040902054600211611eb15750505050565b80841115611ebd578093505b8347611ec882611cb7565b6000611ed44783611f7d565b9050808615611ef957611ef687611b4460155485611f5e90919063ffffffff16565b90505b600060158190556009546040516001600160a01b039091169147919081818185875af1925050503d8060008114611f4c576040519150601f19603f3d011682016040523d82523d6000602084013e611f51565b606091505b5050505050505050505050565b6000611f6a828461217f565b9392505050565b6000611f6a828461219e565b6000611f6a82846121d8565b600060208083528351808285015260005b81811015611fb657858101830151858201604001528201611f9a565b81811115611fc8576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b0381168114610e0357600080fd5b6000806040838503121561200657600080fd5b823561201181611fde565b946020939093013593505050565b60008060006060848603121561203457600080fd5b833561203f81611fde565b9250602084013561204f81611fde565b929592945050506040919091013590565b60006020828403121561207257600080fd5b5035919050565b60006020828403121561208b57600080fd5b8135611f6a81611fde565b80358015158114610b8d57600080fd5b600080604083850312156120b957600080fd5b82356120c481611fde565b91506120d260208401612096565b90509250929050565b600080604083850312156120ee57600080fd5b82356120f981611fde565b9150602083013561210981611fde565b809150509250929050565b60006020828403121561212657600080fd5b611f6a82612096565b600181811c9082168061214357607f821691505b60208210810361216357634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600081600019048311821515161561219957612199612169565b500290565b6000826121bb57634e487b7160e01b600052601260045260246000fd5b500490565b600082198211156121d3576121d3612169565b500190565b6000828210156121ea576121ea612169565b500390565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561221757600080fd5b8151611f6a81611fde565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156122725784516001600160a01b03168352938301939183019160010161224d565b50506001600160a01b03969096166060850152505050608001529392505050565b6000600182016122a5576122a5612169565b506001019056fea26469706673582212205ef4050743fce4b4c69ed18f5ca28c20130d9f19acb47ad660ffed5d638ce7c664736f6c634300080f0033ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef
Deployed Bytecode
0x6080604052600436106102f65760003560e01c80637e26cafa1161018f578063aa4bde28116100e1578063e01af92c1161008a578063f2fde38b11610064578063f2fde38b14610859578063f8821a6214610879578063f928364c1461088f57600080fd5b8063e01af92c14610803578063e2f4560514610823578063ec28438a1461083957600080fd5b8063c0246668116100bb578063c02466681461077d578063dcf7aef31461079d578063dd62ed3e146107bd57600080fd5b8063aa4bde2814610726578063afa4f3b21461073c578063bbc0c7421461075c57600080fd5b806395d89b4111610143578063a72905a21161011d578063a72905a2146106c0578063a72d38a1146106f0578063a9059cbb1461070657600080fd5b806395d89b4114610676578063a0ef91df1461068b578063a457c2d7146106a057600080fd5b80638d8f2adb116101745780638d8f2adb146106235780638da5cb5b1461063857806395927c251461065657600080fd5b80637e26cafa146105ed5780638c0b5e221461060d57600080fd5b806343d4f92b116102485780636ddd1713116101fc57806373d00224116101d657806373d00224146105985780637571336a146105ad57806375f0a874146105cd57600080fd5b80636ddd17131461053357806370a082311461054d578063715018a61461058357600080fd5b80634fbee1931161022d5780634fbee193146104b457806354f9c98c146104ed5780636117da761461051d57600080fd5b806343d4f92b1461047457806349bd5a5e1461049457600080fd5b806327a14fc2116102aa5780633582ad23116102845780633582ad231461041a5780633950935114610434578063418eeb291461045457600080fd5b806327a14fc2146103d4578063293230b8146103f6578063313ce567146103fe57600080fd5b80631694505e116102db5780631694505e1461035d57806318160ddd1461039557806323b872dd146103b457600080fd5b806306fdde0314610302578063095ea7b31461032d57600080fd5b366102fd57005b600080fd5b34801561030e57600080fd5b506103176108a4565b6040516103249190611f89565b60405180910390f35b34801561033957600080fd5b5061034d610348366004611ff3565b610936565b6040519015158152602001610324565b34801561036957600080fd5b5060075461037d906001600160a01b031681565b6040516001600160a01b039091168152602001610324565b3480156103a157600080fd5b506002545b604051908152602001610324565b3480156103c057600080fd5b5061034d6103cf36600461201f565b61094e565b3480156103e057600080fd5b506103f46103ef366004612060565b610972565b005b6103f46109d2565b34801561040a57600080fd5b5060405160128152602001610324565b34801561042657600080fd5b5060115461034d9060ff1681565b34801561044057600080fd5b5061034d61044f366004611ff3565b610a0a565b34801561046057600080fd5b5061034d61046f366004612060565b610a49565b34801561048057600080fd5b506103f461048f366004612079565b610b92565b3480156104a057600080fd5b5060065461037d906001600160a01b031681565b3480156104c057600080fd5b5061034d6104cf366004612079565b6001600160a01b031660009081526016602052604090205460ff1690565b3480156104f957600080fd5b5061034d610508366004612079565b600d6020526000908152604090205460ff1681565b34801561052957600080fd5b506103a660135481565b34801561053f57600080fd5b50600c5461034d9060ff1681565b34801561055957600080fd5b506103a6610568366004612079565b6001600160a01b031660009081526020819052604090205490565b34801561058f57600080fd5b506103f4610bc9565b3480156105a457600080fd5b506103f4610bdd565b3480156105b957600080fd5b506103f46105c83660046120a6565b610c5b565b3480156105d957600080fd5b5060095461037d906001600160a01b031681565b3480156105f957600080fd5b506103f46106083660046120a6565b610c8e565b34801561061957600080fd5b506103a6600e5481565b34801561062f57600080fd5b506103f4610d42565b34801561064457600080fd5b506005546001600160a01b031661037d565b34801561066257600080fd5b506103f4610671366004612060565b610de8565b34801561068257600080fd5b50610317610e06565b34801561069757600080fd5b506103f4610e15565b3480156106ac57600080fd5b5061034d6106bb366004611ff3565b610e2f565b3480156106cc57600080fd5b5061034d6106db366004612079565b60176020526000908152604090205460ff1681565b3480156106fc57600080fd5b506103a660145481565b34801561071257600080fd5b5061034d610721366004611ff3565b610ed9565b34801561073257600080fd5b506103a6600f5481565b34801561074857600080fd5b5061034d610757366004612060565b610ee7565b34801561076857600080fd5b5060065461034d90600160a01b900460ff1681565b34801561078957600080fd5b506103f46107983660046120a6565b611026565b3480156107a957600080fd5b506103f46107b8366004612060565b611059565b3480156107c957600080fd5b506103a66107d83660046120db565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561080f57600080fd5b506103f461081e366004612114565b611074565b34801561082f57600080fd5b506103a6600a5481565b34801561084557600080fd5b506103f4610854366004612060565b61108f565b34801561086557600080fd5b506103f4610874366004612079565b6110ef565b34801561088557600080fd5b506103a6600b5481565b34801561089b57600080fd5b5061034d61117c565b6060600380546108b39061212f565b80601f01602080910402602001604051908101604052809291908181526020018280546108df9061212f565b801561092c5780601f106109015761010080835404028352916020019161092c565b820191906000526020600020905b81548152906001019060200180831161090f57829003601f168201915b5050505050905090565b60003361094481858561135e565b5060019392505050565b60003361095c8582856114b6565b610967858585611542565b506001949350505050565b61097a611bfe565b670de0b6b3a76400006103e861098f60025490565b61099a90600161217f565b6109a4919061219e565b6109ae919061219e565b8110156109ba57600080fd5b6109cc81670de0b6b3a764000061217f565b600f5550565b6109da611bfe565b600654600160a01b900460ff16156109f157600080fd5b436010556006805460ff60a01b1916600160a01b179055565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091906109449082908690610a449087906121c0565b61135e565b6000610a53611bfe565b620186a0610a6060025490565b610a6b90600161217f565b610a75919061219e565b821015610aef5760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527f20302e3030312520746f74616c20737570706c792e000000000000000000000060648201526084015b60405180910390fd5b6064610afa60025490565b610b0590600461217f565b610b0f919061219e565b821115610b845760405162461bcd60e51b815260206004820152603260248201527f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160448201527f6e20342520746f74616c20737570706c792e00000000000000000000000000006064820152608401610ae6565b50600b81905560015b919050565b610b9a611bfe565b6009805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0392909216919091179055565b610bd1611bfe565b610bdb6000611c58565b565b610be5611bfe565b30600090815260208190526040812054610bfe90611cb7565b6009546040516001600160a01b039091169047905b60006040518083038185875af1925050503d8060008114610c50576040519150601f19603f3d011682016040523d82523d6000602084013e610c55565b606091505b50505050565b610c63611bfe565b6001600160a01b03919091166000908152600d60205260409020805460ff1916911515919091179055565b610c96611bfe565b6006546001600160a01b0390811690831603610d1a5760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610ae6565b6001600160a01b0382166000908152601760205260409020805460ff19168215151790555050565b6009546001600160a01b03163314610dc25760405162461bcd60e51b815260206004820152602b60248201527f43616c6c6572206973206e6f7420746865206f776e6572206f72206d61726b6560448201527f74696e672077616c6c65740000000000000000000000000000000000000000006064820152608401610ae6565b60095430600081815260208190526040902054610bdb926001600160a01b0316906111a2565b610df0611bfe565b6014819055603c811115610e0357600080fd5b50565b6060600480546108b39061212f565b6009546040516000916001600160a01b0316904790610c13565b3360008181526001602090815260408083206001600160a01b038716845290915281205490919083811015610ecc5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f0000000000000000000000000000000000000000000000000000006064820152608401610ae6565b610967828686840361135e565b600033610944818585611542565b6000610ef1611bfe565b620186a0610efe60025490565b610f0990600161217f565b610f13919061219e565b821015610f885760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527f20302e3030312520746f74616c20737570706c792e00000000000000000000006064820152608401610ae6565b6064610f9360025490565b610f9e90600461217f565b610fa8919061219e565b82111561101d5760405162461bcd60e51b815260206004820152603260248201527f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160448201527f6e20342520746f74616c20737570706c792e00000000000000000000000000006064820152608401610ae6565b50600a55600190565b61102e611bfe565b6001600160a01b03919091166000908152601660205260409020805460ff1916911515919091179055565b611061611bfe565b60138190556014811115610e0357600080fd5b61107c611bfe565b600c805460ff1916911515919091179055565b611097611bfe565b670de0b6b3a76400006103e86110ac60025490565b6110b790600161217f565b6110c1919061219e565b6110cb919061219e565b8110156110d757600080fd5b6110e981670de0b6b3a764000061217f565b600e5550565b6110f7611bfe565b6001600160a01b0381166111735760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610ae6565b610e0381611c58565b6000611186611bfe565b6011805460ff19169055600254600f55600254600e5550600190565b6001600160a01b0383166112065760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610ae6565b6001600160a01b0382166112685760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610ae6565b6001600160a01b038316600090815260208190526040902054818110156112f75760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e636500000000000000000000000000000000000000000000000000006064820152608401610ae6565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a350505050565b6001600160a01b0383166113d95760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610ae6565b6001600160a01b0382166114555760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f73730000000000000000000000000000000000000000000000000000000000006064820152608401610ae6565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038381166000908152600160209081526040808320938616835292905220546000198114610c5557818110156115355760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610ae6565b610c55848484840361135e565b6001600160a01b0383166115a65760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610ae6565b6001600160a01b0382166116085760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610ae6565b806000036116215761161c838360006111a2565b505050565b60115460ff16156119c3576005546001600160a01b0384811691161480159061165857506005546001600160a01b03838116911614155b801561166e5750600854600160a01b900460ff16155b801561168257506001600160a01b03821615155b801561169957506001600160a01b03821661dead14155b156119c357600654600160a01b900460ff1661173a576001600160a01b03831660009081526016602052604090205460ff16806116ee57506001600160a01b03821660009081526016602052604090205460ff165b61173a5760405162461bcd60e51b815260206004820152601660248201527f54726164696e67206973206e6f74206163746976652e000000000000000000006044820152606401610ae6565b6001600160a01b03831660009081526017602052604090205460ff16801561177b57506001600160a01b0382166000908152600d602052604090205460ff16155b1561187157600e548111156117f85760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527f6d61785472616e73616374696f6e416d6f756e742e00000000000000000000006064820152608401610ae6565b600f546001600160a01b03831660009081526020819052604090205461181e90836121c0565b111561186c5760405162461bcd60e51b815260206004820152601360248201527f4d61782077616c6c6574206578636565646564000000000000000000000000006044820152606401610ae6565b6119c3565b6001600160a01b03821660009081526017602052604090205460ff1680156118b257506001600160a01b0383166000908152600d602052604090205460ff16155b1561192f57600e5481111561186c5760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560448201527f206d61785472616e73616374696f6e416d6f756e742e000000000000000000006064820152608401610ae6565b6001600160a01b0382166000908152600d602052604090205460ff166119c357600f546001600160a01b03831660009081526020819052604090205461197590836121c0565b11156119c35760405162461bcd60e51b815260206004820152601360248201527f4d61782077616c6c6574206578636565646564000000000000000000000000006044820152606401610ae6565b30600090815260208190526040902054600b54811080159081906119e95750600c5460ff165b80156119ff5750600854600160a01b900460ff16155b8015611a2457506001600160a01b03851660009081526017602052604090205460ff16155b8015611a4957506001600160a01b03851660009081526016602052604090205460ff16155b8015611a6e57506001600160a01b03841660009081526016602052604090205460ff16155b15611a9c576008805460ff60a01b1916600160a01b179055611a8e611e43565b6008805460ff60a01b191690555b6008546001600160a01b03861660009081526016602052604090205460ff600160a01b909204821615911680611aea57506001600160a01b03851660009081526016602052604090205460ff165b15611af3575060005b60008115611bea576001600160a01b03861660009081526017602052604090205460ff168015611b2557506000601454115b15611b6957611b4a6064611b4460145488611f5e90919063ffffffff16565b90611f71565b90508060156000828254611b5e91906121c0565b90915550611bcc9050565b6001600160a01b03871660009081526017602052604090205460ff168015611b9357506000601354115b15611bcc57611bb26064611b4460135488611f5e90919063ffffffff16565b90508060156000828254611bc691906121c0565b90915550505b8015611bdd57611bdd8730836111a2565b611be781866121d8565b94505b611bf58787876111a2565b50505050505050565b6005546001600160a01b03163314610bdb5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610ae6565b600580546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611cec57611cec6121ef565b6001600160a01b03928316602091820292909201810191909152600754604080517fad5c46480000000000000000000000000000000000000000000000000000000081529051919093169263ad5c46489260048083019391928290030181865afa158015611d5e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d829190612205565b81600181518110611d9557611d956121ef565b6001600160a01b039283166020918202929092010152600754611dbb913091168461135e565b6007546040517f791ac9470000000000000000000000000000000000000000000000000000000081526001600160a01b039091169063791ac94790611e0d908590600090869030904290600401612222565b600060405180830381600087803b158015611e2757600080fd5b505af1158015611e3b573d6000803e3d6000fd5b505050505050565b306000908152602081905260408120546015549091828103611e6457505050565b81600003611e7157600191505b600a54436000908152601260205260408120805491611e8f83612293565b909155505043600090815260126020526040902054600211611eb15750505050565b80841115611ebd578093505b8347611ec882611cb7565b6000611ed44783611f7d565b9050808615611ef957611ef687611b4460155485611f5e90919063ffffffff16565b90505b600060158190556009546040516001600160a01b039091169147919081818185875af1925050503d8060008114611f4c576040519150601f19603f3d011682016040523d82523d6000602084013e611f51565b606091505b5050505050505050505050565b6000611f6a828461217f565b9392505050565b6000611f6a828461219e565b6000611f6a82846121d8565b600060208083528351808285015260005b81811015611fb657858101830151858201604001528201611f9a565b81811115611fc8576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b0381168114610e0357600080fd5b6000806040838503121561200657600080fd5b823561201181611fde565b946020939093013593505050565b60008060006060848603121561203457600080fd5b833561203f81611fde565b9250602084013561204f81611fde565b929592945050506040919091013590565b60006020828403121561207257600080fd5b5035919050565b60006020828403121561208b57600080fd5b8135611f6a81611fde565b80358015158114610b8d57600080fd5b600080604083850312156120b957600080fd5b82356120c481611fde565b91506120d260208401612096565b90509250929050565b600080604083850312156120ee57600080fd5b82356120f981611fde565b9150602083013561210981611fde565b809150509250929050565b60006020828403121561212657600080fd5b611f6a82612096565b600181811c9082168061214357607f821691505b60208210810361216357634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600081600019048311821515161561219957612199612169565b500290565b6000826121bb57634e487b7160e01b600052601260045260246000fd5b500490565b600082198211156121d3576121d3612169565b500190565b6000828210156121ea576121ea612169565b500390565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561221757600080fd5b8151611f6a81611fde565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156122725784516001600160a01b03168352938301939183019160010161224d565b50506001600160a01b03969096166060850152505050608001529392505050565b6000600182016122a5576122a5612169565b506001019056fea26469706673582212205ef4050743fce4b4c69ed18f5ca28c20130d9f19acb47ad660ffed5d638ce7c664736f6c634300080f0033
Deployed Bytecode Sourcemap
34900:11632:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23730:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26081:201;;;;;;;;;;-1:-1:-1;26081:201:0;;;;;:::i;:::-;;:::i;:::-;;;1260:14:1;;1253:22;1235:41;;1223:2;1208:18;26081:201:0;1095:187:1;35050:41:0;;;;;;;;;;-1:-1:-1;35050:41:0;;;;-1:-1:-1;;;;;35050:41:0;;;;;;-1:-1:-1;;;;;1478:55:1;;;1460:74;;1448:2;1433:18;35050:41:0;1287:253:1;24850:108:0;;;;;;;;;;-1:-1:-1;24938:12:0;;24850:108;;;1691:25:1;;;1679:2;1664:18;24850:108:0;1545:177:1;26862:295:0;;;;;;;;;;-1:-1:-1;26862:295:0;;;;;:::i;:::-;;:::i;39152:208::-;;;;;;;;;;-1:-1:-1;39152:208:0;;;;;:::i;:::-;;:::i;:::-;;37495:161;;;:::i;24692:93::-;;;;;;;;;;-1:-1:-1;24692:93:0;;24775:2;2515:36:1;;2503:2;2488:18;24692:93:0;2373:184:1;35471:32:0;;;;;;;;;;-1:-1:-1;35471:32:0;;;;;;;;27566:238;;;;;;;;;;-1:-1:-1;27566:238:0;;;;;:::i;:::-;;:::i;38366:465::-;;;;;;;;;;-1:-1:-1;38366:465:0;;;;;:::i;:::-;;:::i;40393:118::-;;;;;;;;;;-1:-1:-1;40393:118:0;;;;;:::i;:::-;;:::i;34973:28::-;;;;;;;;;;-1:-1:-1;34973:28:0;;;;-1:-1:-1;;;;;34973:28:0;;;40519:124;;;;;;;;;;-1:-1:-1;40519:124:0;;;;;:::i;:::-;-1:-1:-1;;;;;40609:26:0;40585:4;40609:26;;;:17;:26;;;;;;;;;40519:124;35311:49;;;;;;;;;;-1:-1:-1;35311:49:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;35566:31;;;;;;;;;;;;;;;;35272:30;;;;;;;;;;-1:-1:-1;35272:30:0;;;;;;;;25021:127;;;;;;;;;;-1:-1:-1;25021:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;25122:18:0;25095:7;25122:18;;;;;;;;;;;;25021:127;2800:103;;;;;;;;;;;;;:::i;46161:210::-;;;;;;;;;;;;;:::i;39368:145::-;;;;;;;;;;-1:-1:-1;39368:145:0;;;;;:::i;:::-;;:::i;35162:30::-;;;;;;;;;;-1:-1:-1;35162:30:0;;;;-1:-1:-1;;;;;35162:30:0;;;40022:259;;;;;;;;;;-1:-1:-1;40022:259:0;;;;;:::i;:::-;;:::i;35367:26::-;;;;;;;;;;;;;;;;45919:234;;;;;;;;;;;;;:::i;2152:87::-;;;;;;;;;;-1:-1:-1;2225:6:0;;-1:-1:-1;;;;;2225:6:0;2152:87;;39700:174;;;;;;;;;;-1:-1:-1;39700:174:0;;;;;:::i;:::-;;:::i;23949:104::-;;;;;;;;;;;;;:::i;46379:150::-;;;;;;;;;;;;;:::i;28307:436::-;;;;;;;;;;-1:-1:-1;28307:436:0;;;;;:::i;:::-;;:::i;35743:40::-;;;;;;;;;;-1:-1:-1;35743:40:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;35604:32;;;;;;;;;;;;;;;;25354:193;;;;;;;;;;-1:-1:-1;25354:193:0;;;;;:::i;:::-;;:::i;35400:30::-;;;;;;;;;;;;;;;;37879:479;;;;;;;;;;-1:-1:-1;37879:479:0;;;;;:::i;:::-;;:::i;35008:33::-;;;;;;;;;;-1:-1:-1;35008:33:0;;;;-1:-1:-1;;;35008:33:0;;;;;;39884:130;;;;;;;;;;-1:-1:-1;39884:130:0;;;;;:::i;:::-;;:::i;39521:171::-;;;;;;;;;;-1:-1:-1;39521:171:0;;;;;:::i;:::-;;:::i;25610:151::-;;;;;;;;;;-1:-1:-1;25610:151:0;;;;;:::i;:::-;-1:-1:-1;;;;;25726:18:0;;;25699:7;25726:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;25610:151;38839:97;;;;;;;;;;-1:-1:-1;38839:97:0;;;;;:::i;:::-;;:::i;35199:33::-;;;;;;;;;;;;;;;;38944:200;;;;;;;;;;-1:-1:-1;38944:200:0;;;;;:::i;:::-;;:::i;3058:201::-;;;;;;;;;;-1:-1:-1;3058:201:0;;;;;:::i;:::-;;:::i;35239:26::-;;;;;;;;;;;;;;;;37668:201;;;;;;;;;;;;;:::i;23730:100::-;23784:13;23817:5;23810:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23730:100;:::o;26081:201::-;26164:4;941:10;26220:32;941:10;26236:7;26245:6;26220:8;:32::i;:::-;-1:-1:-1;26270:4:0;;26081:201;-1:-1:-1;;;26081:201:0:o;26862:295::-;26993:4;941:10;27051:38;27067:4;941:10;27082:6;27051:15;:38::i;:::-;27100:27;27110:4;27116:2;27120:6;27100:9;:27::i;:::-;-1:-1:-1;27145:4:0;;26862:295;-1:-1:-1;;;;26862:295:0:o;39152:208::-;2038:13;:11;:13::i;:::-;39289:4:::1;39281;39260:13;24938:12:::0;;;24850:108;39260:13:::1;:17;::::0;39276:1:::1;39260:17;:::i;:::-;39259:26;;;;:::i;:::-;39258:35;;;;:::i;:::-;39248:6;:45;;39226:78;;;::::0;::::1;;39333:19;:6:::0;39343:8:::1;39333:19;:::i;:::-;39315:15;:37:::0;-1:-1:-1;39152:208:0:o;37495:161::-;2038:13;:11;:13::i;:::-;37564::::1;::::0;-1:-1:-1;;;37564:13:0;::::1;;;37563:14;37555:23;;;::::0;::::1;;37605:12;37591:11;:26:::0;37628:13:::1;:20:::0;;-1:-1:-1;;;;37628:20:0::1;-1:-1:-1::0;;;37628:20:0::1;::::0;;37495:161::o;27566:238::-;941:10;27654:4;25726:18;;;:11;:18;;;;;;;;-1:-1:-1;;;;;25726:27:0;;;;;;;;;;27654:4;;941:10;27710:64;;941:10;;25726:27;;27735:38;;27763:10;;27735:38;:::i;:::-;27710:8;:64::i;38366:465::-;38452:4;2038:13;:11;:13::i;:::-;38531:6:::1;38510:13;24938:12:::0;;;24850:108;38510:13:::1;:17;::::0;38526:1:::1;38510:17;:::i;:::-;38509:28;;;;:::i;:::-;38496:9;:41;;38474:144;;;::::0;-1:-1:-1;;;38474:144:0;;5526:2:1;38474:144:0::1;::::0;::::1;5508:21:1::0;5565:2;5545:18;;;5538:30;5604:34;5584:18;;;5577:62;5675:23;5655:18;;;5648:51;5716:19;;38474:144:0::1;;;;;;;;;38686:3;38665:13;24938:12:::0;;;24850:108;38665:13:::1;:17;::::0;38681:1:::1;38665:17;:::i;:::-;38664:25;;;;:::i;:::-;38651:9;:38;;38629:138;;;::::0;-1:-1:-1;;;38629:138:0;;5948:2:1;38629:138:0::1;::::0;::::1;5930:21:1::0;5987:2;5967:18;;;5960:30;6026:34;6006:18;;;5999:62;6097:20;6077:18;;;6070:48;6135:19;;38629:138:0::1;5746:414:1::0;38629:138:0::1;-1:-1:-1::0;38778:11:0::1;:23:::0;;;38819:4:::1;2062:1;38366:465:::0;;;:::o;40393:118::-;2038:13;:11;:13::i;:::-;40478:15:::1;:25:::0;;-1:-1:-1;;40478:25:0::1;-1:-1:-1::0;;;;;40478:25:0;;;::::1;::::0;;;::::1;::::0;;40393:118::o;2800:103::-;2038:13;:11;:13::i;:::-;2865:30:::1;2892:1;2865:18;:30::i;:::-;2800:103::o:0;46161:210::-;2038:13;:11;:13::i;:::-;46269:4:::1;46211:12;25122:18:::0;;;;;;;;;;;46234:42:::1;::::0;:16:::1;:42::i;:::-;46308:15;::::0;46300:63:::1;::::0;-1:-1:-1;;;;;46308:15:0;;::::1;::::0;46337:21:::1;::::0;46300:63:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;46161:210:0:o;39368:145::-;2038:13;:11;:13::i;:::-;-1:-1:-1;;;;;39473:25:0;;;::::1;;::::0;;;:17:::1;:25;::::0;;;;:32;;-1:-1:-1;;39473:32:0::1;::::0;::::1;;::::0;;;::::1;::::0;;39368:145::o;40022:259::-;2038:13;:11;:13::i;:::-;40138::::1;::::0;-1:-1:-1;;;;;40138:13:0;;::::1;40130:21:::0;;::::1;::::0;40108:128:::1;;;::::0;-1:-1:-1;;;40108:128:0;;6577:2:1;40108:128:0::1;::::0;::::1;6559:21:1::0;6616:2;6596:18;;;6589:30;6655:34;6635:18;;;6628:62;6726:27;6706:18;;;6699:55;6771:19;;40108:128:0::1;6375:421:1::0;40108:128:0::1;-1:-1:-1::0;;;;;40355:14:0;;;;;;:8;:14;;;;;:22;;-1:-1:-1;;40355:22:0;;;;;;;40022:259;;:::o;45919:234::-;45973:15;;-1:-1:-1;;;;;45973:15:0;941:10;45973:31;45965:87;;;;-1:-1:-1;;;45965:87:0;;7003:2:1;45965:87:0;;;6985:21:1;7042:2;7022:18;;;7015:30;7081:34;7061:18;;;7054:62;7152:13;7132:18;;;7125:41;7183:19;;45965:87:0;6801:407:1;45965:87:0;46102:15;;46087:4;25095:7;25122:18;;;;;;;;;;;46063:82;;-1:-1:-1;;;;;46102:15:0;;46063;:82::i;39700:174::-;2038:13;:11;:13::i;:::-;39790:17:::1;:33:::0;;;39863:2:::1;39842:23:::0;::::1;;39834:32;;;::::0;::::1;;39700:174:::0;:::o;23949:104::-;24005:13;24038:7;24031:14;;;;;:::i;46379:150::-;46466:15;;46458:63;;46422:12;;-1:-1:-1;;;;;46466:15:0;;46495:21;;46458:63;6165:205:1;28307:436:0;941:10;28400:4;25726:18;;;:11;:18;;;;;;;;-1:-1:-1;;;;;25726:27:0;;;;;;;;;;28400:4;;941:10;28547:15;28527:16;:35;;28519:85;;;;-1:-1:-1;;;28519:85:0;;7415:2:1;28519:85:0;;;7397:21:1;7454:2;7434:18;;;7427:30;7493:34;7473:18;;;7466:62;7564:7;7544:18;;;7537:35;7589:19;;28519:85:0;7213:401:1;28519:85:0;28640:60;28649:5;28656:7;28684:15;28665:16;:34;28640:8;:60::i;25354:193::-;25433:4;941:10;25489:28;941:10;25506:2;25510:6;25489:9;:28::i;37879:479::-;37972:4;2038:13;:11;:13::i;:::-;38051:6:::1;38030:13;24938:12:::0;;;24850:108;38030:13:::1;:17;::::0;38046:1:::1;38030:17;:::i;:::-;38029:28;;;;:::i;:::-;38016:9;:41;;37994:144;;;::::0;-1:-1:-1;;;37994:144:0;;5526:2:1;37994:144:0::1;::::0;::::1;5508:21:1::0;5565:2;5545:18;;;5538:30;5604:34;5584:18;;;5577:62;5675:23;5655:18;;;5648:51;5716:19;;37994:144:0::1;5324:417:1::0;37994:144:0::1;38206:3;38185:13;24938:12:::0;;;24850:108;38185:13:::1;:17;::::0;38201:1:::1;38185:17;:::i;:::-;38184:25;;;;:::i;:::-;38171:9;:38;;38149:138;;;::::0;-1:-1:-1;;;38149:138:0;;5948:2:1;38149:138:0::1;::::0;::::1;5930:21:1::0;5987:2;5967:18;;;5960:30;6026:34;6006:18;;;5999:62;6097:20;6077:18;;;6070:48;6135:19;;38149:138:0::1;5746:414:1::0;38149:138:0::1;-1:-1:-1::0;38298:18:0::1;:30:::0;38346:4:::1;::::0;37879:479::o;39884:130::-;2038:13;:11;:13::i;:::-;-1:-1:-1;;;;;39969:26:0;;;::::1;;::::0;;;:17:::1;:26;::::0;;;;:37;;-1:-1:-1;;39969:37:0::1;::::0;::::1;;::::0;;;::::1;::::0;;39884:130::o;39521:171::-;2038:13;:11;:13::i;:::-;39610:16:::1;:32:::0;;;39681:2:::1;39661:22:::0;::::1;;39653:31;;;::::0;::::1;38839:97:::0;2038:13;:11;:13::i;:::-;38907:11:::1;:21:::0;;-1:-1:-1;;38907:21:0::1;::::0;::::1;;::::0;;;::::1;::::0;;38839:97::o;38944:200::-;2038:13;:11;:13::i;:::-;39077:4:::1;39069;39048:13;24938:12:::0;;;24850:108;39048:13:::1;:17;::::0;39064:1:::1;39048:17;:::i;:::-;39047:26;;;;:::i;:::-;39046:35;;;;:::i;:::-;39036:6;:45;;39014:78;;;::::0;::::1;;39117:19;:6:::0;39127:8:::1;39117:19;:::i;:::-;39103:11;:33:::0;-1:-1:-1;38944:200:0:o;3058:201::-;2038:13;:11;:13::i;:::-;-1:-1:-1;;;;;3147:22:0;::::1;3139:73;;;::::0;-1:-1:-1;;;3139:73:0;;7821:2:1;3139:73:0::1;::::0;::::1;7803:21:1::0;7860:2;7840:18;;;7833:30;7899:34;7879:18;;;7872:62;7970:8;7950:18;;;7943:36;7996:19;;3139:73:0::1;7619:402:1::0;3139:73:0::1;3223:28;3242:8;3223:18;:28::i;37668:201::-:0;37721:4;2038:13;:11;:13::i;:::-;37738::::1;:21:::0;;-1:-1:-1;;37738:21:0::1;::::0;;24938:12;;37770:15:::1;:31:::0;24938:12;;37812:11:::1;:27:::0;-1:-1:-1;37857:4:0::1;37668:201:::0;:::o;29213:830::-;-1:-1:-1;;;;;29344:18:0;;29336:68;;;;-1:-1:-1;;;29336:68:0;;8228:2:1;29336:68:0;;;8210:21:1;8267:2;8247:18;;;8240:30;8306:34;8286:18;;;8279:62;-1:-1:-1;;;8357:18:1;;;8350:35;8402:19;;29336:68:0;8026:401:1;29336:68:0;-1:-1:-1;;;;;29423:16:0;;29415:64;;;;-1:-1:-1;;;29415:64:0;;8634:2:1;29415:64:0;;;8616:21:1;8673:2;8653:18;;;8646:30;8712:34;8692:18;;;8685:62;-1:-1:-1;;;8763:18:1;;;8756:33;8806:19;;29415:64:0;8432:399:1;29415:64:0;-1:-1:-1;;;;;29563:15:0;;29541:19;29563:15;;;;;;;;;;;29597:21;;;;29589:72;;;;-1:-1:-1;;;29589:72:0;;9038:2:1;29589:72:0;;;9020:21:1;9077:2;9057:18;;;9050:30;9116:34;9096:18;;;9089:62;9187:8;9167:18;;;9160:36;9213:19;;29589:72:0;8836:402:1;29589:72:0;-1:-1:-1;;;;;29697:15:0;;;:9;:15;;;;;;;;;;;29715:20;;;29697:38;;29907:13;;;;;;;;;;:23;;;;;;29959:26;;1691:25:1;;;29907:13:0;;29959:26;;1664:18:1;29959:26:0;;;;;;;29325:718;29213:830;;;:::o;32316:380::-;-1:-1:-1;;;;;32452:19:0;;32444:68;;;;-1:-1:-1;;;32444:68:0;;9445:2:1;32444:68:0;;;9427:21:1;9484:2;9464:18;;;9457:30;9523:34;9503:18;;;9496:62;9594:6;9574:18;;;9567:34;9618:19;;32444:68:0;9243:400:1;32444:68:0;-1:-1:-1;;;;;32531:21:0;;32523:68;;;;-1:-1:-1;;;32523:68:0;;9850:2:1;32523:68:0;;;9832:21:1;9889:2;9869:18;;;9862:30;9928:34;9908:18;;;9901:62;9999:4;9979:18;;;9972:32;10021:19;;32523:68:0;9648:398:1;32523:68:0;-1:-1:-1;;;;;32604:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;32656:32;;1691:25:1;;;32656:32:0;;1664:18:1;32656:32:0;;;;;;;32316:380;;;:::o;32987:453::-;-1:-1:-1;;;;;25726:18:0;;;33122:24;25726:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;-1:-1:-1;;33189:37:0;;33185:248;;33271:6;33251:16;:26;;33243:68;;;;-1:-1:-1;;;33243:68:0;;10253:2:1;33243:68:0;;;10235:21:1;10292:2;10272:18;;;10265:30;10331:31;10311:18;;;10304:59;10380:18;;33243:68:0;10051:353:1;33243:68:0;33355:51;33364:5;33371:7;33399:6;33380:16;:25;33355:8;:51::i;40653:3158::-;-1:-1:-1;;;;;40785:18:0;;40777:68;;;;-1:-1:-1;;;40777:68:0;;8228:2:1;40777:68:0;;;8210:21:1;8267:2;8247:18;;;8240:30;8306:34;8286:18;;;8279:62;-1:-1:-1;;;8357:18:1;;;8350:35;8402:19;;40777:68:0;8026:401:1;40777:68:0;-1:-1:-1;;;;;40864:16:0;;40856:64;;;;-1:-1:-1;;;40856:64:0;;8634:2:1;40856:64:0;;;8616:21:1;8673:2;8653:18;;;8646:30;8712:34;8692:18;;;8685:62;-1:-1:-1;;;8763:18:1;;;8756:33;8806:19;;40856:64:0;8432:399:1;40856:64:0;40937:6;40947:1;40937:11;40933:93;;40965:28;40981:4;40987:2;40991:1;40965:15;:28::i;:::-;40653:3158;;;:::o;40933:93::-;41042:13;;;;41038:1562;;;2225:6;;-1:-1:-1;;;;;41094:15:0;;;2225:6;;41094:15;;;;:49;;-1:-1:-1;2225:6:0;;-1:-1:-1;;;;;41130:13:0;;;2225:6;;41130:13;;41094:49;:79;;;;-1:-1:-1;41165:8:0;;-1:-1:-1;;;41165:8:0;;;;41164:9;41094:79;:116;;;;-1:-1:-1;;;;;;41194:16:0;;;;41094:116;:158;;;;-1:-1:-1;;;;;;41231:21:0;;41245:6;41231:21;;41094:158;41072:1513;;;41296:13;;-1:-1:-1;;;41296:13:0;;;;41291:219;;-1:-1:-1;;;;;41368:23:0;;;;;;:17;:23;;;;;;;;;:48;;-1:-1:-1;;;;;;41395:21:0;;;;;;:17;:21;;;;;;;;41368:48;41334:156;;;;-1:-1:-1;;;41334:156:0;;10611:2:1;41334:156:0;;;10593:21:1;10650:2;10630:18;;;10623:30;10689:24;10669:18;;;10662:52;10731:18;;41334:156:0;10409:346:1;41334:156:0;-1:-1:-1;;;;;41556:14:0;;;;;;:8;:14;;;;;;;;:61;;;;-1:-1:-1;;;;;;41596:21:0;;;;;;:17;:21;;;;;;;;41595:22;41556:61;41530:1038;;;41704:11;;41694:6;:21;;41660:160;;;;-1:-1:-1;;;41660:160:0;;10962:2:1;41660:160:0;;;10944:21:1;11001:2;10981:18;;;10974:30;11040:34;11020:18;;;11013:62;11111:23;11091:18;;;11084:51;11152:19;;41660:160:0;10760:417:1;41660:160:0;41903:15;;-1:-1:-1;;;;;25122:18:0;;25095:7;25122:18;;;;;;;;;;;41877:22;;:6;:22;:::i;:::-;:41;;41843:146;;;;-1:-1:-1;;;41843:146:0;;11384:2:1;41843:146:0;;;11366:21:1;11423:2;11403:18;;;11396:30;11462:21;11442:18;;;11435:49;11501:18;;41843:146:0;11182:343:1;41843:146:0;41530:1038;;;-1:-1:-1;;;;;42060:12:0;;;;;;:8;:12;;;;;;;;:61;;;;-1:-1:-1;;;;;;42098:23:0;;;;;;:17;:23;;;;;;;;42097:24;42060:61;42034:534;;;42208:11;;42198:6;:21;;42164:161;;;;-1:-1:-1;;;42164:161:0;;11732:2:1;42164:161:0;;;11714:21:1;11771:2;11751:18;;;11744:30;11810:34;11790:18;;;11783:62;11881:24;11861:18;;;11854:52;11923:19;;42164:161:0;11530:418:1;42034:534:0;-1:-1:-1;;;;;42356:21:0;;;;;;:17;:21;;;;;;;;42351:217;;42462:15;;-1:-1:-1;;;;;25122:18:0;;25095:7;25122:18;;;;;;;;;;;42436:22;;:6;:22;:::i;:::-;:41;;42402:146;;;;-1:-1:-1;;;42402:146:0;;11384:2:1;42402:146:0;;;11366:21:1;11423:2;11403:18;;;11396:30;11462:21;11442:18;;;11435:49;11501:18;;42402:146:0;11182:343:1;42402:146:0;42659:4;42610:28;25122:18;;;;;;;;;;;42715:11;;42691:35;;;;;;;42757;;-1:-1:-1;42781:11:0;;;;42757:35;:61;;;;-1:-1:-1;42810:8:0;;-1:-1:-1;;;42810:8:0;;;;42809:9;42757:61;:93;;;;-1:-1:-1;;;;;;42836:14:0;;;;;;:8;:14;;;;;;;;42835:15;42757:93;:134;;;;-1:-1:-1;;;;;;42868:23:0;;;;;;:17;:23;;;;;;;;42867:24;42757:134;:173;;;;-1:-1:-1;;;;;;42909:21:0;;;;;;:17;:21;;;;;;;;42908:22;42757:173;42739:305;;;42957:8;:15;;-1:-1:-1;;;;42957:15:0;-1:-1:-1;;;42957:15:0;;;42989:10;:8;:10::i;:::-;43016:8;:16;;-1:-1:-1;;;;43016:16:0;;;42739:305;43070:8;;-1:-1:-1;;;;;43095:23:0;;43054:12;43095:23;;;:17;:23;;;;;;43070:8;-1:-1:-1;;;43070:8:0;;;;;43069:9;;43095:23;;:48;;-1:-1:-1;;;;;;43122:21:0;;;;;;:17;:21;;;;;;;;43095:48;43091:96;;;-1:-1:-1;43170:5:0;43091:96;43199:12;43230:7;43226:534;;;-1:-1:-1;;;;;43260:12:0;;;;;;:8;:12;;;;;;;;:37;;;;;43296:1;43276:17;;:21;43260:37;43256:355;;;43325:38;43359:3;43325:29;43336:17;;43325:6;:10;;:29;;;;:::i;:::-;:33;;:38::i;:::-;43318:45;;43404:4;43382:18;;:26;;;;;;;:::i;:::-;;;;-1:-1:-1;43256:355:0;;-1:-1:-1;43256:355:0;;-1:-1:-1;;;;;43447:14:0;;;;;;:8;:14;;;;;;;;:38;;;;;43484:1;43465:16;;:20;43447:38;43443:168;;;43513:37;43546:3;43513:28;43524:16;;43513:6;:10;;:28;;;;:::i;:37::-;43506:44;;43591:4;43569:18;;:26;;;;;;;:::i;:::-;;;;-1:-1:-1;;43443:168:0;43631:8;;43627:91;;43660:42;43676:4;43690;43697;43660:15;:42::i;:::-;43734:14;43744:4;43734:14;;:::i;:::-;;;43226:534;43770:33;43786:4;43792:2;43796:6;43770:15;:33::i;:::-;40766:3045;;;;40653:3158;;;:::o;2317:132::-;2225:6;;-1:-1:-1;;;;;2225:6:0;941:10;2381:23;2373:68;;;;-1:-1:-1;;;2373:68:0;;12285:2:1;2373:68:0;;;12267:21:1;;;12304:18;;;12297:30;12363:34;12343:18;;;12336:62;12415:18;;2373:68:0;12083:356:1;3419:191:0;3512:6;;;-1:-1:-1;;;;;3529:17:0;;;-1:-1:-1;;3529:17:0;;;;;;;3562:40;;3512:6;;;3529:17;3512:6;;3562:40;;3493:16;;3562:40;3482:128;3419:191;:::o;43823:475::-;43913:16;;;43927:1;43913:16;;;;;;;;43889:21;;43913:16;;;;;;;;;;-1:-1:-1;43913:16:0;43889:40;;43958:4;43940;43945:1;43940:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;43940:23:0;;;:7;;;;;;;;;;:23;;;;43984:15;;:22;;;;;;;;:15;;;;;:20;;:22;;;;;43940:7;;43984:22;;;;;:15;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;43974:4;43979:1;43974:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;43974:32:0;;;:7;;;;;;;;;:32;44051:15;;44019:62;;44036:4;;44051:15;44069:11;44019:8;:62::i;:::-;44094:15;;:196;;;;;-1:-1:-1;;;;;44094:15:0;;;;:66;;:196;;44175:11;;44094:15;;44217:4;;44244;;44264:15;;44094:196;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43878:420;43823:475;:::o;44684:1227::-;44769:4;44725:23;25122:18;;;;;;;;;;;44814;;25122;;44872:20;;;44868:59;;44909:7;;;44684:1227::o;44868:59::-;44941:17;44962:1;44941:22;44937:76;;45000:1;44980:21;;44937:76;45048:18;;45089:12;45025:20;45077:25;;;:11;:25;;;;;:27;;;;;;:::i;:::-;;;;-1:-1:-1;;45130:12:0;45118:25;;;;:11;:25;;;;;;45147:1;-1:-1:-1;45115:68:0;;45165:7;;;;44684:1227::o;45115:68::-;45215:12;45197:15;:30;45193:93;;;45262:12;45244:30;;45193:93;45327:15;45383:21;45417:36;45327:15;45417:16;:36::i;:::-;45466:18;45487:44;:21;45513:17;45487:25;:44::i;:::-;45466:65;-1:-1:-1;45466:65:0;45593:21;;45589:161;;45649:89;45706:17;45649:34;45664:18;;45649:10;:14;;:34;;;;:::i;:89::-;45631:107;;45589:161;45781:1;45760:18;:22;;;45816:15;;45808:95;;-1:-1:-1;;;;;45816:15:0;;;;45863:21;;45808:95;;45781:1;45808:95;45863:21;45816:15;45808:95;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;44684:1227:0:o;9768:98::-;9826:7;9853:5;9857:1;9853;:5;:::i;:::-;9846:12;9768:98;-1:-1:-1;;;9768:98:0:o;10167:::-;10225:7;10252:5;10256:1;10252;:5;:::i;9411:98::-;9469:7;9496:5;9500:1;9496;:5;:::i;14:597:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;452:6;449:1;446:13;443:91;;;522:1;517:2;508:6;497:9;493:22;489:31;482:42;443:91;-1:-1:-1;595:2:1;574:15;-1:-1:-1;;570:29:1;555:45;;;;602:2;551:54;;14:597;-1:-1:-1;;;14:597:1:o;616:154::-;-1:-1:-1;;;;;695:5:1;691:54;684:5;681:65;671:93;;760:1;757;750:12;775:315;843:6;851;904:2;892:9;883:7;879:23;875:32;872:52;;;920:1;917;910:12;872:52;959:9;946:23;978:31;1003:5;978:31;:::i;:::-;1028:5;1080:2;1065:18;;;;1052:32;;-1:-1:-1;;;775:315:1:o;1727:456::-;1804:6;1812;1820;1873:2;1861:9;1852:7;1848:23;1844:32;1841:52;;;1889:1;1886;1879:12;1841:52;1928:9;1915:23;1947:31;1972:5;1947:31;:::i;:::-;1997:5;-1:-1:-1;2054:2:1;2039:18;;2026:32;2067:33;2026:32;2067:33;:::i;:::-;1727:456;;2119:7;;-1:-1:-1;;;2173:2:1;2158:18;;;;2145:32;;1727:456::o;2188:180::-;2247:6;2300:2;2288:9;2279:7;2275:23;2271:32;2268:52;;;2316:1;2313;2306:12;2268:52;-1:-1:-1;2339:23:1;;2188:180;-1:-1:-1;2188:180:1:o;2562:247::-;2621:6;2674:2;2662:9;2653:7;2649:23;2645:32;2642:52;;;2690:1;2687;2680:12;2642:52;2729:9;2716:23;2748:31;2773:5;2748:31;:::i;3045:160::-;3110:20;;3166:13;;3159:21;3149:32;;3139:60;;3195:1;3192;3185:12;3210:315;3275:6;3283;3336:2;3324:9;3315:7;3311:23;3307:32;3304:52;;;3352:1;3349;3342:12;3304:52;3391:9;3378:23;3410:31;3435:5;3410:31;:::i;:::-;3460:5;-1:-1:-1;3484:35:1;3515:2;3500:18;;3484:35;:::i;:::-;3474:45;;3210:315;;;;;:::o;3530:388::-;3598:6;3606;3659:2;3647:9;3638:7;3634:23;3630:32;3627:52;;;3675:1;3672;3665:12;3627:52;3714:9;3701:23;3733:31;3758:5;3733:31;:::i;:::-;3783:5;-1:-1:-1;3840:2:1;3825:18;;3812:32;3853:33;3812:32;3853:33;:::i;:::-;3905:7;3895:17;;;3530:388;;;;;:::o;3923:180::-;3979:6;4032:2;4020:9;4011:7;4007:23;4003:32;4000:52;;;4048:1;4045;4038:12;4000:52;4071:26;4087:9;4071:26;:::i;4108:437::-;4187:1;4183:12;;;;4230;;;4251:61;;4305:4;4297:6;4293:17;4283:27;;4251:61;4358:2;4350:6;4347:14;4327:18;4324:38;4321:218;;-1:-1:-1;;;4392:1:1;4385:88;4496:4;4493:1;4486:15;4524:4;4521:1;4514:15;4321:218;;4108:437;;;:::o;4550:184::-;-1:-1:-1;;;4599:1:1;4592:88;4699:4;4696:1;4689:15;4723:4;4720:1;4713:15;4739:168;4779:7;4845:1;4841;4837:6;4833:14;4830:1;4827:21;4822:1;4815:9;4808:17;4804:45;4801:71;;;4852:18;;:::i;:::-;-1:-1:-1;4892:9:1;;4739:168::o;4912:274::-;4952:1;4978;4968:189;;-1:-1:-1;;;5010:1:1;5003:88;5114:4;5111:1;5104:15;5142:4;5139:1;5132:15;4968:189;-1:-1:-1;5171:9:1;;4912:274::o;5191:128::-;5231:3;5262:1;5258:6;5255:1;5252:13;5249:39;;;5268:18;;:::i;:::-;-1:-1:-1;5304:9:1;;5191:128::o;11953:125::-;11993:4;12021:1;12018;12015:8;12012:34;;;12026:18;;:::i;:::-;-1:-1:-1;12063:9:1;;11953:125::o;12633:184::-;-1:-1:-1;;;12682:1:1;12675:88;12782:4;12779:1;12772:15;12806:4;12803:1;12796:15;12822:251;12892:6;12945:2;12933:9;12924:7;12920:23;12916:32;12913:52;;;12961:1;12958;12951:12;12913:52;12993:9;12987:16;13012:31;13037:5;13012:31;:::i;13078:1026::-;13340:4;13388:3;13377:9;13373:19;13419:6;13408:9;13401:25;13445:2;13483:6;13478:2;13467:9;13463:18;13456:34;13526:3;13521:2;13510:9;13506:18;13499:31;13550:6;13585;13579:13;13616:6;13608;13601:22;13654:3;13643:9;13639:19;13632:26;;13693:2;13685:6;13681:15;13667:29;;13714:1;13724:218;13738:6;13735:1;13732:13;13724:218;;;13803:13;;-1:-1:-1;;;;;13799:62:1;13787:75;;13917:15;;;;13882:12;;;;13760:1;13753:9;13724:218;;;-1:-1:-1;;;;;;;13998:55:1;;;;13993:2;13978:18;;13971:83;-1:-1:-1;;;14085:3:1;14070:19;14063:35;13959:3;13078:1026;-1:-1:-1;;;13078:1026:1:o;14109:135::-;14148:3;14169:17;;;14166:43;;14189:18;;:::i;:::-;-1:-1:-1;14236:1:1;14225:13;;14109:135::o
Swarm Source
ipfs://5ef4050743fce4b4c69ed18f5ca28c20130d9f19acb47ad660ffed5d638ce7c6
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.