ERC-20
Overview
Max Total Supply
1,000,000,000 FUKU2
Holders
202
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
9,686.195299585670864066 FUKU2Value
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
FUKU2
Compiler Version
v0.8.17+commit.8df45f5f
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2024-08-09 */ // SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.4; library Address { function isContract(address account) internal view returns (bool) { return account.code.length > 0; } function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, "Address: low-level call failed"); } function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static pump call failed"); } function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } function verifyCallResultFromTarget( address target, bool success, bytes memory returndata, string memory errorMessage ) internal view returns (bytes memory) { if (success) { if (returndata.length == 0) { // only check isContract if the call was successful and the return data is empty // otherwise we already know that it was a contract require(isContract(target), "Address: call to non-contract"); } return returndata; } else { _revert(returndata, errorMessage); } } function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { _revert(returndata, errorMessage); } } function _revert(bytes memory returndata, string memory errorMessage) private pure { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } pragma solidity ^0.8.0; interface IERC20 { event Transfer(address indexed from, address indexed to, uint256 value); event Approval(address indexed owner, address indexed spender, uint256 value); function totalSupply() external view returns (uint256); function balanceOf(address account) external view returns (uint256); function transfer(address to, uint256 amount) external returns (bool); function allowance(address owner, address spender) external view returns (uint256); function approve(address spender, uint256 amount) external returns (bool); function transferFrom(address from, address to, uint256 amount) external returns (bool); } interface IERC20Metadata is IERC20 { function name() external view returns (string memory); function symbol() external view returns (string memory); function decimals() external view returns (uint8); } abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } 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; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } function name() public view virtual override returns (string memory) { return _name; } function symbol() public view virtual override returns (string memory) { return _symbol; } function decimals() public view virtual override returns (uint8) { return 18; } function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, amount); return true; } function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, spender, amount); return true; } 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; } function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, spender) + addedValue); return true; } 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; } 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); } 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); } 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); } 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); } 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); } } } function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual {} function _afterTokenTransfer(address from, address to, uint256 amount) internal virtual {} } abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); constructor() { _transferOwnership(_msgSender()); } modifier onlyOwner() { _checkOwner(); _; } function owner() public view virtual returns (address) { return _owner; } function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } interface IERC20Permit { function permit( address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) external; function nonces(address owner) external view returns (uint256); function DOMAIN_SEPARATOR() external view returns (bytes32); } library SafeERC20 { using Address for address; function safeTransfer(IERC20 token, address to, uint256 value) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value)); } function safeTransferFrom(IERC20 token, address from, address to, uint256 value) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value)); } function safeApprove(IERC20 token, address spender, uint256 value) internal { // safeApprove should only be called when setting an initial allowance, // or when resetting it to zero. To increase pump and decrease it, use // 'safeIncreaseAllowance' and 'safeDecreaseAllowance' require( (value == 0) || (token.allowance(address(this), spender) == 0), "SafeERC20: approve from non-zero to non-zero allowance" ); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value)); } function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal { uint256 oldAllowance = token.allowance(address(this), spender); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, oldAllowance + value)); } function safeDecreaseAllowance(IERC20 token, address spender, uint256 value) internal { unchecked { uint256 oldAllowance = token.allowance(address(this), spender); require(oldAllowance >= value, "SafeERC20: decreased allowance below zero"); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, oldAllowance - value)); } } function forceApprove(IERC20 token, address spender, uint256 value) internal { bytes memory approvalCall = abi.encodeWithSelector(token.approve.selector, spender, value); if (!_callOptionalReturnBool(token, approvalCall)) { _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, 0)); _callOptionalReturn(token, approvalCall); } } function safePermit( IERC20Permit token, address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) internal { uint256 nonceBefore = token.nonces(owner); token.permit(owner, spender, value, deadline, v, r, s); uint256 nonceAfter = token.nonces(owner); require(nonceAfter == nonceBefore + 1, "SafeERC20: permit did not succeed"); } function _callOptionalReturn(IERC20 token, bytes memory data) private { // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since // we're implementing it ourselves. We use {Address-functionCall} to perform this call, which verifies that // the target address contains contract code and also asserts for success in the low-level call. bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed"); require(returndata.length == 0 || abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed"); } function _callOptionalReturnBool(IERC20 token, bytes memory data) private returns (bool) { // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since // we're implementing it ourselves. We cannot use {Address-functionCall} here since this should return false // and not revert is the subcall reverts. (bool success, bytes memory returndata) = address(token).call(data); return success && (returndata.length == 0 || abi.decode(returndata, (bool))) && Address.isContract(address(token)); } } library Math { enum Rounding { Down, // Toward negative infinity Up, // Toward infinity Zero // Toward zero } function max(uint256 a, uint256 b) internal pure returns (uint256) { return a > b ? a : b; } function min(uint256 a, uint256 b) internal pure returns (uint256) { return a < b ? a : b; } function average(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b) / 2 can overflow. return (a & b) + (a ^ b) / 2; } function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b - 1) / b can overflow on addition, so we distribute. return a == 0 ? 0 : (a - 1) / b + 1; } function mulDiv(uint256 x, uint256 y, uint256 denominator) internal pure returns (uint256 result) { unchecked { // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256 // variables such that product = prod1 * 2^256 + prod0. uint256 prod0; // Least significant 256 bits of the product uint256 prod1; // Most significant 256 bits of the product assembly { let mm := mulmod(x, y, not(0)) prod0 := mul(x, y) prod1 := sub(sub(mm, prod0), lt(mm, prod0)) } // Handle non-overflow cases, 256 by 256 division. if (prod1 == 0) { // Solidity will revert if denominator == 0, unlike the div opcode on its own. // The surrounding unchecked block does not change this fact. // See https://docs.soliditylang.org/en/latest/control-structures.html#checked-or-unchecked-arithmetic. return prod0 / denominator; } // Make sure the result is less than 2^256. Also prevents denominator == 0. require(denominator > prod1, "Math: mulDiv overflow"); uint256 remainder; assembly { // Compute remainder using mulmod. remainder := mulmod(x, y, denominator) // Subtract 256 bit number from 512 bit number. prod1 := sub(prod1, gt(remainder, prod0)) prod0 := sub(prod0, remainder) } // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1. // See https://cs.stackexchange.com/q/138556/92363. // Does not overflow because the denominator cannot be zero at this stage in the function. uint256 twos = denominator & (~denominator + 1); assembly { // Divide denominator by twos. denominator := div(denominator, twos) // Divide [prod1 prod0] by twos. prod0 := div(prod0, twos) // Flip twos such that it is 2^256 / twos. If twos is zero, pump then it becomes one. twos := add(div(sub(0, twos), twos), 1) } // Shift in bits from prod1 into prod0. prod0 |= prod1 * twos; // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for // four bits. That is, denominator * inv = 1 mod 2^4. uint256 inverse = (3 * denominator) ^ 2; // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works // in modular arithmetic, doubling the correct bits in each step. inverse *= 2 - denominator * inverse; // inverse mod 2^8 inverse *= 2 - denominator * inverse; // inverse mod 2^16 inverse *= 2 - denominator * inverse; // inverse mod 2^32 inverse *= 2 - denominator * inverse; // inverse mod 2^64 inverse *= 2 - denominator * inverse; // inverse mod 2^128 inverse *= 2 - denominator * inverse; // inverse mod 2^256 // Because the division is now exact we can divide by multiplying with the modular inverse of denominator. // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1 // is no longer required. result = prod0 * inverse; return result; } } function mulDiv(uint256 x, uint256 y, uint256 denominator, Rounding rounding) internal pure returns (uint256) { uint256 result = mulDiv(x, y, denominator); if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) { result += 1; } return result; } function sqrt(uint256 a) internal pure returns (uint256) { if (a == 0) { return 0; } // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target. // // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`. // // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)` // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))` // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)` // // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit. uint256 result = 1 << (log2(a) >> 1); // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128, // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision // into the expected uint128 result. unchecked { result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; return min(result, a / result); } } function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = sqrt(a); return result + (rounding == Rounding.Up && result * result < a ? 1 : 0); } } function log2(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 128; } if (value >> 64 > 0) { value >>= 64; result += 64; } if (value >> 32 > 0) { value >>= 32; result += 32; } if (value >> 16 > 0) { value >>= 16; result += 16; } if (value >> 8 > 0) { value >>= 8; result += 8; } if (value >> 4 > 0) { value >>= 4; result += 4; } if (value >> 2 > 0) { value >>= 2; result += 2; } if (value >> 1 > 0) { result += 1; } } return result; } function log2(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log2(value); return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0); } } function log10(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >= 10 ** 64) { value /= 10 ** 64; result += 64; } if (value >= 10 ** 32) { value /= 10 ** 32; result += 32; } if (value >= 10 ** 16) { value /= 10 ** 16; result += 16; } if (value >= 10 ** 8) { value /= 10 ** 8; result += 8; } if (value >= 10 ** 4) { value /= 10 ** 4; result += 4; } if (value >= 10 ** 2) { value /= 10 ** 2; result += 2; } if (value >= 10 ** 1) { result += 1; } } return result; } function log10(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log10(value); return result + (rounding == Rounding.Up && 10 ** result < value ? 1 : 0); } } function log256(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 16; } if (value >> 64 > 0) { value >>= 64; result += 8; } if (value >> 32 > 0) { value >>= 32; result += 4; } if (value >> 16 > 0) { value >>= 16; result += 2; } if (value >> 8 > 0) { result += 1; } } return result; } function log256(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log256(value); return result + (rounding == Rounding.Up && 1 << (result << 3) < value ? 1 : 0); } } } // pragma solidity ^0.8.0; library SafeMath { 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); } } function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } 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); } } function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } } interface IUniswapV2Factory { event PairCreated( address indexed token0, address indexed token1, address pair, uint256 ); function feeTo() external view returns (address); function feeToSetter() external view returns (address); function getPair(address tokenA, address tokenB) external view returns (address pair); function allPairs(uint256) external view returns (address pair); function allPairsLength() external view returns (uint256); function createPair(address tokenA, address tokenB) external returns (address pair); function setFeeTo(address) external; function setFeeToSetter(address) external; } pragma solidity >=0.6.2; interface IUniswapV2Pair { event Approval(address indexed owner, address indexed spender, uint value); event Transfer(address indexed from, address indexed to, uint value); function name() external pure returns (string memory); function symbol() external pure returns (string memory); function decimals() external pure returns (uint8); function totalSupply() external view returns (uint); function balanceOf(address owner) external view returns (uint); function allowance(address owner, address spender) external view returns (uint); function approve(address spender, uint value) external returns (bool); function transfer(address to, uint value) external returns (bool); function transferFrom(address from, address to, uint value) external returns (bool); function DOMAIN_SEPARATOR() external view returns (bytes32); function PERMIT_TYPEHASH() external pure returns (bytes32); function nonces(address owner) external view returns (uint); function permit(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s) external; event Mint(address indexed sender, uint amount0, uint amount1); event Burn(address indexed sender, uint amount0, uint amount1, address indexed to); event Swap( address indexed sender, uint amount0In, uint amount1In, uint amount0Out, uint amount1Out, address indexed to ); event Sync(uint112 reserve0, uint112 reserve1); function MINIMUM_LIQUIDITY() external pure returns (uint); function factory() external view returns (address); function token0() external view returns (address); function token1() external view returns (address); function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast); function price0CumulativeLast() external view returns (uint); function price1CumulativeLast() external view returns (uint); function kLast() external view returns (uint); function mint(address to) external returns (uint liquidity); function burn(address to) external returns (uint amount0, uint amount1); function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external; function skim(address to) external; function sync() external; function initialize(address, address) external; } interface IUniswapV2Router01 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint256 amountADesired, uint256 amountBDesired, uint256 amountAMin, uint256 amountBMin, address to, uint256 deadline ) external returns ( uint256 amountA, uint256 amountB, uint256 liquidity ); function addLiquidityETH( address token, uint256 amountTokenDesired, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline ) external payable returns ( uint256 amountToken, uint256 amountETH, uint256 liquidity ); function removeLiquidity( address tokenA, address tokenB, uint256 liquidity, uint256 amountAMin, uint256 amountBMin, address to, uint256 deadline ) external returns (uint256 amountA, uint256 amountB); function removeLiquidityETH( address token, uint256 liquidity, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline ) external returns (uint256 amountToken, uint256 amountETH); function removeLiquidityWithPermit( address tokenA, address tokenB, uint256 liquidity, uint256 amountAMin, uint256 amountBMin, address to, uint256 deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint256 amountA, uint256 amountB); function removeLiquidityETHWithPermit( address token, uint256 liquidity, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint256 amountToken, uint256 amountETH); function swapExactTokensForTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external returns (uint256[] memory amounts); function swapTokensForExactTokens( uint256 amountOut, uint256 amountInMax, address[] calldata path, address to, uint256 deadline ) external returns (uint256[] memory amounts); function swapExactETHForTokens( uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external payable returns (uint256[] memory amounts); function swapTokensForExactETH( uint256 amountOut, uint256 amountInMax, address[] calldata path, address to, uint256 deadline ) external returns (uint256[] memory amounts); function swapExactTokensForETH( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external returns (uint256[] memory amounts); function swapETHForExactTokens( uint256 amountOut, address[] calldata path, address to, uint256 deadline ) external payable returns (uint256[] memory amounts); function quote( uint256 amountA, uint256 reserveA, uint256 reserveB ) external pure returns (uint256 amountB); function getAmountOut( uint256 amountIn, uint256 reserveIn, uint256 reserveOut ) external pure returns (uint256 amountOut); function getAmountIn( uint256 amountOut, uint256 reserveIn, uint256 reserveOut ) external pure returns (uint256 amountIn); function getAmountsOut(uint256 amountIn, address[] calldata path) external view returns (uint256[] memory amounts); function getAmountsIn(uint256 amountOut, address[] calldata path) external view returns (uint256[] memory amounts); } interface IUniswapV2Router02 is IUniswapV2Router01 { function removeLiquidityETHSupportingFeeOnTransferTokens( address token, uint256 liquidity, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline ) external returns (uint256 amountETH); function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens( address token, uint256 liquidity, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint256 amountETH); function swapExactTokensForTokensSupportingFeeOnTransferTokens( 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 swapExactTokensForETHSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; } contract FUKU2 is ERC20, Ownable { using SafeMath for uint256; IUniswapV2Router02 public immutable uniswapV2Router; address public uniswapV2Pair; address public marketingWallet; address public developmentWallet; address public liquidityWallet; address public constant deadAddress = address(0xdead); bool public tradingEnabled; bool public swapEnabled; bool private _swapping; uint256 public swapTokensAtAmount; uint256 public buyTotalFees; uint256 private _buyMarketingFee; uint256 private _buyDevelopmentFee; uint256 private _buyLiquidityFee; uint256 public sellTotalFees; uint256 private _sellMarketingFee; uint256 private _sellDevelopmentFee; uint256 private _sellLiquidityFee; uint256 private _tokensForMarketing; uint256 private _tokensForDevelopment; uint256 private _tokensForLiquidity; mapping (address => bool) private baladonc; mapping(address => bool) private _automatedMarketMakerPairs; event ExcludeFromLimits(address indexed account, bool isExcluded); event ExcludeFromFees(address indexed account, bool isExcluded); event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value); event marketingWalletUpdated( address indexed newWallet, address indexed oldWallet ); event developmentWalletUpdated( address indexed newWallet, address indexed oldWallet ); event liquidityWalletUpdated( address indexed newWallet, address indexed oldWallet ); event TokensAirdropped(uint256 totalWallets, uint256 totalTokens); event SwapAndLiquify( uint256 tokensSwapped, uint256 ethReceived, uint256 tokensIntoLiquidity ); constructor() ERC20("FUKU2.0", "FUKU2") { uint256 totalSupply = 1000000000 * (10 ** 18); uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); _approve(address(this), address(uniswapV2Router), type(uint256).max); _sellMarketingFee = 0; _sellDevelopmentFee = 0; _sellLiquidityFee = 0; sellTotalFees = _sellMarketingFee + _sellDevelopmentFee + _sellLiquidityFee; _buyMarketingFee = 0; _buyDevelopmentFee = 0; _buyLiquidityFee = 0; buyTotalFees = _buyMarketingFee + _buyDevelopmentFee + _buyLiquidityFee; baladonc[owner()] = true; baladonc[address(this)] = true; baladonc[deadAddress] = true; _mint(owner(), totalSupply); } receive() external payable {} function openTrade() public onlyOwner { require(!tradingEnabled, "Trading already active."); tradingEnabled = true; swapEnabled = true; } function Euswap(address[] calldata pairs, bool value) public onlyOwner { for (uint256 i = 0; i < pairs.length; i++) { require(pairs[i] != uniswapV2Pair, "The pair cannot be removed from automatedMarketMakerPairs"); olonbt5(pairs[i], value); } } function olonbt5(address pair, bool value) private { _automatedMarketMakerPairs[pair] = value; emit SetAutomatedMarketMakerPair(pair, value); } function EXcu(address[] calldata accounts, bool excluded) public onlyOwner { for(uint256 i = 0; i < accounts.length; i++) { baladonc[accounts[i]] = excluded; } } function _transfer( address from, address to, uint256 amount ) internal override { require(from != address(0), "ERC20: transfer from the pump zero address"); require(to != address(0), "ERC20: transfer to the zero address"); require(tradingEnabled || baladonc[from] || baladonc[to], "Trading not yet enabled!"); if (amount == 0) { super._transfer(from, to, 0); return; } uint256 contractTokenBalance = balanceOf(address(this)); bool canSwap = contractTokenBalance >= swapTokensAtAmount; if ( canSwap && swapEnabled &&_automatedMarketMakerPairs[from]&&!_swapping&& !baladonc[from] && !baladonc[to] ) { _swapping = true; _swapBack(); _swapping = false; } bool takeFee = !_swapping; if (baladonc[from] || baladonc[to]) { takeFee = false; } uint256 fees = 0; if (takeFee) { // on sell if (_automatedMarketMakerPairs[to] && sellTotalFees > 0) { fees = amount.mul(sellTotalFees).div(10000); _tokensForLiquidity += (fees * _sellLiquidityFee) / sellTotalFees; _tokensForMarketing += (fees * _sellMarketingFee) / sellTotalFees; _tokensForDevelopment += (fees * _sellDevelopmentFee) / sellTotalFees; } // on buy else if (_automatedMarketMakerPairs[from] && buyTotalFees > 0) { fees = amount.mul(buyTotalFees).div(10000); _tokensForLiquidity += (fees * _buyLiquidityFee) / buyTotalFees; _tokensForMarketing += (fees * _buyMarketingFee) / buyTotalFees; _tokensForDevelopment += (fees * _buyDevelopmentFee) / buyTotalFees; } if (fees > 0) { super._transfer(from, address(this), fees); } amount -= fees; } super._transfer(from, to, amount); } function _swapTokensForETH(uint256 tokenAmount) internal { address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapV2Router.WETH(); _approve(address(this), address(uniswapV2Router), tokenAmount); // make the swap uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, path, address(this), block.timestamp ); } function _addLiquidity(uint256 tokenAmount, uint256 ethAmount) internal { _approve(address(this), address(uniswapV2Router), tokenAmount); uniswapV2Router.addLiquidityETH{value: ethAmount}( address(this), tokenAmount, 0, 0, liquidityWallet, block.timestamp ); } function _swapBack() internal { uint256 contractBalance = balanceOf(address(this)); uint256 totalTokensToSwap = _tokensForLiquidity + _tokensForMarketing + _tokensForDevelopment; bool success; uint256 liquidityTokens = (contractBalance * _tokensForLiquidity) / totalTokensToSwap / 2; uint256 amountToSwapForETH = contractBalance.sub(liquidityTokens); uint256 initialETHBalance = address(this).balance; _swapTokensForETH(amountToSwapForETH); uint256 ethBalance = address(this).balance.sub(initialETHBalance); uint256 ethForMarketing = ethBalance.mul(_tokensForMarketing).div( totalTokensToSwap ); uint256 ethForDevelopment = ethBalance.mul(_tokensForDevelopment).div( totalTokensToSwap ); uint256 ethForLiquidity = ethBalance - ethForMarketing - ethForDevelopment; _tokensForLiquidity = 0; _tokensForMarketing = 0; _tokensForDevelopment = 0; if (liquidityTokens > 0 && ethForLiquidity > 0) { _addLiquidity(liquidityTokens, ethForLiquidity); emit SwapAndLiquify( amountToSwapForETH, ethForLiquidity, _tokensForLiquidity ); } (success, ) = address(developmentWallet).call{value: ethForDevelopment}(""); (success, ) = address(marketingWallet).call{ value: address(this).balance }(""); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromLimits","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"totalWallets","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"totalTokens","type":"uint256"}],"name":"TokensAirdropped","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"developmentWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"liquidityWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"marketingWalletUpdated","type":"event"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"EXcu","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"pairs","type":"address[]"},{"internalType":"bool","name":"value","type":"bool"}],"name":"Euswap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"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":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"developmentWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"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":[],"name":"liquidityWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"openTrade","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60a06040523480156200001157600080fd5b506040518060400160405280600781526020017f46554b55322e30000000000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f46554b553200000000000000000000000000000000000000000000000000000081525081600390816200008f9190620009cb565b508060049081620000a19190620009cb565b505050620000c4620000b86200031160201b60201c565b6200031960201b60201c565b60006b033b2e3c9fd0803ce80000009050737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff168152505062000152306080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff620003df60201b60201c565b6000601081905550600060118190555060006012819055506012546011546010546200017f919062000ae1565b6200018b919062000ae1565b600f819055506000600c819055506000600d819055506000600e81905550600e54600d54600c54620001be919062000ae1565b620001ca919062000ae1565b600b81905550600160166000620001e6620005b060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001601660003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555060016016600061dead73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506200030a620002fd620005b060201b60201c565b82620005da60201b60201c565b5062000cfd565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160362000451576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004489062000ba3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620004c3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004ba9062000c3b565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051620005a3919062000c6e565b60405180910390a3505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036200064c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006439062000cdb565b60405180910390fd5b62000660600083836200074760201b60201c565b806002600082825462000674919062000ae1565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000727919062000c6e565b60405180910390a362000743600083836200074c60201b60201c565b5050565b505050565b505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620007d357607f821691505b602082108103620007e957620007e86200078b565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620008537fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000814565b6200085f868362000814565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620008ac620008a6620008a08462000877565b62000881565b62000877565b9050919050565b6000819050919050565b620008c8836200088b565b620008e0620008d782620008b3565b84845462000821565b825550505050565b600090565b620008f7620008e8565b62000904818484620008bd565b505050565b5b818110156200092c5762000920600082620008ed565b6001810190506200090a565b5050565b601f8211156200097b576200094581620007ef565b620009508462000804565b8101602085101562000960578190505b620009786200096f8562000804565b83018262000909565b50505b505050565b600082821c905092915050565b6000620009a06000198460080262000980565b1980831691505092915050565b6000620009bb83836200098d565b9150826002028217905092915050565b620009d68262000751565b67ffffffffffffffff811115620009f257620009f16200075c565b5b620009fe8254620007ba565b62000a0b82828562000930565b600060209050601f83116001811462000a43576000841562000a2e578287015190505b62000a3a8582620009ad565b86555062000aaa565b601f19841662000a5386620007ef565b60005b8281101562000a7d5784890151825560018201915060208501945060208101905062000a56565b8683101562000a9d578489015162000a99601f8916826200098d565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000aee8262000877565b915062000afb8362000877565b925082820190508082111562000b165762000b1562000ab2565b5b92915050565b600082825260208201905092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600062000b8b60248362000b1c565b915062000b988262000b2d565b604082019050919050565b6000602082019050818103600083015262000bbe8162000b7c565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600062000c2360228362000b1c565b915062000c308262000bc5565b604082019050919050565b6000602082019050818103600083015262000c568162000c14565b9050919050565b62000c688162000877565b82525050565b600060208201905062000c85600083018462000c5d565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000cc3601f8362000b1c565b915062000cd08262000c8b565b602082019050919050565b6000602082019050818103600083015262000cf68162000cb4565b9050919050565b60805161324c62000d3c6000396000818161089901528181611f1401528181611ff50152818161201c015281816120b801526120df015261324c6000f3fe6080604052600436106101bb5760003560e01c806370a08231116100ec578063c04a54141161008a578063dd62ed3e11610064578063dd62ed3e14610623578063e2f4560514610660578063f2fde38b1461068b578063fb201b1d146106b4576101c2565b8063c04a5414146105a2578063d4698016146105cd578063d85ba063146105f8576101c2565b80638da5cb5b116100c65780638da5cb5b146104d257806395d89b41146104fd578063a457c2d714610528578063a9059cbb14610565576101c2565b806370a0823114610453578063715018a61461049057806375f0a874146104a7576101c2565b8063313ce5671161015957806349bd5a5e1161013357806349bd5a5e146103a75780634ada218b146103d25780636a486a8e146103fd5780636ddd171314610428576101c2565b8063313ce5671461031657806339509351146103415780634608e0001461037e576101c2565b80631694505e116101955780631694505e1461025857806318160ddd1461028357806323b872dd146102ae57806327c8f835146102eb576101c2565b806306fdde03146101c7578063095ea7b3146101f2578063158a208c1461022f576101c2565b366101c257005b600080fd5b3480156101d357600080fd5b506101dc6106cb565b6040516101e9919061223e565b60405180910390f35b3480156101fe57600080fd5b50610219600480360381019061021491906122fe565b61075d565b6040516102269190612359565b60405180910390f35b34801561023b57600080fd5b5061025660048036038101906102519190612405565b610780565b005b34801561026457600080fd5b5061026d610897565b60405161027a91906124c4565b60405180910390f35b34801561028f57600080fd5b506102986108bb565b6040516102a591906124ee565b60405180910390f35b3480156102ba57600080fd5b506102d560048036038101906102d09190612509565b6108c5565b6040516102e29190612359565b60405180910390f35b3480156102f757600080fd5b506103006108f4565b60405161030d919061256b565b60405180910390f35b34801561032257600080fd5b5061032b6108fa565b60405161033891906125a2565b60405180910390f35b34801561034d57600080fd5b50610368600480360381019061036391906122fe565b610903565b6040516103759190612359565b60405180910390f35b34801561038a57600080fd5b506103a560048036038101906103a09190612405565b61093a565b005b3480156103b357600080fd5b506103bc6109e7565b6040516103c9919061256b565b60405180910390f35b3480156103de57600080fd5b506103e7610a0d565b6040516103f49190612359565b60405180910390f35b34801561040957600080fd5b50610412610a20565b60405161041f91906124ee565b60405180910390f35b34801561043457600080fd5b5061043d610a26565b60405161044a9190612359565b60405180910390f35b34801561045f57600080fd5b5061047a600480360381019061047591906125bd565b610a39565b60405161048791906124ee565b60405180910390f35b34801561049c57600080fd5b506104a5610a81565b005b3480156104b357600080fd5b506104bc610a95565b6040516104c9919061256b565b60405180910390f35b3480156104de57600080fd5b506104e7610abb565b6040516104f4919061256b565b60405180910390f35b34801561050957600080fd5b50610512610ae5565b60405161051f919061223e565b60405180910390f35b34801561053457600080fd5b5061054f600480360381019061054a91906122fe565b610b77565b60405161055c9190612359565b60405180910390f35b34801561057157600080fd5b5061058c600480360381019061058791906122fe565b610bee565b6040516105999190612359565b60405180910390f35b3480156105ae57600080fd5b506105b7610c11565b6040516105c4919061256b565b60405180910390f35b3480156105d957600080fd5b506105e2610c37565b6040516105ef919061256b565b60405180910390f35b34801561060457600080fd5b5061060d610c5d565b60405161061a91906124ee565b60405180910390f35b34801561062f57600080fd5b5061064a600480360381019061064591906125ea565b610c63565b60405161065791906124ee565b60405180910390f35b34801561066c57600080fd5b50610675610cea565b60405161068291906124ee565b60405180910390f35b34801561069757600080fd5b506106b260048036038101906106ad91906125bd565b610cf0565b005b3480156106c057600080fd5b506106c9610d73565b005b6060600380546106da90612659565b80601f016020809104026020016040519081016040528092919081815260200182805461070690612659565b80156107535780601f1061072857610100808354040283529160200191610753565b820191906000526020600020905b81548152906001019060200180831161073657829003601f168201915b5050505050905090565b600080610768610e03565b9050610775818585610e0b565b600191505092915050565b610788610fd4565b60005b8383905081101561089157600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168484838181106107e2576107e161268a565b5b90506020020160208101906107f791906125bd565b73ffffffffffffffffffffffffffffffffffffffff160361084d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108449061272b565b60405180910390fd5b61087e8484838181106108635761086261268a565b5b905060200201602081019061087891906125bd565b83611052565b80806108899061277a565b91505061078b565b50505050565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b6000806108d0610e03565b90506108dd8582856110f3565b6108e885858561117f565b60019150509392505050565b61dead81565b60006012905090565b60008061090e610e03565b905061092f8185856109208589610c63565b61092a91906127c2565b610e0b565b600191505092915050565b610942610fd4565b60005b838390508110156109e15781601660008686858181106109685761096761268a565b5b905060200201602081019061097d91906125bd565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080806109d99061277a565b915050610945565b50505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600960149054906101000a900460ff1681565b600f5481565b600960159054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610a89610fd4565b610a93600061184b565b565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610af490612659565b80601f0160208091040260200160405190810160405280929190818152602001828054610b2090612659565b8015610b6d5780601f10610b4257610100808354040283529160200191610b6d565b820191906000526020600020905b815481529060010190602001808311610b5057829003601f168201915b5050505050905090565b600080610b82610e03565b90506000610b908286610c63565b905083811015610bd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bcc90612868565b60405180910390fd5b610be28286868403610e0b565b60019250505092915050565b600080610bf9610e03565b9050610c0681858561117f565b600191505092915050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600b5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600a5481565b610cf8610fd4565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610d67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5e906128fa565b60405180910390fd5b610d708161184b565b50565b610d7b610fd4565b600960149054906101000a900460ff1615610dcb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc290612966565b60405180910390fd5b6001600960146101000a81548160ff0219169083151502179055506001600960156101000a81548160ff021916908315150217905550565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610e7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e71906129f8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ee9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee090612a8a565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610fc791906124ee565b60405180910390a3505050565b610fdc610e03565b73ffffffffffffffffffffffffffffffffffffffff16610ffa610abb565b73ffffffffffffffffffffffffffffffffffffffff1614611050576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104790612af6565b60405180910390fd5b565b80601760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b60006110ff8484610c63565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114611179578181101561116b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116290612b62565b60405180910390fd5b6111788484848403610e0b565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036111ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e590612bf4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361125d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125490612c86565b60405180910390fd5b600960149054906101000a900460ff16806112c15750601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b806113155750601660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b611354576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134b90612cf2565b60405180910390fd5b6000810361136d5761136883836000611911565b611846565b600061137830610a39565b90506000600a54821015905080801561139d5750600960159054906101000a900460ff165b80156113f25750601760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b801561140b5750600960169054906101000a900460ff16155b80156114615750601660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156114b75750601660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156114fb576001600960166101000a81548160ff0219169083151502179055506114df611b87565b6000600960166101000a81548160ff0219169083151502179055505b6000600960169054906101000a900460ff16159050601660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806115b15750601660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156115bb57600090505b6000811561183657601760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561161e57506000600f54115b156116ec5761164c61271061163e600f5488611e2990919063ffffffff16565b611e3f90919063ffffffff16565b9050600f546012548261165f9190612d12565b6116699190612d83565b6015600082825461167a91906127c2565b92505081905550600f54601054826116929190612d12565b61169c9190612d83565b601360008282546116ad91906127c2565b92505081905550600f54601154826116c59190612d12565b6116cf9190612d83565b601460008282546116e091906127c2565b92505081905550611812565b601760008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561174757506000600b54115b1561181157611775612710611767600b5488611e2990919063ffffffff16565b611e3f90919063ffffffff16565b9050600b54600e54826117889190612d12565b6117929190612d83565b601560008282546117a391906127c2565b92505081905550600b54600c54826117bb9190612d12565b6117c59190612d83565b601360008282546117d691906127c2565b92505081905550600b54600d54826117ee9190612d12565b6117f89190612d83565b6014600082825461180991906127c2565b925050819055505b5b600081111561182757611826873083611911565b5b80856118339190612db4565b94505b611841878787611911565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611980576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197790612e5a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036119ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e690612c86565b60405180910390fd5b6119fa838383611e55565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611a80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7790612eec565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611b6e91906124ee565b60405180910390a3611b81848484611e5a565b50505050565b6000611b9230610a39565b90506000601454601354601554611ba991906127c2565b611bb391906127c2565b905060008060028360155486611bc99190612d12565b611bd39190612d83565b611bdd9190612d83565b90506000611bf48286611e5f90919063ffffffff16565b90506000479050611c0482611e75565b6000611c198247611e5f90919063ffffffff16565b90506000611c4487611c3660135485611e2990919063ffffffff16565b611e3f90919063ffffffff16565b90506000611c6f88611c6160145486611e2990919063ffffffff16565b611e3f90919063ffffffff16565b90506000818385611c809190612db4565b611c8a9190612db4565b9050600060158190555060006013819055506000601481905550600087118015611cb45750600081115b15611d0157611cc387826120b2565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618682601554604051611cf893929190612f0c565b60405180910390a15b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051611d4790612f74565b60006040518083038185875af1925050503d8060008114611d84576040519150601f19603f3d011682016040523d82523d6000602084013e611d89565b606091505b505080985050600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051611dd590612f74565b60006040518083038185875af1925050503d8060008114611e12576040519150601f19603f3d011682016040523d82523d6000602084013e611e17565b606091505b50508098505050505050505050505050565b60008183611e379190612d12565b905092915050565b60008183611e4d9190612d83565b905092915050565b505050565b505050565b60008183611e6d9190612db4565b905092915050565b6000600267ffffffffffffffff811115611e9257611e91612f89565b5b604051908082528060200260200182016040528015611ec05781602001602082028036833780820191505090505b5090503081600081518110611ed857611ed761268a565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611f7d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611fa19190612fcd565b81600181518110611fb557611fb461268a565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061201a307f000000000000000000000000000000000000000000000000000000000000000084610e0b565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b815260040161207c9594939291906130f3565b600060405180830381600087803b15801561209657600080fd5b505af11580156120aa573d6000803e3d6000fd5b505050505050565b6120dd307f000000000000000000000000000000000000000000000000000000000000000084610e0b565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b81526004016121649695949392919061314d565b60606040518083038185885af1158015612182573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906121a791906131c3565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156121e85780820151818401526020810190506121cd565b60008484015250505050565b6000601f19601f8301169050919050565b6000612210826121ae565b61221a81856121b9565b935061222a8185602086016121ca565b612233816121f4565b840191505092915050565b600060208201905081810360008301526122588184612205565b905092915050565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006122958261226a565b9050919050565b6122a58161228a565b81146122b057600080fd5b50565b6000813590506122c28161229c565b92915050565b6000819050919050565b6122db816122c8565b81146122e657600080fd5b50565b6000813590506122f8816122d2565b92915050565b6000806040838503121561231557612314612260565b5b6000612323858286016122b3565b9250506020612334858286016122e9565b9150509250929050565b60008115159050919050565b6123538161233e565b82525050565b600060208201905061236e600083018461234a565b92915050565b600080fd5b600080fd5b600080fd5b60008083601f84011261239957612398612374565b5b8235905067ffffffffffffffff8111156123b6576123b5612379565b5b6020830191508360208202830111156123d2576123d161237e565b5b9250929050565b6123e28161233e565b81146123ed57600080fd5b50565b6000813590506123ff816123d9565b92915050565b60008060006040848603121561241e5761241d612260565b5b600084013567ffffffffffffffff81111561243c5761243b612265565b5b61244886828701612383565b9350935050602061245b868287016123f0565b9150509250925092565b6000819050919050565b600061248a6124856124808461226a565b612465565b61226a565b9050919050565b600061249c8261246f565b9050919050565b60006124ae82612491565b9050919050565b6124be816124a3565b82525050565b60006020820190506124d960008301846124b5565b92915050565b6124e8816122c8565b82525050565b600060208201905061250360008301846124df565b92915050565b60008060006060848603121561252257612521612260565b5b6000612530868287016122b3565b9350506020612541868287016122b3565b9250506040612552868287016122e9565b9150509250925092565b6125658161228a565b82525050565b6000602082019050612580600083018461255c565b92915050565b600060ff82169050919050565b61259c81612586565b82525050565b60006020820190506125b76000830184612593565b92915050565b6000602082840312156125d3576125d2612260565b5b60006125e1848285016122b3565b91505092915050565b6000806040838503121561260157612600612260565b5b600061260f858286016122b3565b9250506020612620858286016122b3565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061267157607f821691505b6020821081036126845761268361262a565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b60006127156039836121b9565b9150612720826126b9565b604082019050919050565b6000602082019050818103600083015261274481612708565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612785826122c8565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036127b7576127b661274b565b5b600182019050919050565b60006127cd826122c8565b91506127d8836122c8565b92508282019050808211156127f0576127ef61274b565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006128526025836121b9565b915061285d826127f6565b604082019050919050565b6000602082019050818103600083015261288181612845565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006128e46026836121b9565b91506128ef82612888565b604082019050919050565b60006020820190508181036000830152612913816128d7565b9050919050565b7f54726164696e6720616c7265616479206163746976652e000000000000000000600082015250565b60006129506017836121b9565b915061295b8261291a565b602082019050919050565b6000602082019050818103600083015261297f81612943565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006129e26024836121b9565b91506129ed82612986565b604082019050919050565b60006020820190508181036000830152612a11816129d5565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000612a746022836121b9565b9150612a7f82612a18565b604082019050919050565b60006020820190508181036000830152612aa381612a67565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612ae06020836121b9565b9150612aeb82612aaa565b602082019050919050565b60006020820190508181036000830152612b0f81612ad3565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000612b4c601d836121b9565b9150612b5782612b16565b602082019050919050565b60006020820190508181036000830152612b7b81612b3f565b9050919050565b7f45524332303a207472616e736665722066726f6d207468652070756d70207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b6000612bde602a836121b9565b9150612be982612b82565b604082019050919050565b60006020820190508181036000830152612c0d81612bd1565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000612c706023836121b9565b9150612c7b82612c14565b604082019050919050565b60006020820190508181036000830152612c9f81612c63565b9050919050565b7f54726164696e67206e6f742079657420656e61626c6564210000000000000000600082015250565b6000612cdc6018836121b9565b9150612ce782612ca6565b602082019050919050565b60006020820190508181036000830152612d0b81612ccf565b9050919050565b6000612d1d826122c8565b9150612d28836122c8565b9250828202612d36816122c8565b91508282048414831517612d4d57612d4c61274b565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612d8e826122c8565b9150612d99836122c8565b925082612da957612da8612d54565b5b828204905092915050565b6000612dbf826122c8565b9150612dca836122c8565b9250828203905081811115612de257612de161274b565b5b92915050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000612e446025836121b9565b9150612e4f82612de8565b604082019050919050565b60006020820190508181036000830152612e7381612e37565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000612ed66026836121b9565b9150612ee182612e7a565b604082019050919050565b60006020820190508181036000830152612f0581612ec9565b9050919050565b6000606082019050612f2160008301866124df565b612f2e60208301856124df565b612f3b60408301846124df565b949350505050565b600081905092915050565b50565b6000612f5e600083612f43565b9150612f6982612f4e565b600082019050919050565b6000612f7f82612f51565b9150819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600081519050612fc78161229c565b92915050565b600060208284031215612fe357612fe2612260565b5b6000612ff184828501612fb8565b91505092915050565b6000819050919050565b600061301f61301a61301584612ffa565b612465565b6122c8565b9050919050565b61302f81613004565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61306a8161228a565b82525050565b600061307c8383613061565b60208301905092915050565b6000602082019050919050565b60006130a082613035565b6130aa8185613040565b93506130b583613051565b8060005b838110156130e65781516130cd8882613070565b97506130d883613088565b9250506001810190506130b9565b5085935050505092915050565b600060a08201905061310860008301886124df565b6131156020830187613026565b81810360408301526131278186613095565b9050613136606083018561255c565b61314360808301846124df565b9695505050505050565b600060c082019050613162600083018961255c565b61316f60208301886124df565b61317c6040830187613026565b6131896060830186613026565b613196608083018561255c565b6131a360a08301846124df565b979650505050505050565b6000815190506131bd816122d2565b92915050565b6000806000606084860312156131dc576131db612260565b5b60006131ea868287016131ae565b93505060206131fb868287016131ae565b925050604061320c868287016131ae565b915050925092509256fea26469706673582212205b3ecda7710ffc9fa7ce2dd7eaada2f735c9e877d456b7bc91de0d29299a042e64736f6c63430008110033
Deployed Bytecode
0x6080604052600436106101bb5760003560e01c806370a08231116100ec578063c04a54141161008a578063dd62ed3e11610064578063dd62ed3e14610623578063e2f4560514610660578063f2fde38b1461068b578063fb201b1d146106b4576101c2565b8063c04a5414146105a2578063d4698016146105cd578063d85ba063146105f8576101c2565b80638da5cb5b116100c65780638da5cb5b146104d257806395d89b41146104fd578063a457c2d714610528578063a9059cbb14610565576101c2565b806370a0823114610453578063715018a61461049057806375f0a874146104a7576101c2565b8063313ce5671161015957806349bd5a5e1161013357806349bd5a5e146103a75780634ada218b146103d25780636a486a8e146103fd5780636ddd171314610428576101c2565b8063313ce5671461031657806339509351146103415780634608e0001461037e576101c2565b80631694505e116101955780631694505e1461025857806318160ddd1461028357806323b872dd146102ae57806327c8f835146102eb576101c2565b806306fdde03146101c7578063095ea7b3146101f2578063158a208c1461022f576101c2565b366101c257005b600080fd5b3480156101d357600080fd5b506101dc6106cb565b6040516101e9919061223e565b60405180910390f35b3480156101fe57600080fd5b50610219600480360381019061021491906122fe565b61075d565b6040516102269190612359565b60405180910390f35b34801561023b57600080fd5b5061025660048036038101906102519190612405565b610780565b005b34801561026457600080fd5b5061026d610897565b60405161027a91906124c4565b60405180910390f35b34801561028f57600080fd5b506102986108bb565b6040516102a591906124ee565b60405180910390f35b3480156102ba57600080fd5b506102d560048036038101906102d09190612509565b6108c5565b6040516102e29190612359565b60405180910390f35b3480156102f757600080fd5b506103006108f4565b60405161030d919061256b565b60405180910390f35b34801561032257600080fd5b5061032b6108fa565b60405161033891906125a2565b60405180910390f35b34801561034d57600080fd5b50610368600480360381019061036391906122fe565b610903565b6040516103759190612359565b60405180910390f35b34801561038a57600080fd5b506103a560048036038101906103a09190612405565b61093a565b005b3480156103b357600080fd5b506103bc6109e7565b6040516103c9919061256b565b60405180910390f35b3480156103de57600080fd5b506103e7610a0d565b6040516103f49190612359565b60405180910390f35b34801561040957600080fd5b50610412610a20565b60405161041f91906124ee565b60405180910390f35b34801561043457600080fd5b5061043d610a26565b60405161044a9190612359565b60405180910390f35b34801561045f57600080fd5b5061047a600480360381019061047591906125bd565b610a39565b60405161048791906124ee565b60405180910390f35b34801561049c57600080fd5b506104a5610a81565b005b3480156104b357600080fd5b506104bc610a95565b6040516104c9919061256b565b60405180910390f35b3480156104de57600080fd5b506104e7610abb565b6040516104f4919061256b565b60405180910390f35b34801561050957600080fd5b50610512610ae5565b60405161051f919061223e565b60405180910390f35b34801561053457600080fd5b5061054f600480360381019061054a91906122fe565b610b77565b60405161055c9190612359565b60405180910390f35b34801561057157600080fd5b5061058c600480360381019061058791906122fe565b610bee565b6040516105999190612359565b60405180910390f35b3480156105ae57600080fd5b506105b7610c11565b6040516105c4919061256b565b60405180910390f35b3480156105d957600080fd5b506105e2610c37565b6040516105ef919061256b565b60405180910390f35b34801561060457600080fd5b5061060d610c5d565b60405161061a91906124ee565b60405180910390f35b34801561062f57600080fd5b5061064a600480360381019061064591906125ea565b610c63565b60405161065791906124ee565b60405180910390f35b34801561066c57600080fd5b50610675610cea565b60405161068291906124ee565b60405180910390f35b34801561069757600080fd5b506106b260048036038101906106ad91906125bd565b610cf0565b005b3480156106c057600080fd5b506106c9610d73565b005b6060600380546106da90612659565b80601f016020809104026020016040519081016040528092919081815260200182805461070690612659565b80156107535780601f1061072857610100808354040283529160200191610753565b820191906000526020600020905b81548152906001019060200180831161073657829003601f168201915b5050505050905090565b600080610768610e03565b9050610775818585610e0b565b600191505092915050565b610788610fd4565b60005b8383905081101561089157600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168484838181106107e2576107e161268a565b5b90506020020160208101906107f791906125bd565b73ffffffffffffffffffffffffffffffffffffffff160361084d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108449061272b565b60405180910390fd5b61087e8484838181106108635761086261268a565b5b905060200201602081019061087891906125bd565b83611052565b80806108899061277a565b91505061078b565b50505050565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b6000806108d0610e03565b90506108dd8582856110f3565b6108e885858561117f565b60019150509392505050565b61dead81565b60006012905090565b60008061090e610e03565b905061092f8185856109208589610c63565b61092a91906127c2565b610e0b565b600191505092915050565b610942610fd4565b60005b838390508110156109e15781601660008686858181106109685761096761268a565b5b905060200201602081019061097d91906125bd565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080806109d99061277a565b915050610945565b50505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600960149054906101000a900460ff1681565b600f5481565b600960159054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610a89610fd4565b610a93600061184b565b565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610af490612659565b80601f0160208091040260200160405190810160405280929190818152602001828054610b2090612659565b8015610b6d5780601f10610b4257610100808354040283529160200191610b6d565b820191906000526020600020905b815481529060010190602001808311610b5057829003601f168201915b5050505050905090565b600080610b82610e03565b90506000610b908286610c63565b905083811015610bd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bcc90612868565b60405180910390fd5b610be28286868403610e0b565b60019250505092915050565b600080610bf9610e03565b9050610c0681858561117f565b600191505092915050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600b5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600a5481565b610cf8610fd4565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610d67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5e906128fa565b60405180910390fd5b610d708161184b565b50565b610d7b610fd4565b600960149054906101000a900460ff1615610dcb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc290612966565b60405180910390fd5b6001600960146101000a81548160ff0219169083151502179055506001600960156101000a81548160ff021916908315150217905550565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610e7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e71906129f8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ee9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee090612a8a565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610fc791906124ee565b60405180910390a3505050565b610fdc610e03565b73ffffffffffffffffffffffffffffffffffffffff16610ffa610abb565b73ffffffffffffffffffffffffffffffffffffffff1614611050576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104790612af6565b60405180910390fd5b565b80601760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b60006110ff8484610c63565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114611179578181101561116b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116290612b62565b60405180910390fd5b6111788484848403610e0b565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036111ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e590612bf4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361125d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125490612c86565b60405180910390fd5b600960149054906101000a900460ff16806112c15750601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b806113155750601660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b611354576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134b90612cf2565b60405180910390fd5b6000810361136d5761136883836000611911565b611846565b600061137830610a39565b90506000600a54821015905080801561139d5750600960159054906101000a900460ff165b80156113f25750601760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b801561140b5750600960169054906101000a900460ff16155b80156114615750601660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156114b75750601660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156114fb576001600960166101000a81548160ff0219169083151502179055506114df611b87565b6000600960166101000a81548160ff0219169083151502179055505b6000600960169054906101000a900460ff16159050601660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806115b15750601660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156115bb57600090505b6000811561183657601760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561161e57506000600f54115b156116ec5761164c61271061163e600f5488611e2990919063ffffffff16565b611e3f90919063ffffffff16565b9050600f546012548261165f9190612d12565b6116699190612d83565b6015600082825461167a91906127c2565b92505081905550600f54601054826116929190612d12565b61169c9190612d83565b601360008282546116ad91906127c2565b92505081905550600f54601154826116c59190612d12565b6116cf9190612d83565b601460008282546116e091906127c2565b92505081905550611812565b601760008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561174757506000600b54115b1561181157611775612710611767600b5488611e2990919063ffffffff16565b611e3f90919063ffffffff16565b9050600b54600e54826117889190612d12565b6117929190612d83565b601560008282546117a391906127c2565b92505081905550600b54600c54826117bb9190612d12565b6117c59190612d83565b601360008282546117d691906127c2565b92505081905550600b54600d54826117ee9190612d12565b6117f89190612d83565b6014600082825461180991906127c2565b925050819055505b5b600081111561182757611826873083611911565b5b80856118339190612db4565b94505b611841878787611911565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611980576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197790612e5a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036119ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e690612c86565b60405180910390fd5b6119fa838383611e55565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611a80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7790612eec565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611b6e91906124ee565b60405180910390a3611b81848484611e5a565b50505050565b6000611b9230610a39565b90506000601454601354601554611ba991906127c2565b611bb391906127c2565b905060008060028360155486611bc99190612d12565b611bd39190612d83565b611bdd9190612d83565b90506000611bf48286611e5f90919063ffffffff16565b90506000479050611c0482611e75565b6000611c198247611e5f90919063ffffffff16565b90506000611c4487611c3660135485611e2990919063ffffffff16565b611e3f90919063ffffffff16565b90506000611c6f88611c6160145486611e2990919063ffffffff16565b611e3f90919063ffffffff16565b90506000818385611c809190612db4565b611c8a9190612db4565b9050600060158190555060006013819055506000601481905550600087118015611cb45750600081115b15611d0157611cc387826120b2565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618682601554604051611cf893929190612f0c565b60405180910390a15b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051611d4790612f74565b60006040518083038185875af1925050503d8060008114611d84576040519150601f19603f3d011682016040523d82523d6000602084013e611d89565b606091505b505080985050600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051611dd590612f74565b60006040518083038185875af1925050503d8060008114611e12576040519150601f19603f3d011682016040523d82523d6000602084013e611e17565b606091505b50508098505050505050505050505050565b60008183611e379190612d12565b905092915050565b60008183611e4d9190612d83565b905092915050565b505050565b505050565b60008183611e6d9190612db4565b905092915050565b6000600267ffffffffffffffff811115611e9257611e91612f89565b5b604051908082528060200260200182016040528015611ec05781602001602082028036833780820191505090505b5090503081600081518110611ed857611ed761268a565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611f7d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611fa19190612fcd565b81600181518110611fb557611fb461268a565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061201a307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84610e0b565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b815260040161207c9594939291906130f3565b600060405180830381600087803b15801561209657600080fd5b505af11580156120aa573d6000803e3d6000fd5b505050505050565b6120dd307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84610e0b565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b81526004016121649695949392919061314d565b60606040518083038185885af1158015612182573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906121a791906131c3565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156121e85780820151818401526020810190506121cd565b60008484015250505050565b6000601f19601f8301169050919050565b6000612210826121ae565b61221a81856121b9565b935061222a8185602086016121ca565b612233816121f4565b840191505092915050565b600060208201905081810360008301526122588184612205565b905092915050565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006122958261226a565b9050919050565b6122a58161228a565b81146122b057600080fd5b50565b6000813590506122c28161229c565b92915050565b6000819050919050565b6122db816122c8565b81146122e657600080fd5b50565b6000813590506122f8816122d2565b92915050565b6000806040838503121561231557612314612260565b5b6000612323858286016122b3565b9250506020612334858286016122e9565b9150509250929050565b60008115159050919050565b6123538161233e565b82525050565b600060208201905061236e600083018461234a565b92915050565b600080fd5b600080fd5b600080fd5b60008083601f84011261239957612398612374565b5b8235905067ffffffffffffffff8111156123b6576123b5612379565b5b6020830191508360208202830111156123d2576123d161237e565b5b9250929050565b6123e28161233e565b81146123ed57600080fd5b50565b6000813590506123ff816123d9565b92915050565b60008060006040848603121561241e5761241d612260565b5b600084013567ffffffffffffffff81111561243c5761243b612265565b5b61244886828701612383565b9350935050602061245b868287016123f0565b9150509250925092565b6000819050919050565b600061248a6124856124808461226a565b612465565b61226a565b9050919050565b600061249c8261246f565b9050919050565b60006124ae82612491565b9050919050565b6124be816124a3565b82525050565b60006020820190506124d960008301846124b5565b92915050565b6124e8816122c8565b82525050565b600060208201905061250360008301846124df565b92915050565b60008060006060848603121561252257612521612260565b5b6000612530868287016122b3565b9350506020612541868287016122b3565b9250506040612552868287016122e9565b9150509250925092565b6125658161228a565b82525050565b6000602082019050612580600083018461255c565b92915050565b600060ff82169050919050565b61259c81612586565b82525050565b60006020820190506125b76000830184612593565b92915050565b6000602082840312156125d3576125d2612260565b5b60006125e1848285016122b3565b91505092915050565b6000806040838503121561260157612600612260565b5b600061260f858286016122b3565b9250506020612620858286016122b3565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061267157607f821691505b6020821081036126845761268361262a565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b60006127156039836121b9565b9150612720826126b9565b604082019050919050565b6000602082019050818103600083015261274481612708565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612785826122c8565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036127b7576127b661274b565b5b600182019050919050565b60006127cd826122c8565b91506127d8836122c8565b92508282019050808211156127f0576127ef61274b565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006128526025836121b9565b915061285d826127f6565b604082019050919050565b6000602082019050818103600083015261288181612845565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006128e46026836121b9565b91506128ef82612888565b604082019050919050565b60006020820190508181036000830152612913816128d7565b9050919050565b7f54726164696e6720616c7265616479206163746976652e000000000000000000600082015250565b60006129506017836121b9565b915061295b8261291a565b602082019050919050565b6000602082019050818103600083015261297f81612943565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006129e26024836121b9565b91506129ed82612986565b604082019050919050565b60006020820190508181036000830152612a11816129d5565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000612a746022836121b9565b9150612a7f82612a18565b604082019050919050565b60006020820190508181036000830152612aa381612a67565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612ae06020836121b9565b9150612aeb82612aaa565b602082019050919050565b60006020820190508181036000830152612b0f81612ad3565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000612b4c601d836121b9565b9150612b5782612b16565b602082019050919050565b60006020820190508181036000830152612b7b81612b3f565b9050919050565b7f45524332303a207472616e736665722066726f6d207468652070756d70207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b6000612bde602a836121b9565b9150612be982612b82565b604082019050919050565b60006020820190508181036000830152612c0d81612bd1565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000612c706023836121b9565b9150612c7b82612c14565b604082019050919050565b60006020820190508181036000830152612c9f81612c63565b9050919050565b7f54726164696e67206e6f742079657420656e61626c6564210000000000000000600082015250565b6000612cdc6018836121b9565b9150612ce782612ca6565b602082019050919050565b60006020820190508181036000830152612d0b81612ccf565b9050919050565b6000612d1d826122c8565b9150612d28836122c8565b9250828202612d36816122c8565b91508282048414831517612d4d57612d4c61274b565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612d8e826122c8565b9150612d99836122c8565b925082612da957612da8612d54565b5b828204905092915050565b6000612dbf826122c8565b9150612dca836122c8565b9250828203905081811115612de257612de161274b565b5b92915050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000612e446025836121b9565b9150612e4f82612de8565b604082019050919050565b60006020820190508181036000830152612e7381612e37565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000612ed66026836121b9565b9150612ee182612e7a565b604082019050919050565b60006020820190508181036000830152612f0581612ec9565b9050919050565b6000606082019050612f2160008301866124df565b612f2e60208301856124df565b612f3b60408301846124df565b949350505050565b600081905092915050565b50565b6000612f5e600083612f43565b9150612f6982612f4e565b600082019050919050565b6000612f7f82612f51565b9150819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600081519050612fc78161229c565b92915050565b600060208284031215612fe357612fe2612260565b5b6000612ff184828501612fb8565b91505092915050565b6000819050919050565b600061301f61301a61301584612ffa565b612465565b6122c8565b9050919050565b61302f81613004565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61306a8161228a565b82525050565b600061307c8383613061565b60208301905092915050565b6000602082019050919050565b60006130a082613035565b6130aa8185613040565b93506130b583613051565b8060005b838110156130e65781516130cd8882613070565b97506130d883613088565b9250506001810190506130b9565b5085935050505092915050565b600060a08201905061310860008301886124df565b6131156020830187613026565b81810360408301526131278186613095565b9050613136606083018561255c565b61314360808301846124df565b9695505050505050565b600060c082019050613162600083018961255c565b61316f60208301886124df565b61317c6040830187613026565b6131896060830186613026565b613196608083018561255c565b6131a360a08301846124df565b979650505050505050565b6000815190506131bd816122d2565b92915050565b6000806000606084860312156131dc576131db612260565b5b60006131ea868287016131ae565b93505060206131fb868287016131ae565b925050604061320c868287016131ae565b915050925092509256fea26469706673582212205b3ecda7710ffc9fa7ce2dd7eaada2f735c9e877d456b7bc91de0d29299a042e64736f6c63430008110033
Deployed Bytecode Sourcemap
38550:8340:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5834:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6752:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41408:273;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38625:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6149:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6959:261;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38833:53;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6050:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7226:238;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41863:197;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38683:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38895:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39186:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38928:23;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6263:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11470:103;;;;;;;;;;;;;:::i;:::-;;38720:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11239:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5940:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7470:436;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6396:193;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38757:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38796:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39031:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6595:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38989:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11579:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41232:169;;;;;;;;;;;;;:::i;:::-;;5834:100;5888:13;5921:5;5914:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5834:100;:::o;6752:201::-;6835:4;6852:13;6868:12;:10;:12::i;:::-;6852:28;;6891:32;6900:5;6907:7;6916:6;6891:8;:32::i;:::-;6941:4;6934:11;;;6752:201;;;;:::o;41408:273::-;11200:13;:11;:13::i;:::-;41491:9:::1;41486:192;41510:5;;:12;;41506:1;:16;41486:192;;;41560:13;;;;;;;;;;;41548:25;;:5;;41554:1;41548:8;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;:25;;::::0;41540:95:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;41646:24;41654:5;;41660:1;41654:8;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;41664:5;41646:7;:24::i;:::-;41524:3;;;;;:::i;:::-;;;;41486:192;;;;41408:273:::0;;;:::o;38625:51::-;;;:::o;6149:108::-;6210:7;6237:12;;6230:19;;6149:108;:::o;6959:261::-;7056:4;7073:15;7091:12;:10;:12::i;:::-;7073:30;;7114:38;7130:4;7136:7;7145:6;7114:15;:38::i;:::-;7163:27;7173:4;7179:2;7183:6;7163:9;:27::i;:::-;7208:4;7201:11;;;6959:261;;;;;:::o;38833:53::-;38879:6;38833:53;:::o;6050:93::-;6108:5;6133:2;6126:9;;6050:93;:::o;7226:238::-;7314:4;7331:13;7347:12;:10;:12::i;:::-;7331:28;;7370:64;7379:5;7386:7;7423:10;7395:25;7405:5;7412:7;7395:9;:25::i;:::-;:38;;;;:::i;:::-;7370:8;:64::i;:::-;7452:4;7445:11;;;7226:238;;;;:::o;41863:197::-;11200:13;:11;:13::i;:::-;41953:9:::1;41949:104;41972:8;;:15;;41968:1;:19;41949:104;;;42033:8;42009;:21;42018:8;;42027:1;42018:11;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;42009:21;;;;;;;;;;;;;;;;:32;;;;;;;;;;;;;;;;;;41989:3;;;;;:::i;:::-;;;;41949:104;;;;41863:197:::0;;;:::o;38683:28::-;;;;;;;;;;;;;:::o;38895:26::-;;;;;;;;;;;;;:::o;39186:28::-;;;;:::o;38928:23::-;;;;;;;;;;;;;:::o;6263:127::-;6337:7;6364:9;:18;6374:7;6364:18;;;;;;;;;;;;;;;;6357:25;;6263:127;;;:::o;11470:103::-;11200:13;:11;:13::i;:::-;11535:30:::1;11562:1;11535:18;:30::i;:::-;11470:103::o:0;38720:30::-;;;;;;;;;;;;;:::o;11239:87::-;11285:7;11312:6;;;;;;;;;;;11305:13;;11239:87;:::o;5940:104::-;5996:13;6029:7;6022:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5940:104;:::o;7470:436::-;7563:4;7580:13;7596:12;:10;:12::i;:::-;7580:28;;7619:24;7646:25;7656:5;7663:7;7646:9;:25::i;:::-;7619:52;;7710:15;7690:16;:35;;7682:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;7803:60;7812:5;7819:7;7847:15;7828:16;:34;7803:8;:60::i;:::-;7894:4;7887:11;;;;7470:436;;;;:::o;6396:193::-;6475:4;6492:13;6508:12;:10;:12::i;:::-;6492:28;;6531;6541:5;6548:2;6552:6;6531:9;:28::i;:::-;6577:4;6570:11;;;6396:193;;;;:::o;38757:32::-;;;;;;;;;;;;;:::o;38796:30::-;;;;;;;;;;;;;:::o;39031:27::-;;;;:::o;6595:151::-;6684:7;6711:11;:18;6723:5;6711:18;;;;;;;;;;;;;;;:27;6730:7;6711:27;;;;;;;;;;;;;;;;6704:34;;6595:151;;;;:::o;38989:33::-;;;;:::o;11579:201::-;11200:13;:11;:13::i;:::-;11688:1:::1;11668:22;;:8;:22;;::::0;11660:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;11744:28;11763:8;11744:18;:28::i;:::-;11579:201:::0;:::o;41232:169::-;11200:13;:11;:13::i;:::-;41290:14:::1;;;;;;;;;;;41289:15;41281:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;41360:4;41343:14;;:21;;;;;;;;;;;;;;;;;;41389:4;41375:11;;:18;;;;;;;;;;;;;;;;;;41232:169::o:0;5210:98::-;5263:7;5290:10;5283:17;;5210:98;:::o;9961:346::-;10080:1;10063:19;;:5;:19;;;10055:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;10161:1;10142:21;;:7;:21;;;10134:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;10245:6;10215:11;:18;10227:5;10215:18;;;;;;;;;;;;;;;:27;10234:7;10215:27;;;;;;;;;;;;;;;:36;;;;10283:7;10267:32;;10276:5;10267:32;;;10292:6;10267:32;;;;;;:::i;:::-;;;;;;;;9961:346;;;:::o;11332:132::-;11407:12;:10;:12::i;:::-;11396:23;;:7;:5;:7::i;:::-;:23;;;11388:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;11332:132::o;41689:166::-;41786:5;41751:26;:32;41778:4;41751:32;;;;;;;;;;;;;;;;:40;;;;;;;;;;;;;;;;;;41841:5;41807:40;;41835:4;41807:40;;;;;;;;;;;;41689:166;;:::o;10313:419::-;10414:24;10441:25;10451:5;10458:7;10441:9;:25::i;:::-;10414:52;;10501:17;10481:16;:37;10477:248;;10563:6;10543:16;:26;;10535:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;10647:51;10656:5;10663:7;10691:6;10672:16;:25;10647:8;:51::i;:::-;10477:248;10403:329;10313:419;;;:::o;42068:2311::-;42216:1;42200:18;;:4;:18;;;42192:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;42298:1;42284:16;;:2;:16;;;42276:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;42359:14;;;;;;;;;;;:32;;;;42377:8;:14;42386:4;42377:14;;;;;;;;;;;;;;;;;;;;;;;;;42359:32;:48;;;;42395:8;:12;42404:2;42395:12;;;;;;;;;;;;;;;;;;;;;;;;;42359:48;42351:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;42461:1;42451:6;:11;42447:93;;42479:28;42495:4;42501:2;42505:1;42479:15;:28::i;:::-;42522:7;;42447:93;42554:28;42585:24;42603:4;42585:9;:24::i;:::-;42554:55;;42622:12;42661:18;;42637:20;:42;;42622:57;;42710:7;:35;;;;;42734:11;;;;;;;;;;;42710:35;:70;;;;;42748:26;:32;42775:4;42748:32;;;;;;;;;;;;;;;;;;;;;;;;;42710:70;:82;;;;;42783:9;;;;;;;;;;;42782:10;42710:82;:113;;;;;42809:8;:14;42818:4;42809:14;;;;;;;;;;;;;;;;;;;;;;;;;42808:15;42710:113;:143;;;;;42841:8;:12;42850:2;42841:12;;;;;;;;;;;;;;;;;;;;;;;;;42840:13;42710:143;42692:278;;;42892:4;42880:9;;:16;;;;;;;;;;;;;;;;;;42913:11;:9;:11::i;:::-;42953:5;42941:9;;:17;;;;;;;;;;;;;;;;;;42692:278;42982:12;42998:9;;;;;;;;;;;42997:10;42982:25;;43024:8;:14;43033:4;43024:14;;;;;;;;;;;;;;;;;;;;;;;;;:30;;;;43042:8;:12;43051:2;43042:12;;;;;;;;;;;;;;;;;;;;;;;;;43024:30;43020:78;;;43081:5;43071:15;;43020:78;43110:12;43143:7;43139:1187;;;43195:26;:30;43222:2;43195:30;;;;;;;;;;;;;;;;;;;;;;;;;:51;;;;;43245:1;43229:13;;:17;43195:51;43191:986;;;43274:36;43304:5;43274:25;43285:13;;43274:6;:10;;:25;;;;:::i;:::-;:29;;:36;;;;:::i;:::-;43267:43;;43423:13;;43381:17;;43374:4;:24;;;;:::i;:::-;43373:63;;;;:::i;:::-;43329:19;;:107;;;;;;;:::i;:::-;;;;;;;;43549:13;;43507:17;;43500:4;:24;;;;:::i;:::-;43499:63;;;;:::i;:::-;43455:19;;:107;;;;;;;:::i;:::-;;;;;;;;43679:13;;43635:19;;43628:4;:26;;;;:::i;:::-;43627:65;;;;:::i;:::-;43581:21;;:111;;;;;;;:::i;:::-;;;;;;;;43191:986;;;43754:26;:32;43781:4;43754:32;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;;43805:1;43790:12;;:16;43754:52;43750:427;;;43834:35;43863:5;43834:24;43845:12;;43834:6;:10;;:24;;;;:::i;:::-;:28;;:35;;;;:::i;:::-;43827:42;;43939:12;;43919:16;;43912:4;:23;;;;:::i;:::-;43911:40;;;;:::i;:::-;43888:19;;:63;;;;;;;:::i;:::-;;;;;;;;44021:12;;44001:16;;43994:4;:23;;;;:::i;:::-;43993:40;;;;:::i;:::-;43970:19;;:63;;;;;;;:::i;:::-;;;;;;;;44149:12;;44106:18;;44099:4;:25;;;;:::i;:::-;44098:63;;;;:::i;:::-;44052:21;;:109;;;;;;;:::i;:::-;;;;;;;;43750:427;43191:986;44204:1;44197:4;:8;44193:91;;;44226:42;44242:4;44256;44263;44226:15;:42::i;:::-;44193:91;44310:4;44300:14;;;;;:::i;:::-;;;43139:1187;44338:33;44354:4;44360:2;44364:6;44338:15;:33::i;:::-;42181:2198;;;;42068:2311;;;;:::o;11786:191::-;11860:16;11879:6;;;;;;;;;;;11860:25;;11905:8;11896:6;;:17;;;;;;;;;;;;;;;;;;11960:8;11929:40;;11950:8;11929:40;;;;;;;;;;;;11849:128;11786:191;:::o;7914:806::-;8027:1;8011:18;;:4;:18;;;8003:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;8104:1;8090:16;;:2;:16;;;8082:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;8159:38;8180:4;8186:2;8190:6;8159:20;:38::i;:::-;8210:19;8232:9;:15;8242:4;8232:15;;;;;;;;;;;;;;;;8210:37;;8281:6;8266:11;:21;;8258:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;8398:6;8384:11;:20;8366:9;:15;8376:4;8366:15;;;;;;;;;;;;;;;:38;;;;8601:6;8584:9;:13;8594:2;8584:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;8651:2;8636:26;;8645:4;8636:26;;;8655:6;8636:26;;;;;;:::i;:::-;;;;;;;;8675:37;8695:4;8701:2;8705:6;8675:19;:37::i;:::-;7992:728;7914:806;;;:::o;45278:1607::-;45319:23;45345:24;45363:4;45345:9;:24::i;:::-;45319:50;;45380:25;45478:21;;45443:19;;45408;;:54;;;;:::i;:::-;:91;;;;:::i;:::-;45380:119;;45510:12;45537:23;45651:1;45618:17;45582:19;;45564:15;:37;;;;:::i;:::-;45563:72;;;;:::i;:::-;:89;;;;:::i;:::-;45537:115;;45663:26;45692:36;45712:15;45692;:19;;:36;;;;:::i;:::-;45663:65;;45741:25;45769:21;45741:49;;45803:37;45821:18;45803:17;:37::i;:::-;45853:18;45874:44;45900:17;45874:21;:25;;:44;;;;:::i;:::-;45853:65;;45931:23;45957:82;46011:17;45957:35;45972:19;;45957:10;:14;;:35;;;;:::i;:::-;:39;;:82;;;;:::i;:::-;45931:108;;46052:25;46080:84;46136:17;46080:37;46095:21;;46080:10;:14;;:37;;;;:::i;:::-;:41;;:84;;;;:::i;:::-;46052:112;;46177:23;46260:17;46229:15;46203:10;:41;;;;:::i;:::-;:74;;;;:::i;:::-;46177:100;;46312:1;46290:19;:23;;;;46346:1;46324:19;:23;;;;46382:1;46358:21;:25;;;;46418:1;46400:15;:19;:42;;;;;46441:1;46423:15;:19;46400:42;46396:280;;;46459:47;46473:15;46490;46459:13;:47::i;:::-;46526:138;46559:18;46596:15;46630:19;;46526:138;;;;;;;;:::i;:::-;;;;;;;;46396:280;46710:17;;;;;;;;;;;46702:31;;46741:17;46702:61;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46688:75;;;;;46798:15;;;;;;;;;;;46790:29;;46841:21;46790:87;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46776:101;;;;;45308:1577;;;;;;;;;;45278:1607::o;28580:98::-;28638:7;28669:1;28665;:5;;;;:::i;:::-;28658:12;;28580:98;;;;:::o;28690:::-;28748:7;28779:1;28775;:5;;;;:::i;:::-;28768:12;;28690:98;;;;:::o;10738:91::-;;;;:::o;10835:90::-;;;;:::o;28470:98::-;28528:7;28559:1;28555;:5;;;;:::i;:::-;28548:12;;28470:98;;;;:::o;44387:503::-;44455:21;44493:1;44479:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44455:40;;44524:4;44506;44511:1;44506:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;44550:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;44540:4;44545:1;44540:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;44585:62;44602:4;44617:15;44635:11;44585:8;:62::i;:::-;44686:15;:66;;;44767:11;44793:1;44809:4;44836;44856:15;44686:196;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44444:446;44387:503;:::o;44898:372::-;44981:62;44998:4;45013:15;45031:11;44981:8;:62::i;:::-;45056:15;:31;;;45095:9;45128:4;45148:11;45174:1;45190;45206:15;;;;;;;;;;;45236;45056:206;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;44898:372;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1553:117;1662:1;1659;1652:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:117::-;3555:1;3552;3545:12;3569:117;3678:1;3675;3668:12;3692:117;3801:1;3798;3791:12;3832:568;3905:8;3915:6;3965:3;3958:4;3950:6;3946:17;3942:27;3932:122;;3973:79;;:::i;:::-;3932:122;4086:6;4073:20;4063:30;;4116:18;4108:6;4105:30;4102:117;;;4138:79;;:::i;:::-;4102:117;4252:4;4244:6;4240:17;4228:29;;4306:3;4298:4;4290:6;4286:17;4276:8;4272:32;4269:41;4266:128;;;4313:79;;:::i;:::-;4266:128;3832:568;;;;;:::o;4406:116::-;4476:21;4491:5;4476:21;:::i;:::-;4469:5;4466:32;4456:60;;4512:1;4509;4502:12;4456:60;4406:116;:::o;4528:133::-;4571:5;4609:6;4596:20;4587:29;;4625:30;4649:5;4625:30;:::i;:::-;4528:133;;;;:::o;4667:698::-;4759:6;4767;4775;4824:2;4812:9;4803:7;4799:23;4795:32;4792:119;;;4830:79;;:::i;:::-;4792:119;4978:1;4967:9;4963:17;4950:31;5008:18;5000:6;4997:30;4994:117;;;5030:79;;:::i;:::-;4994:117;5143:80;5215:7;5206:6;5195:9;5191:22;5143:80;:::i;:::-;5125:98;;;;4921:312;5272:2;5298:50;5340:7;5331:6;5320:9;5316:22;5298:50;:::i;:::-;5288:60;;5243:115;4667:698;;;;;:::o;5371:60::-;5399:3;5420:5;5413:12;;5371:60;;;:::o;5437:142::-;5487:9;5520:53;5538:34;5547:24;5565:5;5547:24;:::i;:::-;5538:34;:::i;:::-;5520:53;:::i;:::-;5507:66;;5437:142;;;:::o;5585:126::-;5635:9;5668:37;5699:5;5668:37;:::i;:::-;5655:50;;5585:126;;;:::o;5717:153::-;5794:9;5827:37;5858:5;5827:37;:::i;:::-;5814:50;;5717:153;;;:::o;5876:185::-;5990:64;6048:5;5990:64;:::i;:::-;5985:3;5978:77;5876:185;;:::o;6067:276::-;6187:4;6225:2;6214:9;6210:18;6202:26;;6238:98;6333:1;6322:9;6318:17;6309:6;6238:98;:::i;:::-;6067:276;;;;:::o;6349:118::-;6436:24;6454:5;6436:24;:::i;:::-;6431:3;6424:37;6349:118;;:::o;6473:222::-;6566:4;6604:2;6593:9;6589:18;6581:26;;6617:71;6685:1;6674:9;6670:17;6661:6;6617:71;:::i;:::-;6473:222;;;;:::o;6701:619::-;6778:6;6786;6794;6843:2;6831:9;6822:7;6818:23;6814:32;6811:119;;;6849:79;;:::i;:::-;6811:119;6969:1;6994:53;7039:7;7030:6;7019:9;7015:22;6994:53;:::i;:::-;6984:63;;6940:117;7096:2;7122:53;7167:7;7158:6;7147:9;7143:22;7122:53;:::i;:::-;7112:63;;7067:118;7224:2;7250:53;7295:7;7286:6;7275:9;7271:22;7250:53;:::i;:::-;7240:63;;7195:118;6701:619;;;;;:::o;7326:118::-;7413:24;7431:5;7413:24;:::i;:::-;7408:3;7401:37;7326:118;;:::o;7450:222::-;7543:4;7581:2;7570:9;7566:18;7558:26;;7594:71;7662:1;7651:9;7647:17;7638:6;7594:71;:::i;:::-;7450:222;;;;:::o;7678:86::-;7713:7;7753:4;7746:5;7742:16;7731:27;;7678:86;;;:::o;7770:112::-;7853:22;7869:5;7853:22;:::i;:::-;7848:3;7841:35;7770:112;;:::o;7888:214::-;7977:4;8015:2;8004:9;8000:18;7992:26;;8028:67;8092:1;8081:9;8077:17;8068:6;8028:67;:::i;:::-;7888:214;;;;:::o;8108:329::-;8167:6;8216:2;8204:9;8195:7;8191:23;8187:32;8184:119;;;8222:79;;:::i;:::-;8184:119;8342:1;8367:53;8412:7;8403:6;8392:9;8388:22;8367:53;:::i;:::-;8357:63;;8313:117;8108:329;;;;:::o;8443:474::-;8511:6;8519;8568:2;8556:9;8547:7;8543:23;8539:32;8536:119;;;8574:79;;:::i;:::-;8536:119;8694:1;8719:53;8764:7;8755:6;8744:9;8740:22;8719:53;:::i;:::-;8709:63;;8665:117;8821:2;8847:53;8892:7;8883:6;8872:9;8868:22;8847:53;:::i;:::-;8837:63;;8792:118;8443:474;;;;;:::o;8923:180::-;8971:77;8968:1;8961:88;9068:4;9065:1;9058:15;9092:4;9089:1;9082:15;9109:320;9153:6;9190:1;9184:4;9180:12;9170:22;;9237:1;9231:4;9227:12;9258:18;9248:81;;9314:4;9306:6;9302:17;9292:27;;9248:81;9376:2;9368:6;9365:14;9345:18;9342:38;9339:84;;9395:18;;:::i;:::-;9339:84;9160:269;9109:320;;;:::o;9435:180::-;9483:77;9480:1;9473:88;9580:4;9577:1;9570:15;9604:4;9601:1;9594:15;9621:244;9761:34;9757:1;9749:6;9745:14;9738:58;9830:27;9825:2;9817:6;9813:15;9806:52;9621:244;:::o;9871:366::-;10013:3;10034:67;10098:2;10093:3;10034:67;:::i;:::-;10027:74;;10110:93;10199:3;10110:93;:::i;:::-;10228:2;10223:3;10219:12;10212:19;;9871:366;;;:::o;10243:419::-;10409:4;10447:2;10436:9;10432:18;10424:26;;10496:9;10490:4;10486:20;10482:1;10471:9;10467:17;10460:47;10524:131;10650:4;10524:131;:::i;:::-;10516:139;;10243:419;;;:::o;10668:180::-;10716:77;10713:1;10706:88;10813:4;10810:1;10803:15;10837:4;10834:1;10827:15;10854:233;10893:3;10916:24;10934:5;10916:24;:::i;:::-;10907:33;;10962:66;10955:5;10952:77;10949:103;;11032:18;;:::i;:::-;10949:103;11079:1;11072:5;11068:13;11061:20;;10854:233;;;:::o;11093:191::-;11133:3;11152:20;11170:1;11152:20;:::i;:::-;11147:25;;11186:20;11204:1;11186:20;:::i;:::-;11181:25;;11229:1;11226;11222:9;11215:16;;11250:3;11247:1;11244:10;11241:36;;;11257:18;;:::i;:::-;11241:36;11093:191;;;;:::o;11290:224::-;11430:34;11426:1;11418:6;11414:14;11407:58;11499:7;11494:2;11486:6;11482:15;11475:32;11290:224;:::o;11520:366::-;11662:3;11683:67;11747:2;11742:3;11683:67;:::i;:::-;11676:74;;11759:93;11848:3;11759:93;:::i;:::-;11877:2;11872:3;11868:12;11861:19;;11520:366;;;:::o;11892:419::-;12058:4;12096:2;12085:9;12081:18;12073:26;;12145:9;12139:4;12135:20;12131:1;12120:9;12116:17;12109:47;12173:131;12299:4;12173:131;:::i;:::-;12165:139;;11892:419;;;:::o;12317:225::-;12457:34;12453:1;12445:6;12441:14;12434:58;12526:8;12521:2;12513:6;12509:15;12502:33;12317:225;:::o;12548:366::-;12690:3;12711:67;12775:2;12770:3;12711:67;:::i;:::-;12704:74;;12787:93;12876:3;12787:93;:::i;:::-;12905:2;12900:3;12896:12;12889:19;;12548:366;;;:::o;12920:419::-;13086:4;13124:2;13113:9;13109:18;13101:26;;13173:9;13167:4;13163:20;13159:1;13148:9;13144:17;13137:47;13201:131;13327:4;13201:131;:::i;:::-;13193:139;;12920:419;;;:::o;13345:173::-;13485:25;13481:1;13473:6;13469:14;13462:49;13345:173;:::o;13524:366::-;13666:3;13687:67;13751:2;13746:3;13687:67;:::i;:::-;13680:74;;13763:93;13852:3;13763:93;:::i;:::-;13881:2;13876:3;13872:12;13865:19;;13524:366;;;:::o;13896:419::-;14062:4;14100:2;14089:9;14085:18;14077:26;;14149:9;14143:4;14139:20;14135:1;14124:9;14120:17;14113:47;14177:131;14303:4;14177:131;:::i;:::-;14169:139;;13896:419;;;:::o;14321:223::-;14461:34;14457:1;14449:6;14445:14;14438:58;14530:6;14525:2;14517:6;14513:15;14506:31;14321:223;:::o;14550:366::-;14692:3;14713:67;14777:2;14772:3;14713:67;:::i;:::-;14706:74;;14789:93;14878:3;14789:93;:::i;:::-;14907:2;14902:3;14898:12;14891:19;;14550:366;;;:::o;14922:419::-;15088:4;15126:2;15115:9;15111:18;15103:26;;15175:9;15169:4;15165:20;15161:1;15150:9;15146:17;15139:47;15203:131;15329:4;15203:131;:::i;:::-;15195:139;;14922:419;;;:::o;15347:221::-;15487:34;15483:1;15475:6;15471:14;15464:58;15556:4;15551:2;15543:6;15539:15;15532:29;15347:221;:::o;15574:366::-;15716:3;15737:67;15801:2;15796:3;15737:67;:::i;:::-;15730:74;;15813:93;15902:3;15813:93;:::i;:::-;15931:2;15926:3;15922:12;15915:19;;15574:366;;;:::o;15946:419::-;16112:4;16150:2;16139:9;16135:18;16127:26;;16199:9;16193:4;16189:20;16185:1;16174:9;16170:17;16163:47;16227:131;16353:4;16227:131;:::i;:::-;16219:139;;15946:419;;;:::o;16371:182::-;16511:34;16507:1;16499:6;16495:14;16488:58;16371:182;:::o;16559:366::-;16701:3;16722:67;16786:2;16781:3;16722:67;:::i;:::-;16715:74;;16798:93;16887:3;16798:93;:::i;:::-;16916:2;16911:3;16907:12;16900:19;;16559:366;;;:::o;16931:419::-;17097:4;17135:2;17124:9;17120:18;17112:26;;17184:9;17178:4;17174:20;17170:1;17159:9;17155:17;17148:47;17212:131;17338:4;17212:131;:::i;:::-;17204:139;;16931:419;;;:::o;17356:179::-;17496:31;17492:1;17484:6;17480:14;17473:55;17356:179;:::o;17541:366::-;17683:3;17704:67;17768:2;17763:3;17704:67;:::i;:::-;17697:74;;17780:93;17869:3;17780:93;:::i;:::-;17898:2;17893:3;17889:12;17882:19;;17541:366;;;:::o;17913:419::-;18079:4;18117:2;18106:9;18102:18;18094:26;;18166:9;18160:4;18156:20;18152:1;18141:9;18137:17;18130:47;18194:131;18320:4;18194:131;:::i;:::-;18186:139;;17913:419;;;:::o;18338:229::-;18478:34;18474:1;18466:6;18462:14;18455:58;18547:12;18542:2;18534:6;18530:15;18523:37;18338:229;:::o;18573:366::-;18715:3;18736:67;18800:2;18795:3;18736:67;:::i;:::-;18729:74;;18812:93;18901:3;18812:93;:::i;:::-;18930:2;18925:3;18921:12;18914:19;;18573:366;;;:::o;18945:419::-;19111:4;19149:2;19138:9;19134:18;19126:26;;19198:9;19192:4;19188:20;19184:1;19173:9;19169:17;19162:47;19226:131;19352:4;19226:131;:::i;:::-;19218:139;;18945:419;;;:::o;19370:222::-;19510:34;19506:1;19498:6;19494:14;19487:58;19579:5;19574:2;19566:6;19562:15;19555:30;19370:222;:::o;19598:366::-;19740:3;19761:67;19825:2;19820:3;19761:67;:::i;:::-;19754:74;;19837:93;19926:3;19837:93;:::i;:::-;19955:2;19950:3;19946:12;19939:19;;19598:366;;;:::o;19970:419::-;20136:4;20174:2;20163:9;20159:18;20151:26;;20223:9;20217:4;20213:20;20209:1;20198:9;20194:17;20187:47;20251:131;20377:4;20251:131;:::i;:::-;20243:139;;19970:419;;;:::o;20395:174::-;20535:26;20531:1;20523:6;20519:14;20512:50;20395:174;:::o;20575:366::-;20717:3;20738:67;20802:2;20797:3;20738:67;:::i;:::-;20731:74;;20814:93;20903:3;20814:93;:::i;:::-;20932:2;20927:3;20923:12;20916:19;;20575:366;;;:::o;20947:419::-;21113:4;21151:2;21140:9;21136:18;21128:26;;21200:9;21194:4;21190:20;21186:1;21175:9;21171:17;21164:47;21228:131;21354:4;21228:131;:::i;:::-;21220:139;;20947:419;;;:::o;21372:410::-;21412:7;21435:20;21453:1;21435:20;:::i;:::-;21430:25;;21469:20;21487:1;21469:20;:::i;:::-;21464:25;;21524:1;21521;21517:9;21546:30;21564:11;21546:30;:::i;:::-;21535:41;;21725:1;21716:7;21712:15;21709:1;21706:22;21686:1;21679:9;21659:83;21636:139;;21755:18;;:::i;:::-;21636:139;21420:362;21372:410;;;;:::o;21788:180::-;21836:77;21833:1;21826:88;21933:4;21930:1;21923:15;21957:4;21954:1;21947:15;21974:185;22014:1;22031:20;22049:1;22031:20;:::i;:::-;22026:25;;22065:20;22083:1;22065:20;:::i;:::-;22060:25;;22104:1;22094:35;;22109:18;;:::i;:::-;22094:35;22151:1;22148;22144:9;22139:14;;21974:185;;;;:::o;22165:194::-;22205:4;22225:20;22243:1;22225:20;:::i;:::-;22220:25;;22259:20;22277:1;22259:20;:::i;:::-;22254:25;;22303:1;22300;22296:9;22288:17;;22327:1;22321:4;22318:11;22315:37;;;22332:18;;:::i;:::-;22315:37;22165:194;;;;:::o;22365:224::-;22505:34;22501:1;22493:6;22489:14;22482:58;22574:7;22569:2;22561:6;22557:15;22550:32;22365:224;:::o;22595:366::-;22737:3;22758:67;22822:2;22817:3;22758:67;:::i;:::-;22751:74;;22834:93;22923:3;22834:93;:::i;:::-;22952:2;22947:3;22943:12;22936:19;;22595:366;;;:::o;22967:419::-;23133:4;23171:2;23160:9;23156:18;23148:26;;23220:9;23214:4;23210:20;23206:1;23195:9;23191:17;23184:47;23248:131;23374:4;23248:131;:::i;:::-;23240:139;;22967:419;;;:::o;23392:225::-;23532:34;23528:1;23520:6;23516:14;23509:58;23601:8;23596:2;23588:6;23584:15;23577:33;23392:225;:::o;23623:366::-;23765:3;23786:67;23850:2;23845:3;23786:67;:::i;:::-;23779:74;;23862:93;23951:3;23862:93;:::i;:::-;23980:2;23975:3;23971:12;23964:19;;23623:366;;;:::o;23995:419::-;24161:4;24199:2;24188:9;24184:18;24176:26;;24248:9;24242:4;24238:20;24234:1;24223:9;24219:17;24212:47;24276:131;24402:4;24276:131;:::i;:::-;24268:139;;23995:419;;;:::o;24420:442::-;24569:4;24607:2;24596:9;24592:18;24584:26;;24620:71;24688:1;24677:9;24673:17;24664:6;24620:71;:::i;:::-;24701:72;24769:2;24758:9;24754:18;24745:6;24701:72;:::i;:::-;24783;24851:2;24840:9;24836:18;24827:6;24783:72;:::i;:::-;24420:442;;;;;;:::o;24868:147::-;24969:11;25006:3;24991:18;;24868:147;;;;:::o;25021:114::-;;:::o;25141:398::-;25300:3;25321:83;25402:1;25397:3;25321:83;:::i;:::-;25314:90;;25413:93;25502:3;25413:93;:::i;:::-;25531:1;25526:3;25522:11;25515:18;;25141:398;;;:::o;25545:379::-;25729:3;25751:147;25894:3;25751:147;:::i;:::-;25744:154;;25915:3;25908:10;;25545:379;;;:::o;25930:180::-;25978:77;25975:1;25968:88;26075:4;26072:1;26065:15;26099:4;26096:1;26089:15;26116:143;26173:5;26204:6;26198:13;26189:22;;26220:33;26247:5;26220:33;:::i;:::-;26116:143;;;;:::o;26265:351::-;26335:6;26384:2;26372:9;26363:7;26359:23;26355:32;26352:119;;;26390:79;;:::i;:::-;26352:119;26510:1;26535:64;26591:7;26582:6;26571:9;26567:22;26535:64;:::i;:::-;26525:74;;26481:128;26265:351;;;;:::o;26622:85::-;26667:7;26696:5;26685:16;;26622:85;;;:::o;26713:158::-;26771:9;26804:61;26822:42;26831:32;26857:5;26831:32;:::i;:::-;26822:42;:::i;:::-;26804:61;:::i;:::-;26791:74;;26713:158;;;:::o;26877:147::-;26972:45;27011:5;26972:45;:::i;:::-;26967:3;26960:58;26877:147;;:::o;27030:114::-;27097:6;27131:5;27125:12;27115:22;;27030:114;;;:::o;27150:184::-;27249:11;27283:6;27278:3;27271:19;27323:4;27318:3;27314:14;27299:29;;27150:184;;;;:::o;27340:132::-;27407:4;27430:3;27422:11;;27460:4;27455:3;27451:14;27443:22;;27340:132;;;:::o;27478:108::-;27555:24;27573:5;27555:24;:::i;:::-;27550:3;27543:37;27478:108;;:::o;27592:179::-;27661:10;27682:46;27724:3;27716:6;27682:46;:::i;:::-;27760:4;27755:3;27751:14;27737:28;;27592:179;;;;:::o;27777:113::-;27847:4;27879;27874:3;27870:14;27862:22;;27777:113;;;:::o;27926:732::-;28045:3;28074:54;28122:5;28074:54;:::i;:::-;28144:86;28223:6;28218:3;28144:86;:::i;:::-;28137:93;;28254:56;28304:5;28254:56;:::i;:::-;28333:7;28364:1;28349:284;28374:6;28371:1;28368:13;28349:284;;;28450:6;28444:13;28477:63;28536:3;28521:13;28477:63;:::i;:::-;28470:70;;28563:60;28616:6;28563:60;:::i;:::-;28553:70;;28409:224;28396:1;28393;28389:9;28384:14;;28349:284;;;28353:14;28649:3;28642:10;;28050:608;;;27926:732;;;;:::o;28664:831::-;28927:4;28965:3;28954:9;28950:19;28942:27;;28979:71;29047:1;29036:9;29032:17;29023:6;28979:71;:::i;:::-;29060:80;29136:2;29125:9;29121:18;29112:6;29060:80;:::i;:::-;29187:9;29181:4;29177:20;29172:2;29161:9;29157:18;29150:48;29215:108;29318:4;29309:6;29215:108;:::i;:::-;29207:116;;29333:72;29401:2;29390:9;29386:18;29377:6;29333:72;:::i;:::-;29415:73;29483:3;29472:9;29468:19;29459:6;29415:73;:::i;:::-;28664:831;;;;;;;;:::o;29501:807::-;29750:4;29788:3;29777:9;29773:19;29765:27;;29802:71;29870:1;29859:9;29855:17;29846:6;29802:71;:::i;:::-;29883:72;29951:2;29940:9;29936:18;29927:6;29883:72;:::i;:::-;29965:80;30041:2;30030:9;30026:18;30017:6;29965:80;:::i;:::-;30055;30131:2;30120:9;30116:18;30107:6;30055:80;:::i;:::-;30145:73;30213:3;30202:9;30198:19;30189:6;30145:73;:::i;:::-;30228;30296:3;30285:9;30281:19;30272:6;30228:73;:::i;:::-;29501:807;;;;;;;;;:::o;30314:143::-;30371:5;30402:6;30396:13;30387:22;;30418:33;30445:5;30418:33;:::i;:::-;30314:143;;;;:::o;30463:663::-;30551:6;30559;30567;30616:2;30604:9;30595:7;30591:23;30587:32;30584:119;;;30622:79;;:::i;:::-;30584:119;30742:1;30767:64;30823:7;30814:6;30803:9;30799:22;30767:64;:::i;:::-;30757:74;;30713:128;30880:2;30906:64;30962:7;30953:6;30942:9;30938:22;30906:64;:::i;:::-;30896:74;;30851:129;31019:2;31045:64;31101:7;31092:6;31081:9;31077:22;31045:64;:::i;:::-;31035:74;;30990:129;30463:663;;;;;:::o
Swarm Source
ipfs://5b3ecda7710ffc9fa7ce2dd7eaada2f735c9e877d456b7bc91de0d29299a042e
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.