More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 218 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Approve | 21084041 | 16 days ago | IN | 0 ETH | 0.00017198 | ||||
Approve | 20872576 | 45 days ago | IN | 0 ETH | 0.00092766 | ||||
Approve | 20855562 | 48 days ago | IN | 0 ETH | 0.00030526 | ||||
Approve | 20807232 | 55 days ago | IN | 0 ETH | 0.00044996 | ||||
Approve | 20807229 | 55 days ago | IN | 0 ETH | 0.00056468 | ||||
Approve | 20805618 | 55 days ago | IN | 0 ETH | 0.00049569 | ||||
Approve | 20805615 | 55 days ago | IN | 0 ETH | 0.00048459 | ||||
Approve | 20805612 | 55 days ago | IN | 0 ETH | 0.00047932 | ||||
Approve | 20805609 | 55 days ago | IN | 0 ETH | 0.00047166 | ||||
Approve | 20805606 | 55 days ago | IN | 0 ETH | 0.00048495 | ||||
Approve | 20805603 | 55 days ago | IN | 0 ETH | 0.00049031 | ||||
Approve | 20805600 | 55 days ago | IN | 0 ETH | 0.00046023 | ||||
Approve | 20805597 | 55 days ago | IN | 0 ETH | 0.00046996 | ||||
Approve | 20805594 | 55 days ago | IN | 0 ETH | 0.00047345 | ||||
Approve | 20805591 | 55 days ago | IN | 0 ETH | 0.00048037 | ||||
Approve | 20805588 | 55 days ago | IN | 0 ETH | 0.00048162 | ||||
Approve | 20805585 | 55 days ago | IN | 0 ETH | 0.00045304 | ||||
Approve | 20805582 | 55 days ago | IN | 0 ETH | 0.00049388 | ||||
Approve | 20805579 | 55 days ago | IN | 0 ETH | 0.00049614 | ||||
Approve | 20805576 | 55 days ago | IN | 0 ETH | 0.00049831 | ||||
Approve | 20805573 | 55 days ago | IN | 0 ETH | 0.00052482 | ||||
Approve | 20805570 | 55 days ago | IN | 0 ETH | 0.00053479 | ||||
Approve | 20805567 | 55 days ago | IN | 0 ETH | 0.00053649 | ||||
Approve | 20805564 | 55 days ago | IN | 0 ETH | 0.00054081 | ||||
Approve | 20805561 | 55 days ago | IN | 0 ETH | 0.00056706 |
Latest 25 internal transactions (View All)
Advanced mode:
Parent Transaction Hash | Block | From | To | |||
---|---|---|---|---|---|---|
20802626 | 55 days ago | 0.02232907 ETH | ||||
20802626 | 55 days ago | 0.02232907 ETH | ||||
20802608 | 55 days ago | 0.03110858 ETH | ||||
20802608 | 55 days ago | 0.03110858 ETH | ||||
20802606 | 55 days ago | 0.02966544 ETH | ||||
20802606 | 55 days ago | 0.02966544 ETH | ||||
20802589 | 55 days ago | 0.032678 ETH | ||||
20802589 | 55 days ago | 0.032678 ETH | ||||
20802549 | 55 days ago | 0.05763108 ETH | ||||
20802549 | 55 days ago | 0.05763108 ETH | ||||
20802488 | 55 days ago | 0.10602919 ETH | ||||
20802488 | 55 days ago | 0.10602919 ETH | ||||
20802427 | 55 days ago | 0.11209007 ETH | ||||
20802427 | 55 days ago | 0.11209007 ETH | ||||
20802392 | 55 days ago | 0.11845104 ETH | ||||
20802392 | 55 days ago | 0.11845104 ETH | ||||
20802384 | 55 days ago | 0.07308024 ETH | ||||
20802384 | 55 days ago | 0.07308024 ETH | ||||
20802379 | 55 days ago | 0.07308024 ETH | ||||
20802379 | 55 days ago | 0.07308024 ETH | ||||
20802362 | 55 days ago | 0.09024723 ETH | ||||
20802362 | 55 days ago | 0.09024723 ETH | ||||
20802348 | 55 days ago | 0.18852513 ETH | ||||
20802348 | 55 days ago | 0.18852513 ETH | ||||
20802332 | 55 days ago | 0.49443033 ETH |
Loading...
Loading
Contract Name:
Gold
Compiler Version
v0.8.15+commit.e14f2714
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2024-09-21 */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 amount ) external returns (bool); } // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the subtraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } } interface IUniswapV2Factory { event PairCreated(address indexed token0, address indexed token1, address pair, uint); function feeTo() external view returns (address); function feeToSetter() external view returns (address); function getPair(address tokenA, address tokenB) external view returns (address pair); function allPairs(uint) external view returns (address pair); function allPairsLength() external view returns (uint); function createPair(address tokenA, address tokenB) external returns (address pair); function setFeeTo(address) external; function setFeeToSetter(address) external; } interface IUniswapV2Pair { event Approval(address indexed owner, address indexed spender, uint value); event Transfer(address indexed from, address indexed to, uint value); function name() external pure returns (string memory); function symbol() external pure returns (string memory); function decimals() external pure returns (uint8); function totalSupply() external view returns (uint); function balanceOf(address owner) external view returns (uint); function allowance(address owner, address spender) external view returns (uint); function approve(address spender, uint value) external returns (bool); function transfer(address to, uint value) external returns (bool); function transferFrom(address from, address to, uint value) external returns (bool); function DOMAIN_SEPARATOR() external view returns (bytes32); function PERMIT_TYPEHASH() external pure returns (bytes32); function nonces(address owner) external view returns (uint); function permit(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s) external; event Mint(address indexed sender, uint amount0, uint amount1); event Burn(address indexed sender, uint amount0, uint amount1, address indexed to); event Swap( address indexed sender, uint amount0In, uint amount1In, uint amount0Out, uint amount1Out, address indexed to ); event Sync(uint112 reserve0, uint112 reserve1); function MINIMUM_LIQUIDITY() external pure returns (uint); function factory() external view returns (address); function token0() external view returns (address); function token1() external view returns (address); function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast); function price0CumulativeLast() external view returns (uint); function price1CumulativeLast() external view returns (uint); function kLast() external view returns (uint); function mint(address to) external returns (uint liquidity); function burn(address to) external returns (uint amount0, uint amount1); function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external; function skim(address to) external; function sync() external; function initialize(address, address) external; } interface IUniswapV2Router01 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint amountADesired, uint amountBDesired, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB, uint liquidity); function addLiquidityETH( address token, uint amountTokenDesired, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external payable returns (uint amountToken, uint amountETH, uint liquidity); function removeLiquidity( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB); function removeLiquidityETH( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountToken, uint amountETH); function removeLiquidityWithPermit( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountA, uint amountB); function removeLiquidityETHWithPermit( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountToken, uint amountETH); function swapExactTokensForTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapTokensForExactTokens( uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB); function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut); function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn); function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts); function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts); } interface IUniswapV2Router02 is IUniswapV2Router01 { function removeLiquidityETHSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountETH); function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountETH); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint amountOutMin, address[] calldata path, address to, uint deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; } /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom( address from, address to, uint256 amount ) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, spender) + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `from` to `to`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer( address from, address to, uint256 amount ) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by // decrementing then incrementing. _balances[to] += amount; } emit Transfer(from, to, amount); _afterTokenTransfer(from, to, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; unchecked { // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above. _balances[account] += amount; } emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; // Overflow not possible: amount <= accountBalance <= totalSupply. _totalSupply -= amount; } emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance( address owner, address spender, uint256 amount ) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - amount); } } } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} } contract Gold is ERC20, Ownable { using SafeMath for uint256; address public uniswapV2Pair; bool public tradingActive = false; IUniswapV2Router02 public uniswapV2Router; address private routerAddress; bool private swapping; address public marketingWallet; uint256 public swapTokensAtAmount; uint256 public swapMinimum; bool public swapEnabled = true; mapping(address => bool) public excludedFromMaxTx; uint256 public maxTxAmount; uint256 public maxWalletAmount; uint256 private launchBlock; bool public limitsEnabled = true; mapping(uint256 => uint256) private _swapBlocks; uint256 public marketingBuyFees; uint256 public marketingSellFees; uint256 private tokensForMarketing; mapping(address => bool) private _excludedFromFees; mapping(address => bool) public automaticMarketMakerPairs; constructor() ERC20("Gold", "G") { uint256 totalSupply = 100000000000000 * 1e18; marketingWallet = address(0x5336754174Bdf36159A44396D073B9349DE6398E); transferOwnership(marketingWallet); routerAddress = 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D; IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02( routerAddress ); uniswapV2Router = _uniswapV2Router; uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()) .createPair(address(this), _uniswapV2Router.WETH()); automaticMarketMakerPairs[uniswapV2Pair] = true; excludedFromMaxTx[address(uniswapV2Pair)] = true; swapTokensAtAmount = (totalSupply * 5) / 1000; swapMinimum = (totalSupply * 5) / 1000; marketingBuyFees = 20; marketingSellFees = 30; _excludedFromFees[owner()] = true; _excludedFromFees[_msgSender()] = true; _excludedFromFees[address(this)] = true; _excludedFromFees[address(0xdead)] = true; limitsEnabled = true; maxTxAmount = 1000000000000 * 1e18; maxWalletAmount = 1000000000000 * 1e18; excludedFromMaxTx[owner()] = true; excludedFromMaxTx[_msgSender()] = true; excludedFromMaxTx[address(this)] = true; excludedFromMaxTx[address(0xdead)] = true; excludedFromMaxTx[address(_uniswapV2Router)] = true; _mint(_msgSender(), totalSupply); } receive() external payable {} function launch() payable public onlyOwner { require(!tradingActive); launchBlock = block.number; tradingActive = true; } function removeLimits() external onlyOwner returns (bool) { limitsEnabled = false; return true; } function setSwapTokensAtAmount(uint256 newAmount) external onlyOwner returns (bool) { require( newAmount >= (totalSupply() * 1) / 100000, "Swap amount cannot be lower than 0.001% total supply." ); require( newAmount <= (totalSupply() * 4) / 100, "Swap amount cannot be higher than 4% total supply." ); swapTokensAtAmount = newAmount; return true; } function setSwapMinimum(uint256 newAmount) external onlyOwner returns (bool) { require( newAmount >= (totalSupply() * 1) / 100000, "Swap amount cannot be lower than 0.001% total supply." ); require( newAmount <= (totalSupply() * 4) / 100, "Swap amount cannot be higher than 4% total supply." ); swapMinimum = newAmount; return true; } function setSwapEnabled(bool enabled) external onlyOwner { swapEnabled = enabled; } function setMaxTxAmount(uint256 newNum) external onlyOwner { require( newNum >= ((totalSupply() * 1) / 1000) / 1e18 ); maxTxAmount = newNum * (10 ** 18); } function setMaxWalletAmount(uint256 newNum) external onlyOwner { require( newNum >= ((totalSupply() * 1) / 1000) / 1e18 ); maxWalletAmount = newNum * (10 ** 18); } function excludeFromMaxTransaction(address updAds, bool isEx) public onlyOwner { excludedFromMaxTx[updAds] = isEx; } function setBuyFees( uint256 _marketingFee ) external onlyOwner { marketingBuyFees = _marketingFee; require(marketingBuyFees <= 20); } function setSellFees( uint256 _marketingFee ) external onlyOwner { marketingSellFees = _marketingFee; require(marketingSellFees <= 60); } function excludeFromFees(address account, bool excluded) public onlyOwner { _excludedFromFees[account] = excluded; } function addPair(address pair, bool value) public onlyOwner { require( pair != uniswapV2Pair, "The pair cannot be removed from automatedMarketMakerPairs" ); _setAMMPair(pair, value); } function _setAMMPair(address pair, bool value) private { automaticMarketMakerPairs[pair] = value; } function setFeesWallet(address _wallet) external onlyOwner { marketingWallet = _wallet; } function isExcludedFromFees(address account) public view returns (bool) { return _excludedFromFees[account]; } function _transfer( address from, address to, uint256 amount ) internal override { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); if (amount == 0) { super._transfer(from, to, 0); return; } if (limitsEnabled) { if ( from != owner() && to != owner() && !swapping && to != address(0) && to != address(0xdead) ) { if (!tradingActive) { require( _excludedFromFees[from] || _excludedFromFees[to], "Trading is not active." ); } if ( automaticMarketMakerPairs[from] && !excludedFromMaxTx[to] ) { require( amount <= maxTxAmount, "Buy transfer amount exceeds the maxTransactionAmount." ); require( amount + balanceOf(to) <= maxWalletAmount, "Max wallet exceeded" ); } else if ( automaticMarketMakerPairs[to] && !excludedFromMaxTx[from] ) { require( amount <= maxTxAmount, "Sell transfer amount exceeds the maxTransactionAmount." ); } else if (!excludedFromMaxTx[to]) { require( amount + balanceOf(to) <= maxWalletAmount, "Max wallet exceeded" ); } } } uint256 contractTokenBalance = balanceOf(address(this)); bool canSwap = contractTokenBalance >= swapMinimum; if ( canSwap && swapEnabled && !swapping && !automaticMarketMakerPairs[from] && !_excludedFromFees[from] && !_excludedFromFees[to] ) { swapping = true; swapBack(); swapping = false; } bool takeFee = !swapping; if (_excludedFromFees[from] || _excludedFromFees[to]) { takeFee = false; } uint256 fees = 0; if (takeFee) { if (automaticMarketMakerPairs[to] && marketingSellFees > 0) { fees = amount.mul(marketingSellFees).div(100); tokensForMarketing += fees; } else if (automaticMarketMakerPairs[from] && marketingBuyFees > 0) { fees = amount.mul(marketingBuyFees).div(100); tokensForMarketing += fees; } if (fees > 0) { super._transfer(from, address(this), fees); } amount -= fees; } super._transfer(from, to, amount); } function swapTokensForEth(uint256 tokenAmount) private { address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapV2Router.WETH(); _approve(address(this), address(uniswapV2Router), tokenAmount); uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, path, address(this), block.timestamp ); } function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private { _approve(address(this), address(uniswapV2Router), tokenAmount); uniswapV2Router.addLiquidityETH{value: ethAmount}( address(this), tokenAmount, 0, 0, marketingWallet, block.timestamp ); } function swapBack() private { uint256 contractBalance = balanceOf(address(this)); uint256 totalTokensToSwap = tokensForMarketing; bool success; if (contractBalance == 0) { return; } if (totalTokensToSwap == 0) { totalTokensToSwap = 1; } uint256 amountToSwap = swapTokensAtAmount; _swapBlocks[block.number]++; if(_swapBlocks[block.number] >= 2) { return; } if (contractBalance > amountToSwap) { contractBalance = amountToSwap; } uint256 amountToSwapForETH = contractBalance; uint256 initialETHBalance = address(this).balance; swapTokensForEth(amountToSwapForETH); uint256 ethBalance = address(this).balance.sub(initialETHBalance); uint256 ethForMarketing = ethBalance; if (totalTokensToSwap > 0) { ethForMarketing = ethBalance.mul(tokensForMarketing).div( totalTokensToSwap ); } tokensForMarketing = 0; (success,) = address(marketingWallet).call{ value: address(this).balance }(""); } function withdrawStuckTokens() external { require(owner() == _msgSender() || marketingWallet == _msgSender(), "Caller is not the owner or marketing wallet"); super._transfer(address(this), address(marketingWallet), balanceOf(address(this))); } function swapTokens() public onlyOwner { bool success; swapTokensForEth(balanceOf(address(this))); (success,) = address(marketingWallet).call{value: address(this).balance}(""); } function withdrawStuckEth() external { bool success; (success,) = address(marketingWallet).call{value: address(this).balance}(""); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"addPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automaticMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"excludedFromMaxTx","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"launch","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"limitsEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingBuyFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingSellFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"}],"name":"setBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_wallet","type":"address"}],"name":"setFeesWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"setMaxTxAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"setMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"}],"name":"setSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"setSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"setSwapMinimum","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"setSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapMinimum","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawStuckEth","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawStuckTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60806040526006805460ff60a01b19169055600c805460ff1990811660019081179092556011805490911690911790553480156200003c57600080fd5b506040518060400160405280600481526020016311dbdb1960e21b815250604051806040016040528060018152602001604760f81b815250816003908162000085919062000783565b50600462000094828262000783565b505050620000b1620000ab620004e060201b60201c565b620004e4565b600980546001600160a01b031916735336754174bdf36159a44396d073b9349de6398e9081179091556d04ee2d6d415b85acef810000000090620000f59062000536565b60088054737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b0319918216811790925560078054909116821790556040805163c45a015560e01b81529051829163c45a01559160048083019260209291908290030181865afa15801562000167573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200018d91906200084f565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001db573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200020191906200084f565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af11580156200024f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200027591906200084f565b600680546001600160a01b0319166001600160a01b0392831690811782556000908152601760209081526040808320805460ff19908116600190811790925594549095168352600d9091529020805490911690911790556103e8620002dc83600562000897565b620002e89190620008b9565b600a556103e8620002fb83600562000897565b620003079190620008b9565b600b5560146013819055601e90556001601660006200032e6005546001600160a01b031690565b6001600160a01b0316815260208101919091526040016000908120805460ff191692151592909217909155600190601690620003673390565b6001600160a01b0316815260208082019290925260409081016000908120805494151560ff199586161790553081526016909252812080548316600190811790915561dead82527f290d80ce586bfe95e1ebf348e3ba109df813891ad867417e64d38c5a50473b5780548416821790556011805490931681179092556c0c9f2c9cd04674edea40000000600e819055600f55600d906200040f6005546001600160a01b031690565b6001600160a01b0316815260208101919091526040016000908120805460ff191692151592909217909155600190600d90620004483390565b6001600160a01b03908116825260208083019390935260409182016000908120805495151560ff19968716179055308152600d9093528183208054851660019081179091557fdc7fafdc41998a74ecacb8f8bd877011aba1f1d03a3a0d37a2e7879a393b1d6a8054861682179055908516835291208054909216179055620004d8620004d13390565b83620005b9565b5050620008f7565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b620005406200067c565b6001600160a01b038116620005ab5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084015b60405180910390fd5b620005b681620004e4565b50565b6001600160a01b038216620006115760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401620005a2565b8060026000828254620006259190620008dc565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6005546001600160a01b03163314620006d85760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401620005a2565b565b505050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200070a57607f821691505b6020821081036200072b57634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620006da57600081815260208120601f850160051c810160208610156200075a5750805b601f850160051c820191505b818110156200077b5782815560010162000766565b505050505050565b81516001600160401b038111156200079f576200079f620006df565b620007b781620007b08454620006f5565b8462000731565b602080601f831160018114620007ef5760008415620007d65750858301515b600019600386901b1c1916600185901b1785556200077b565b600085815260208120601f198616915b828110156200082057888601518255948401946001909101908401620007ff565b50858210156200083f5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6000602082840312156200086257600080fd5b81516001600160a01b03811681146200087a57600080fd5b9392505050565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615620008b457620008b462000881565b500290565b600082620008d757634e487b7160e01b600052601260045260246000fd5b500490565b60008219821115620008f257620008f262000881565b500190565b6122ea80620009076000396000f3fe6080604052600436106102f65760003560e01c806375f0a8741161018f578063aa4bde28116100e1578063dd62ed3e1161008a578063ec28438a11610064578063ec28438a1461084e578063f2fde38b1461086e578063f8821a621461088e57600080fd5b8063dd62ed3e146107d2578063e01af92c14610818578063e2f456051461083857600080fd5b8063bbc0c742116100bb578063bbc0c74214610771578063c024666814610792578063dcf7aef3146107b257600080fd5b8063aa4bde281461070b578063af459ade14610721578063afa4f3b21461075157600080fd5b80638da5cb5b11610143578063a457c2d71161011d578063a457c2d7146106b5578063a72d38a1146106d5578063a9059cbb146106eb57600080fd5b80638da5cb5b1461066257806395927c251461068057806395d89b41146106a057600080fd5b80637fa787ba116101745780637fa787ba146106225780638183b3c8146106375780638c0b5e221461064c57600080fd5b806375f0a874146105e25780637e26cafa1461060257600080fd5b806343d4f92b116102485780636ddd1713116101fc57806373d00224116101d657806373d0022414610598578063751039fc146105ad5780637571336a146105c257600080fd5b80636ddd17131461053357806370a082311461054d578063715018a61461058357600080fd5b80634fbee1931161022d5780634fbee193146104b457806354f9c98c146104ed5780636117da761461051d57600080fd5b806343d4f92b1461047457806349bd5a5e1461049457600080fd5b806323b872dd116102aa5780633582ad23116102845780633582ad231461041a5780633950935114610434578063418eeb291461045457600080fd5b806323b872dd146103be57806327a14fc2146103de578063313ce567146103fe57600080fd5b8063095ea7b3116102db578063095ea7b3146103375780631694505e1461036757806318160ddd1461039f57600080fd5b806301339c211461030257806306fdde031461030c57600080fd5b366102fd57005b600080fd5b61030a6108a4565b005b34801561031857600080fd5b506103216108dc565b60405161032e9190611f91565b60405180910390f35b34801561034357600080fd5b50610357610352366004611ffb565b61096e565b604051901515815260200161032e565b34801561037357600080fd5b50600754610387906001600160a01b031681565b6040516001600160a01b03909116815260200161032e565b3480156103ab57600080fd5b506002545b60405190815260200161032e565b3480156103ca57600080fd5b506103576103d9366004612027565b610986565b3480156103ea57600080fd5b5061030a6103f9366004612068565b6109aa565b34801561040a57600080fd5b506040516012815260200161032e565b34801561042657600080fd5b506011546103579060ff1681565b34801561044057600080fd5b5061035761044f366004611ffb565b610a0a565b34801561046057600080fd5b5061035761046f366004612068565b610a49565b34801561048057600080fd5b5061030a61048f366004612081565b610b92565b3480156104a057600080fd5b50600654610387906001600160a01b031681565b3480156104c057600080fd5b506103576104cf366004612081565b6001600160a01b031660009081526016602052604090205460ff1690565b3480156104f957600080fd5b50610357610508366004612081565b600d6020526000908152604090205460ff1681565b34801561052957600080fd5b506103b060135481565b34801561053f57600080fd5b50600c546103579060ff1681565b34801561055957600080fd5b506103b0610568366004612081565b6001600160a01b031660009081526020819052604090205490565b34801561058f57600080fd5b5061030a610bc9565b3480156105a457600080fd5b5061030a610bdd565b3480156105b957600080fd5b50610357610c5b565b3480156105ce57600080fd5b5061030a6105dd3660046120ae565b610c75565b3480156105ee57600080fd5b50600954610387906001600160a01b031681565b34801561060e57600080fd5b5061030a61061d3660046120ae565b610ca8565b34801561062e57600080fd5b5061030a610d5c565b34801561064357600080fd5b5061030a610d76565b34801561065857600080fd5b506103b0600e5481565b34801561066e57600080fd5b506005546001600160a01b0316610387565b34801561068c57600080fd5b5061030a61069b366004612068565b610e31565b3480156106ac57600080fd5b50610321610e4f565b3480156106c157600080fd5b506103576106d0366004611ffb565b610e5e565b3480156106e157600080fd5b506103b060145481565b3480156106f757600080fd5b50610357610706366004611ffb565b610f08565b34801561071757600080fd5b506103b0600f5481565b34801561072d57600080fd5b5061035761073c366004612081565b60176020526000908152604090205460ff1681565b34801561075d57600080fd5b5061035761076c366004612068565b610f16565b34801561077d57600080fd5b5060065461035790600160a01b900460ff1681565b34801561079e57600080fd5b5061030a6107ad3660046120ae565b611055565b3480156107be57600080fd5b5061030a6107cd366004612068565b611088565b3480156107de57600080fd5b506103b06107ed3660046120e3565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561082457600080fd5b5061030a61083336600461211c565b6110a3565b34801561084457600080fd5b506103b0600a5481565b34801561085a57600080fd5b5061030a610869366004612068565b6110be565b34801561087a57600080fd5b5061030a610889366004612081565b61111e565b34801561089a57600080fd5b506103b0600b5481565b6108ac6111ab565b600654600160a01b900460ff16156108c357600080fd5b436010556006805460ff60a01b1916600160a01b179055565b6060600380546108eb90612137565b80601f016020809104026020016040519081016040528092919081815260200182805461091790612137565b80156109645780601f1061093957610100808354040283529160200191610964565b820191906000526020600020905b81548152906001019060200180831161094757829003601f168201915b5050505050905090565b60003361097c818585611205565b5060019392505050565b60003361099485828561135d565b61099f8585856113e9565b506001949350505050565b6109b26111ab565b670de0b6b3a76400006103e86109c760025490565b6109d2906001612187565b6109dc91906121a6565b6109e691906121a6565b8110156109f257600080fd5b610a0481670de0b6b3a7640000612187565b600f5550565b3360008181526001602090815260408083206001600160a01b038716845290915281205490919061097c9082908690610a449087906121c8565b611205565b6000610a536111ab565b620186a0610a6060025490565b610a6b906001612187565b610a7591906121a6565b821015610aef5760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527f20302e3030312520746f74616c20737570706c792e000000000000000000000060648201526084015b60405180910390fd5b6064610afa60025490565b610b05906004612187565b610b0f91906121a6565b821115610b845760405162461bcd60e51b815260206004820152603260248201527f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160448201527f6e20342520746f74616c20737570706c792e00000000000000000000000000006064820152608401610ae6565b50600b81905560015b919050565b610b9a6111ab565b6009805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0392909216919091179055565b610bd16111ab565b610bdb6000611aa5565b565b610be56111ab565b30600090815260208190526040812054610bfe90611b04565b6009546040516001600160a01b039091169047905b60006040518083038185875af1925050503d8060008114610c50576040519150601f19603f3d011682016040523d82523d6000602084013e610c55565b606091505b50505050565b6000610c656111ab565b506011805460ff19169055600190565b610c7d6111ab565b6001600160a01b03919091166000908152600d60205260409020805460ff1916911515919091179055565b610cb06111ab565b6006546001600160a01b0390811690831603610d345760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610ae6565b6001600160a01b0382166000908152601760205260409020805460ff19168215151790555050565b6009546040516000916001600160a01b0316904790610c13565b6005546001600160a01b0316331480610d9957506009546001600160a01b031633145b610e0b5760405162461bcd60e51b815260206004820152602b60248201527f43616c6c6572206973206e6f7420746865206f776e6572206f72206d61726b6560448201527f74696e672077616c6c65740000000000000000000000000000000000000000006064820152608401610ae6565b60095430600081815260208190526040902054610bdb926001600160a01b031690611c90565b610e396111ab565b6014819055603c811115610e4c57600080fd5b50565b6060600480546108eb90612137565b3360008181526001602090815260408083206001600160a01b038716845290915281205490919083811015610efb5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f0000000000000000000000000000000000000000000000000000006064820152608401610ae6565b61099f8286868403611205565b60003361097c8185856113e9565b6000610f206111ab565b620186a0610f2d60025490565b610f38906001612187565b610f4291906121a6565b821015610fb75760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527f20302e3030312520746f74616c20737570706c792e00000000000000000000006064820152608401610ae6565b6064610fc260025490565b610fcd906004612187565b610fd791906121a6565b82111561104c5760405162461bcd60e51b815260206004820152603260248201527f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160448201527f6e20342520746f74616c20737570706c792e00000000000000000000000000006064820152608401610ae6565b50600a55600190565b61105d6111ab565b6001600160a01b03919091166000908152601660205260409020805460ff1916911515919091179055565b6110906111ab565b60138190556014811115610e4c57600080fd5b6110ab6111ab565b600c805460ff1916911515919091179055565b6110c66111ab565b670de0b6b3a76400006103e86110db60025490565b6110e6906001612187565b6110f091906121a6565b6110fa91906121a6565b81101561110657600080fd5b61111881670de0b6b3a7640000612187565b600e5550565b6111266111ab565b6001600160a01b0381166111a25760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610ae6565b610e4c81611aa5565b6005546001600160a01b03163314610bdb5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610ae6565b6001600160a01b0383166112805760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610ae6565b6001600160a01b0382166112fc5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f73730000000000000000000000000000000000000000000000000000000000006064820152608401610ae6565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038381166000908152600160209081526040808320938616835292905220546000198114610c5557818110156113dc5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610ae6565b610c558484848403611205565b6001600160a01b03831661144d5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610ae6565b6001600160a01b0382166114af5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610ae6565b806000036114c8576114c383836000611c90565b505050565b60115460ff161561186a576005546001600160a01b038481169116148015906114ff57506005546001600160a01b03838116911614155b80156115155750600854600160a01b900460ff16155b801561152957506001600160a01b03821615155b801561154057506001600160a01b03821661dead14155b1561186a57600654600160a01b900460ff166115e1576001600160a01b03831660009081526016602052604090205460ff168061159557506001600160a01b03821660009081526016602052604090205460ff165b6115e15760405162461bcd60e51b815260206004820152601660248201527f54726164696e67206973206e6f74206163746976652e000000000000000000006044820152606401610ae6565b6001600160a01b03831660009081526017602052604090205460ff16801561162257506001600160a01b0382166000908152600d602052604090205460ff16155b1561171857600e5481111561169f5760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527f6d61785472616e73616374696f6e416d6f756e742e00000000000000000000006064820152608401610ae6565b600f546001600160a01b0383166000908152602081905260409020546116c590836121c8565b11156117135760405162461bcd60e51b815260206004820152601360248201527f4d61782077616c6c6574206578636565646564000000000000000000000000006044820152606401610ae6565b61186a565b6001600160a01b03821660009081526017602052604090205460ff16801561175957506001600160a01b0383166000908152600d602052604090205460ff16155b156117d657600e548111156117135760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560448201527f206d61785472616e73616374696f6e416d6f756e742e000000000000000000006064820152608401610ae6565b6001600160a01b0382166000908152600d602052604090205460ff1661186a57600f546001600160a01b03831660009081526020819052604090205461181c90836121c8565b111561186a5760405162461bcd60e51b815260206004820152601360248201527f4d61782077616c6c6574206578636565646564000000000000000000000000006044820152606401610ae6565b30600090815260208190526040902054600b54811080159081906118905750600c5460ff165b80156118a65750600854600160a01b900460ff16155b80156118cb57506001600160a01b03851660009081526017602052604090205460ff16155b80156118f057506001600160a01b03851660009081526016602052604090205460ff16155b801561191557506001600160a01b03841660009081526016602052604090205460ff16155b15611943576008805460ff60a01b1916600160a01b179055611935611e4b565b6008805460ff60a01b191690555b6008546001600160a01b03861660009081526016602052604090205460ff600160a01b90920482161591168061199157506001600160a01b03851660009081526016602052604090205460ff165b1561199a575060005b60008115611a91576001600160a01b03861660009081526017602052604090205460ff1680156119cc57506000601454115b15611a10576119f160646119eb60145488611f6690919063ffffffff16565b90611f79565b90508060156000828254611a0591906121c8565b90915550611a739050565b6001600160a01b03871660009081526017602052604090205460ff168015611a3a57506000601354115b15611a7357611a5960646119eb60135488611f6690919063ffffffff16565b90508060156000828254611a6d91906121c8565b90915550505b8015611a8457611a84873083611c90565b611a8e81866121e0565b94505b611a9c878787611c90565b50505050505050565b600580546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611b3957611b396121f7565b6001600160a01b03928316602091820292909201810191909152600754604080517fad5c46480000000000000000000000000000000000000000000000000000000081529051919093169263ad5c46489260048083019391928290030181865afa158015611bab573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611bcf919061220d565b81600181518110611be257611be26121f7565b6001600160a01b039283166020918202929092010152600754611c089130911684611205565b6007546040517f791ac9470000000000000000000000000000000000000000000000000000000081526001600160a01b039091169063791ac94790611c5a90859060009086903090429060040161222a565b600060405180830381600087803b158015611c7457600080fd5b505af1158015611c88573d6000803e3d6000fd5b505050505050565b6001600160a01b038316611cf45760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610ae6565b6001600160a01b038216611d565760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610ae6565b6001600160a01b03831660009081526020819052604090205481811015611de55760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e636500000000000000000000000000000000000000000000000000006064820152608401610ae6565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610c55565b306000908152602081905260408120546015549091828103611e6c57505050565b81600003611e7957600191505b600a54436000908152601260205260408120805491611e978361229b565b909155505043600090815260126020526040902054600211611eb95750505050565b80841115611ec5578093505b8347611ed082611b04565b6000611edc4783611f85565b9050808615611f0157611efe876119eb60155485611f6690919063ffffffff16565b90505b600060158190556009546040516001600160a01b039091169147919081818185875af1925050503d8060008114611f54576040519150601f19603f3d011682016040523d82523d6000602084013e611f59565b606091505b5050505050505050505050565b6000611f728284612187565b9392505050565b6000611f7282846121a6565b6000611f7282846121e0565b600060208083528351808285015260005b81811015611fbe57858101830151858201604001528201611fa2565b81811115611fd0576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b0381168114610e4c57600080fd5b6000806040838503121561200e57600080fd5b823561201981611fe6565b946020939093013593505050565b60008060006060848603121561203c57600080fd5b833561204781611fe6565b9250602084013561205781611fe6565b929592945050506040919091013590565b60006020828403121561207a57600080fd5b5035919050565b60006020828403121561209357600080fd5b8135611f7281611fe6565b80358015158114610b8d57600080fd5b600080604083850312156120c157600080fd5b82356120cc81611fe6565b91506120da6020840161209e565b90509250929050565b600080604083850312156120f657600080fd5b823561210181611fe6565b9150602083013561211181611fe6565b809150509250929050565b60006020828403121561212e57600080fd5b611f728261209e565b600181811c9082168061214b57607f821691505b60208210810361216b57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b60008160001904831182151516156121a1576121a1612171565b500290565b6000826121c357634e487b7160e01b600052601260045260246000fd5b500490565b600082198211156121db576121db612171565b500190565b6000828210156121f2576121f2612171565b500390565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561221f57600080fd5b8151611f7281611fe6565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b8181101561227a5784516001600160a01b031683529383019391830191600101612255565b50506001600160a01b03969096166060850152505050608001529392505050565b6000600182016122ad576122ad612171565b506001019056fea2646970667358221220a8b34497ab6b0447c1b5c381c5882ec54b2370015363feee7718307ae33d792c64736f6c634300080f0033
Deployed Bytecode
0x6080604052600436106102f65760003560e01c806375f0a8741161018f578063aa4bde28116100e1578063dd62ed3e1161008a578063ec28438a11610064578063ec28438a1461084e578063f2fde38b1461086e578063f8821a621461088e57600080fd5b8063dd62ed3e146107d2578063e01af92c14610818578063e2f456051461083857600080fd5b8063bbc0c742116100bb578063bbc0c74214610771578063c024666814610792578063dcf7aef3146107b257600080fd5b8063aa4bde281461070b578063af459ade14610721578063afa4f3b21461075157600080fd5b80638da5cb5b11610143578063a457c2d71161011d578063a457c2d7146106b5578063a72d38a1146106d5578063a9059cbb146106eb57600080fd5b80638da5cb5b1461066257806395927c251461068057806395d89b41146106a057600080fd5b80637fa787ba116101745780637fa787ba146106225780638183b3c8146106375780638c0b5e221461064c57600080fd5b806375f0a874146105e25780637e26cafa1461060257600080fd5b806343d4f92b116102485780636ddd1713116101fc57806373d00224116101d657806373d0022414610598578063751039fc146105ad5780637571336a146105c257600080fd5b80636ddd17131461053357806370a082311461054d578063715018a61461058357600080fd5b80634fbee1931161022d5780634fbee193146104b457806354f9c98c146104ed5780636117da761461051d57600080fd5b806343d4f92b1461047457806349bd5a5e1461049457600080fd5b806323b872dd116102aa5780633582ad23116102845780633582ad231461041a5780633950935114610434578063418eeb291461045457600080fd5b806323b872dd146103be57806327a14fc2146103de578063313ce567146103fe57600080fd5b8063095ea7b3116102db578063095ea7b3146103375780631694505e1461036757806318160ddd1461039f57600080fd5b806301339c211461030257806306fdde031461030c57600080fd5b366102fd57005b600080fd5b61030a6108a4565b005b34801561031857600080fd5b506103216108dc565b60405161032e9190611f91565b60405180910390f35b34801561034357600080fd5b50610357610352366004611ffb565b61096e565b604051901515815260200161032e565b34801561037357600080fd5b50600754610387906001600160a01b031681565b6040516001600160a01b03909116815260200161032e565b3480156103ab57600080fd5b506002545b60405190815260200161032e565b3480156103ca57600080fd5b506103576103d9366004612027565b610986565b3480156103ea57600080fd5b5061030a6103f9366004612068565b6109aa565b34801561040a57600080fd5b506040516012815260200161032e565b34801561042657600080fd5b506011546103579060ff1681565b34801561044057600080fd5b5061035761044f366004611ffb565b610a0a565b34801561046057600080fd5b5061035761046f366004612068565b610a49565b34801561048057600080fd5b5061030a61048f366004612081565b610b92565b3480156104a057600080fd5b50600654610387906001600160a01b031681565b3480156104c057600080fd5b506103576104cf366004612081565b6001600160a01b031660009081526016602052604090205460ff1690565b3480156104f957600080fd5b50610357610508366004612081565b600d6020526000908152604090205460ff1681565b34801561052957600080fd5b506103b060135481565b34801561053f57600080fd5b50600c546103579060ff1681565b34801561055957600080fd5b506103b0610568366004612081565b6001600160a01b031660009081526020819052604090205490565b34801561058f57600080fd5b5061030a610bc9565b3480156105a457600080fd5b5061030a610bdd565b3480156105b957600080fd5b50610357610c5b565b3480156105ce57600080fd5b5061030a6105dd3660046120ae565b610c75565b3480156105ee57600080fd5b50600954610387906001600160a01b031681565b34801561060e57600080fd5b5061030a61061d3660046120ae565b610ca8565b34801561062e57600080fd5b5061030a610d5c565b34801561064357600080fd5b5061030a610d76565b34801561065857600080fd5b506103b0600e5481565b34801561066e57600080fd5b506005546001600160a01b0316610387565b34801561068c57600080fd5b5061030a61069b366004612068565b610e31565b3480156106ac57600080fd5b50610321610e4f565b3480156106c157600080fd5b506103576106d0366004611ffb565b610e5e565b3480156106e157600080fd5b506103b060145481565b3480156106f757600080fd5b50610357610706366004611ffb565b610f08565b34801561071757600080fd5b506103b0600f5481565b34801561072d57600080fd5b5061035761073c366004612081565b60176020526000908152604090205460ff1681565b34801561075d57600080fd5b5061035761076c366004612068565b610f16565b34801561077d57600080fd5b5060065461035790600160a01b900460ff1681565b34801561079e57600080fd5b5061030a6107ad3660046120ae565b611055565b3480156107be57600080fd5b5061030a6107cd366004612068565b611088565b3480156107de57600080fd5b506103b06107ed3660046120e3565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561082457600080fd5b5061030a61083336600461211c565b6110a3565b34801561084457600080fd5b506103b0600a5481565b34801561085a57600080fd5b5061030a610869366004612068565b6110be565b34801561087a57600080fd5b5061030a610889366004612081565b61111e565b34801561089a57600080fd5b506103b0600b5481565b6108ac6111ab565b600654600160a01b900460ff16156108c357600080fd5b436010556006805460ff60a01b1916600160a01b179055565b6060600380546108eb90612137565b80601f016020809104026020016040519081016040528092919081815260200182805461091790612137565b80156109645780601f1061093957610100808354040283529160200191610964565b820191906000526020600020905b81548152906001019060200180831161094757829003601f168201915b5050505050905090565b60003361097c818585611205565b5060019392505050565b60003361099485828561135d565b61099f8585856113e9565b506001949350505050565b6109b26111ab565b670de0b6b3a76400006103e86109c760025490565b6109d2906001612187565b6109dc91906121a6565b6109e691906121a6565b8110156109f257600080fd5b610a0481670de0b6b3a7640000612187565b600f5550565b3360008181526001602090815260408083206001600160a01b038716845290915281205490919061097c9082908690610a449087906121c8565b611205565b6000610a536111ab565b620186a0610a6060025490565b610a6b906001612187565b610a7591906121a6565b821015610aef5760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527f20302e3030312520746f74616c20737570706c792e000000000000000000000060648201526084015b60405180910390fd5b6064610afa60025490565b610b05906004612187565b610b0f91906121a6565b821115610b845760405162461bcd60e51b815260206004820152603260248201527f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160448201527f6e20342520746f74616c20737570706c792e00000000000000000000000000006064820152608401610ae6565b50600b81905560015b919050565b610b9a6111ab565b6009805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0392909216919091179055565b610bd16111ab565b610bdb6000611aa5565b565b610be56111ab565b30600090815260208190526040812054610bfe90611b04565b6009546040516001600160a01b039091169047905b60006040518083038185875af1925050503d8060008114610c50576040519150601f19603f3d011682016040523d82523d6000602084013e610c55565b606091505b50505050565b6000610c656111ab565b506011805460ff19169055600190565b610c7d6111ab565b6001600160a01b03919091166000908152600d60205260409020805460ff1916911515919091179055565b610cb06111ab565b6006546001600160a01b0390811690831603610d345760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610ae6565b6001600160a01b0382166000908152601760205260409020805460ff19168215151790555050565b6009546040516000916001600160a01b0316904790610c13565b6005546001600160a01b0316331480610d9957506009546001600160a01b031633145b610e0b5760405162461bcd60e51b815260206004820152602b60248201527f43616c6c6572206973206e6f7420746865206f776e6572206f72206d61726b6560448201527f74696e672077616c6c65740000000000000000000000000000000000000000006064820152608401610ae6565b60095430600081815260208190526040902054610bdb926001600160a01b031690611c90565b610e396111ab565b6014819055603c811115610e4c57600080fd5b50565b6060600480546108eb90612137565b3360008181526001602090815260408083206001600160a01b038716845290915281205490919083811015610efb5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f0000000000000000000000000000000000000000000000000000006064820152608401610ae6565b61099f8286868403611205565b60003361097c8185856113e9565b6000610f206111ab565b620186a0610f2d60025490565b610f38906001612187565b610f4291906121a6565b821015610fb75760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527f20302e3030312520746f74616c20737570706c792e00000000000000000000006064820152608401610ae6565b6064610fc260025490565b610fcd906004612187565b610fd791906121a6565b82111561104c5760405162461bcd60e51b815260206004820152603260248201527f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160448201527f6e20342520746f74616c20737570706c792e00000000000000000000000000006064820152608401610ae6565b50600a55600190565b61105d6111ab565b6001600160a01b03919091166000908152601660205260409020805460ff1916911515919091179055565b6110906111ab565b60138190556014811115610e4c57600080fd5b6110ab6111ab565b600c805460ff1916911515919091179055565b6110c66111ab565b670de0b6b3a76400006103e86110db60025490565b6110e6906001612187565b6110f091906121a6565b6110fa91906121a6565b81101561110657600080fd5b61111881670de0b6b3a7640000612187565b600e5550565b6111266111ab565b6001600160a01b0381166111a25760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610ae6565b610e4c81611aa5565b6005546001600160a01b03163314610bdb5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610ae6565b6001600160a01b0383166112805760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610ae6565b6001600160a01b0382166112fc5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f73730000000000000000000000000000000000000000000000000000000000006064820152608401610ae6565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038381166000908152600160209081526040808320938616835292905220546000198114610c5557818110156113dc5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610ae6565b610c558484848403611205565b6001600160a01b03831661144d5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610ae6565b6001600160a01b0382166114af5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610ae6565b806000036114c8576114c383836000611c90565b505050565b60115460ff161561186a576005546001600160a01b038481169116148015906114ff57506005546001600160a01b03838116911614155b80156115155750600854600160a01b900460ff16155b801561152957506001600160a01b03821615155b801561154057506001600160a01b03821661dead14155b1561186a57600654600160a01b900460ff166115e1576001600160a01b03831660009081526016602052604090205460ff168061159557506001600160a01b03821660009081526016602052604090205460ff165b6115e15760405162461bcd60e51b815260206004820152601660248201527f54726164696e67206973206e6f74206163746976652e000000000000000000006044820152606401610ae6565b6001600160a01b03831660009081526017602052604090205460ff16801561162257506001600160a01b0382166000908152600d602052604090205460ff16155b1561171857600e5481111561169f5760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527f6d61785472616e73616374696f6e416d6f756e742e00000000000000000000006064820152608401610ae6565b600f546001600160a01b0383166000908152602081905260409020546116c590836121c8565b11156117135760405162461bcd60e51b815260206004820152601360248201527f4d61782077616c6c6574206578636565646564000000000000000000000000006044820152606401610ae6565b61186a565b6001600160a01b03821660009081526017602052604090205460ff16801561175957506001600160a01b0383166000908152600d602052604090205460ff16155b156117d657600e548111156117135760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560448201527f206d61785472616e73616374696f6e416d6f756e742e000000000000000000006064820152608401610ae6565b6001600160a01b0382166000908152600d602052604090205460ff1661186a57600f546001600160a01b03831660009081526020819052604090205461181c90836121c8565b111561186a5760405162461bcd60e51b815260206004820152601360248201527f4d61782077616c6c6574206578636565646564000000000000000000000000006044820152606401610ae6565b30600090815260208190526040902054600b54811080159081906118905750600c5460ff165b80156118a65750600854600160a01b900460ff16155b80156118cb57506001600160a01b03851660009081526017602052604090205460ff16155b80156118f057506001600160a01b03851660009081526016602052604090205460ff16155b801561191557506001600160a01b03841660009081526016602052604090205460ff16155b15611943576008805460ff60a01b1916600160a01b179055611935611e4b565b6008805460ff60a01b191690555b6008546001600160a01b03861660009081526016602052604090205460ff600160a01b90920482161591168061199157506001600160a01b03851660009081526016602052604090205460ff165b1561199a575060005b60008115611a91576001600160a01b03861660009081526017602052604090205460ff1680156119cc57506000601454115b15611a10576119f160646119eb60145488611f6690919063ffffffff16565b90611f79565b90508060156000828254611a0591906121c8565b90915550611a739050565b6001600160a01b03871660009081526017602052604090205460ff168015611a3a57506000601354115b15611a7357611a5960646119eb60135488611f6690919063ffffffff16565b90508060156000828254611a6d91906121c8565b90915550505b8015611a8457611a84873083611c90565b611a8e81866121e0565b94505b611a9c878787611c90565b50505050505050565b600580546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611b3957611b396121f7565b6001600160a01b03928316602091820292909201810191909152600754604080517fad5c46480000000000000000000000000000000000000000000000000000000081529051919093169263ad5c46489260048083019391928290030181865afa158015611bab573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611bcf919061220d565b81600181518110611be257611be26121f7565b6001600160a01b039283166020918202929092010152600754611c089130911684611205565b6007546040517f791ac9470000000000000000000000000000000000000000000000000000000081526001600160a01b039091169063791ac94790611c5a90859060009086903090429060040161222a565b600060405180830381600087803b158015611c7457600080fd5b505af1158015611c88573d6000803e3d6000fd5b505050505050565b6001600160a01b038316611cf45760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610ae6565b6001600160a01b038216611d565760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610ae6565b6001600160a01b03831660009081526020819052604090205481811015611de55760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e636500000000000000000000000000000000000000000000000000006064820152608401610ae6565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610c55565b306000908152602081905260408120546015549091828103611e6c57505050565b81600003611e7957600191505b600a54436000908152601260205260408120805491611e978361229b565b909155505043600090815260126020526040902054600211611eb95750505050565b80841115611ec5578093505b8347611ed082611b04565b6000611edc4783611f85565b9050808615611f0157611efe876119eb60155485611f6690919063ffffffff16565b90505b600060158190556009546040516001600160a01b039091169147919081818185875af1925050503d8060008114611f54576040519150601f19603f3d011682016040523d82523d6000602084013e611f59565b606091505b5050505050505050505050565b6000611f728284612187565b9392505050565b6000611f7282846121a6565b6000611f7282846121e0565b600060208083528351808285015260005b81811015611fbe57858101830151858201604001528201611fa2565b81811115611fd0576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b0381168114610e4c57600080fd5b6000806040838503121561200e57600080fd5b823561201981611fe6565b946020939093013593505050565b60008060006060848603121561203c57600080fd5b833561204781611fe6565b9250602084013561205781611fe6565b929592945050506040919091013590565b60006020828403121561207a57600080fd5b5035919050565b60006020828403121561209357600080fd5b8135611f7281611fe6565b80358015158114610b8d57600080fd5b600080604083850312156120c157600080fd5b82356120cc81611fe6565b91506120da6020840161209e565b90509250929050565b600080604083850312156120f657600080fd5b823561210181611fe6565b9150602083013561211181611fe6565b809150509250929050565b60006020828403121561212e57600080fd5b611f728261209e565b600181811c9082168061214b57607f821691505b60208210810361216b57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b60008160001904831182151516156121a1576121a1612171565b500290565b6000826121c357634e487b7160e01b600052601260045260246000fd5b500490565b600082198211156121db576121db612171565b500190565b6000828210156121f2576121f2612171565b500390565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561221f57600080fd5b8151611f7281611fe6565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b8181101561227a5784516001600160a01b031683529383019391830191600101612255565b50506001600160a01b03969096166060850152505050608001529392505050565b6000600182016122ad576122ad612171565b506001019056fea2646970667358221220a8b34497ab6b0447c1b5c381c5882ec54b2370015363feee7718307ae33d792c64736f6c634300080f0033
Deployed Bytecode Sourcemap
34643:11535:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37089:155;;;:::i;:::-;;23473:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25824:201;;;;;;;;;;-1:-1:-1;25824:201:0;;;;;:::i;:::-;;:::i;:::-;;;1260:14:1;;1253:22;1235:41;;1223:2;1208:18;25824:201:0;1095:187:1;34792:41:0;;;;;;;;;;-1:-1:-1;34792:41:0;;;;-1:-1:-1;;;;;34792:41:0;;;;;;-1:-1:-1;;;;;1478:55:1;;;1460:74;;1448:2;1433:18;34792:41:0;1287:253:1;24593:108:0;;;;;;;;;;-1:-1:-1;24681:12:0;;24593:108;;;1691:25:1;;;1679:2;1664:18;24593:108:0;1545:177:1;26605:295:0;;;;;;;;;;-1:-1:-1;26605:295:0;;;;;:::i;:::-;;:::i;38659:208::-;;;;;;;;;;-1:-1:-1;38659:208:0;;;;;:::i;:::-;;:::i;24435:93::-;;;;;;;;;;-1:-1:-1;24435:93:0;;24518:2;2515:36:1;;2503:2;2488:18;24435:93:0;2373:184:1;35213:32:0;;;;;;;;;;-1:-1:-1;35213:32:0;;;;;;;;27309:238;;;;;;;;;;-1:-1:-1;27309:238:0;;;;;:::i;:::-;;:::i;37873:465::-;;;;;;;;;;-1:-1:-1;37873:465:0;;;;;:::i;:::-;;:::i;39917:118::-;;;;;;;;;;-1:-1:-1;39917:118:0;;;;;:::i;:::-;;:::i;34715:28::-;;;;;;;;;;-1:-1:-1;34715:28:0;;;;-1:-1:-1;;;;;34715:28:0;;;40043:124;;;;;;;;;;-1:-1:-1;40043:124:0;;;;;:::i;:::-;-1:-1:-1;;;;;40133:26:0;40109:4;40133:26;;;:17;:26;;;;;;;;;40043:124;35053:49;;;;;;;;;;-1:-1:-1;35053:49:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;35308:31;;;;;;;;;;;;;;;;35014:30;;;;;;;;;;-1:-1:-1;35014:30:0;;;;;;;;24764:127;;;;;;;;;;-1:-1:-1;24764:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;24865:18:0;24838:7;24865:18;;;;;;;;;;;;24764:127;2543:103;;;;;;;;;;;;;:::i;45802:210::-;;;;;;;;;;;;;:::i;37256:120::-;;;;;;;;;;;;;:::i;38875:145::-;;;;;;;;;;-1:-1:-1;38875:145:0;;;;;:::i;:::-;;:::i;34904:30::-;;;;;;;;;;-1:-1:-1;34904:30:0;;;;-1:-1:-1;;;;;34904:30:0;;;39529:259;;;;;;;;;;-1:-1:-1;39529:259:0;;;;;:::i;:::-;;:::i;46020:155::-;;;;;;;;;;;;;:::i;45528:266::-;;;;;;;;;;;;;:::i;35109:26::-;;;;;;;;;;;;;;;;1895:87;;;;;;;;;;-1:-1:-1;1968:6:0;;-1:-1:-1;;;;;1968:6:0;1895:87;;39207:174;;;;;;;;;;-1:-1:-1;39207:174:0;;;;;:::i;:::-;;:::i;23692:104::-;;;;;;;;;;;;;:::i;28050:436::-;;;;;;;;;;-1:-1:-1;28050:436:0;;;;;:::i;:::-;;:::i;35346:32::-;;;;;;;;;;;;;;;;25097:193;;;;;;;;;;-1:-1:-1;25097:193:0;;;;;:::i;:::-;;:::i;35142:30::-;;;;;;;;;;;;;;;;35485:57;;;;;;;;;;-1:-1:-1;35485:57:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;37386:479;;;;;;;;;;-1:-1:-1;37386:479:0;;;;;:::i;:::-;;:::i;34750:33::-;;;;;;;;;;-1:-1:-1;34750:33:0;;;;-1:-1:-1;;;34750:33:0;;;;;;39391:130;;;;;;;;;;-1:-1:-1;39391:130:0;;;;;:::i;:::-;;:::i;39028:171::-;;;;;;;;;;-1:-1:-1;39028:171:0;;;;;:::i;:::-;;:::i;25353:151::-;;;;;;;;;;-1:-1:-1;25353:151:0;;;;;:::i;:::-;-1:-1:-1;;;;;25469:18:0;;;25442:7;25469:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;25353:151;38346:97;;;;;;;;;;-1:-1:-1;38346:97:0;;;;;:::i;:::-;;:::i;34941:33::-;;;;;;;;;;;;;;;;38451:200;;;;;;;;;;-1:-1:-1;38451:200:0;;;;;:::i;:::-;;:::i;2801:201::-;;;;;;;;;;-1:-1:-1;2801:201:0;;;;;:::i;:::-;;:::i;34981:26::-;;;;;;;;;;;;;;;;37089:155;1781:13;:11;:13::i;:::-;37152::::1;::::0;-1:-1:-1;;;37152:13:0;::::1;;;37151:14;37143:23;;;::::0;::::1;;37193:12;37179:11;:26:::0;37216:13:::1;:20:::0;;-1:-1:-1;;;;37216:20:0::1;-1:-1:-1::0;;;37216:20:0::1;::::0;;37089:155::o;23473:100::-;23527:13;23560:5;23553:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23473:100;:::o;25824:201::-;25907:4;684:10;25963:32;684:10;25979:7;25988:6;25963:8;:32::i;:::-;-1:-1:-1;26013:4:0;;25824:201;-1:-1:-1;;;25824:201:0:o;26605:295::-;26736:4;684:10;26794:38;26810:4;684:10;26825:6;26794:15;:38::i;:::-;26843:27;26853:4;26859:2;26863:6;26843:9;:27::i;:::-;-1:-1:-1;26888:4:0;;26605:295;-1:-1:-1;;;;26605:295:0:o;38659:208::-;1781:13;:11;:13::i;:::-;38796:4:::1;38788;38767:13;24681:12:::0;;;24593:108;38767:13:::1;:17;::::0;38783:1:::1;38767:17;:::i;:::-;38766:26;;;;:::i;:::-;38765:35;;;;:::i;:::-;38755:6;:45;;38733:78;;;::::0;::::1;;38840:19;:6:::0;38850:8:::1;38840:19;:::i;:::-;38822:15;:37:::0;-1:-1:-1;38659:208:0:o;27309:238::-;684:10;27397:4;25469:18;;;:11;:18;;;;;;;;-1:-1:-1;;;;;25469:27:0;;;;;;;;;;27397:4;;684:10;27453:64;;684:10;;25469:27;;27478:38;;27506:10;;27478:38;:::i;:::-;27453:8;:64::i;37873:465::-;37959:4;1781:13;:11;:13::i;:::-;38038:6:::1;38017:13;24681:12:::0;;;24593:108;38017:13:::1;:17;::::0;38033:1:::1;38017:17;:::i;:::-;38016:28;;;;:::i;:::-;38003:9;:41;;37981:144;;;::::0;-1:-1:-1;;;37981:144:0;;5526:2:1;37981:144:0::1;::::0;::::1;5508:21:1::0;5565:2;5545:18;;;5538:30;5604:34;5584:18;;;5577:62;5675:23;5655:18;;;5648:51;5716:19;;37981:144:0::1;;;;;;;;;38193:3;38172:13;24681:12:::0;;;24593:108;38172:13:::1;:17;::::0;38188:1:::1;38172:17;:::i;:::-;38171:25;;;;:::i;:::-;38158:9;:38;;38136:138;;;::::0;-1:-1:-1;;;38136:138:0;;5948:2:1;38136:138:0::1;::::0;::::1;5930:21:1::0;5987:2;5967:18;;;5960:30;6026:34;6006:18;;;5999:62;6097:20;6077:18;;;6070:48;6135:19;;38136:138:0::1;5746:414:1::0;38136:138:0::1;-1:-1:-1::0;38285:11:0::1;:23:::0;;;38326:4:::1;1805:1;37873:465:::0;;;:::o;39917:118::-;1781:13;:11;:13::i;:::-;40002:15:::1;:25:::0;;-1:-1:-1;;40002:25:0::1;-1:-1:-1::0;;;;;40002:25:0;;;::::1;::::0;;;::::1;::::0;;39917:118::o;2543:103::-;1781:13;:11;:13::i;:::-;2608:30:::1;2635:1;2608:18;:30::i;:::-;2543:103::o:0;45802:210::-;1781:13;:11;:13::i;:::-;45910:4:::1;45852:12;24865:18:::0;;;;;;;;;;;45875:42:::1;::::0;:16:::1;:42::i;:::-;45949:15;::::0;45941:63:::1;::::0;-1:-1:-1;;;;;45949:15:0;;::::1;::::0;45978:21:::1;::::0;45941:63:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;45802:210:0:o;37256:120::-;37308:4;1781:13;:11;:13::i;:::-;-1:-1:-1;37325:13:0::1;:21:::0;;-1:-1:-1;;37325:21:0::1;::::0;;;37256:120;:::o;38875:145::-;1781:13;:11;:13::i;:::-;-1:-1:-1;;;;;38980:25:0;;;::::1;;::::0;;;:17:::1;:25;::::0;;;;:32;;-1:-1:-1;;38980:32:0::1;::::0;::::1;;::::0;;;::::1;::::0;;38875:145::o;39529:259::-;1781:13;:11;:13::i;:::-;39645::::1;::::0;-1:-1:-1;;;;;39645:13:0;;::::1;39637:21:::0;;::::1;::::0;39615:128:::1;;;::::0;-1:-1:-1;;;39615:128:0;;6577:2:1;39615:128:0::1;::::0;::::1;6559:21:1::0;6616:2;6596:18;;;6589:30;6655:34;6635:18;;;6628:62;6726:27;6706:18;;;6699:55;6771:19;;39615:128:0::1;6375:421:1::0;39615:128:0::1;-1:-1:-1::0;;;;;39862:31:0;;;;;;:25;:31;;;;;:39;;-1:-1:-1;;39862:39:0;;;;;;;39529:259;;:::o;46020:155::-;46112:15;;46104:63;;46068:12;;-1:-1:-1;;;;;46112:15:0;;46141:21;;46104:63;6165:205:1;45528:266:0;1968:6;;-1:-1:-1;;;;;1968:6:0;684:10;45587:23;;:58;;-1:-1:-1;45614:15:0;;-1:-1:-1;;;;;45614:15:0;684:10;45614:31;45587:58;45579:114;;;;-1:-1:-1;;;45579:114:0;;7003:2:1;45579:114:0;;;6985:21:1;7042:2;7022:18;;;7015:30;7081:34;7061:18;;;7054:62;7152:13;7132:18;;;7125:41;7183:19;;45579:114:0;6801:407:1;45579:114:0;45743:15;;45728:4;24838:7;24865:18;;;;;;;;;;;45704:82;;-1:-1:-1;;;;;45743:15:0;;45704;:82::i;39207:174::-;1781:13;:11;:13::i;:::-;39297:17:::1;:33:::0;;;39370:2:::1;39349:23:::0;::::1;;39341:32;;;::::0;::::1;;39207:174:::0;:::o;23692:104::-;23748:13;23781:7;23774:14;;;;;:::i;28050:436::-;684:10;28143:4;25469:18;;;:11;:18;;;;;;;;-1:-1:-1;;;;;25469:27:0;;;;;;;;;;28143:4;;684:10;28290:15;28270:16;:35;;28262:85;;;;-1:-1:-1;;;28262:85:0;;7415:2:1;28262:85:0;;;7397:21:1;7454:2;7434:18;;;7427:30;7493:34;7473:18;;;7466:62;7564:7;7544:18;;;7537:35;7589:19;;28262:85:0;7213:401:1;28262:85:0;28383:60;28392:5;28399:7;28427:15;28408:16;:34;28383:8;:60::i;25097:193::-;25176:4;684:10;25232:28;684:10;25249:2;25253:6;25232:9;:28::i;37386:479::-;37479:4;1781:13;:11;:13::i;:::-;37558:6:::1;37537:13;24681:12:::0;;;24593:108;37537:13:::1;:17;::::0;37553:1:::1;37537:17;:::i;:::-;37536:28;;;;:::i;:::-;37523:9;:41;;37501:144;;;::::0;-1:-1:-1;;;37501:144:0;;5526:2:1;37501:144:0::1;::::0;::::1;5508:21:1::0;5565:2;5545:18;;;5538:30;5604:34;5584:18;;;5577:62;5675:23;5655:18;;;5648:51;5716:19;;37501:144:0::1;5324:417:1::0;37501:144:0::1;37713:3;37692:13;24681:12:::0;;;24593:108;37692:13:::1;:17;::::0;37708:1:::1;37692:17;:::i;:::-;37691:25;;;;:::i;:::-;37678:9;:38;;37656:138;;;::::0;-1:-1:-1;;;37656:138:0;;5948:2:1;37656:138:0::1;::::0;::::1;5930:21:1::0;5987:2;5967:18;;;5960:30;6026:34;6006:18;;;5999:62;6097:20;6077:18;;;6070:48;6135:19;;37656:138:0::1;5746:414:1::0;37656:138:0::1;-1:-1:-1::0;37805:18:0::1;:30:::0;37853:4:::1;::::0;37386:479::o;39391:130::-;1781:13;:11;:13::i;:::-;-1:-1:-1;;;;;39476:26:0;;;::::1;;::::0;;;:17:::1;:26;::::0;;;;:37;;-1:-1:-1;;39476:37:0::1;::::0;::::1;;::::0;;;::::1;::::0;;39391:130::o;39028:171::-;1781:13;:11;:13::i;:::-;39117:16:::1;:32:::0;;;39188:2:::1;39168:22:::0;::::1;;39160:31;;;::::0;::::1;38346:97:::0;1781:13;:11;:13::i;:::-;38414:11:::1;:21:::0;;-1:-1:-1;;38414:21:0::1;::::0;::::1;;::::0;;;::::1;::::0;;38346:97::o;38451:200::-;1781:13;:11;:13::i;:::-;38584:4:::1;38576;38555:13;24681:12:::0;;;24593:108;38555:13:::1;:17;::::0;38571:1:::1;38555:17;:::i;:::-;38554:26;;;;:::i;:::-;38553:35;;;;:::i;:::-;38543:6;:45;;38521:78;;;::::0;::::1;;38624:19;:6:::0;38634:8:::1;38624:19;:::i;:::-;38610:11;:33:::0;-1:-1:-1;38451:200:0:o;2801:201::-;1781:13;:11;:13::i;:::-;-1:-1:-1;;;;;2890:22:0;::::1;2882:73;;;::::0;-1:-1:-1;;;2882:73:0;;7821:2:1;2882:73:0::1;::::0;::::1;7803:21:1::0;7860:2;7840:18;;;7833:30;7899:34;7879:18;;;7872:62;7970:8;7950:18;;;7943:36;7996:19;;2882:73:0::1;7619:402:1::0;2882:73:0::1;2966:28;2985:8;2966:18;:28::i;2060:132::-:0;1968:6;;-1:-1:-1;;;;;1968:6:0;684:10;2124:23;2116:68;;;;-1:-1:-1;;;2116:68:0;;8228:2:1;2116:68:0;;;8210:21:1;;;8247:18;;;8240:30;8306:34;8286:18;;;8279:62;8358:18;;2116:68:0;8026:356:1;32059:380:0;-1:-1:-1;;;;;32195:19:0;;32187:68;;;;-1:-1:-1;;;32187:68:0;;8589:2:1;32187:68:0;;;8571:21:1;8628:2;8608:18;;;8601:30;8667:34;8647:18;;;8640:62;8738:6;8718:18;;;8711:34;8762:19;;32187:68:0;8387:400:1;32187:68:0;-1:-1:-1;;;;;32274:21:0;;32266:68;;;;-1:-1:-1;;;32266:68:0;;8994:2:1;32266:68:0;;;8976:21:1;9033:2;9013:18;;;9006:30;9072:34;9052:18;;;9045:62;9143:4;9123:18;;;9116:32;9165:19;;32266:68:0;8792:398:1;32266:68:0;-1:-1:-1;;;;;32347:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;32399:32;;1691:25:1;;;32399:32:0;;1664:18:1;32399:32:0;;;;;;;32059:380;;;:::o;32730:453::-;-1:-1:-1;;;;;25469:18:0;;;32865:24;25469:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;-1:-1:-1;;32932:37:0;;32928:248;;33014:6;32994:16;:26;;32986:68;;;;-1:-1:-1;;;32986:68:0;;9397:2:1;32986:68:0;;;9379:21:1;9436:2;9416:18;;;9409:30;9475:31;9455:18;;;9448:59;9524:18;;32986:68:0;9195:353:1;32986:68:0;33098:51;33107:5;33114:7;33142:6;33123:16;:25;33098:8;:51::i;40177:3243::-;-1:-1:-1;;;;;40309:18:0;;40301:68;;;;-1:-1:-1;;;40301:68:0;;9755:2:1;40301:68:0;;;9737:21:1;9794:2;9774:18;;;9767:30;9833:34;9813:18;;;9806:62;-1:-1:-1;;;9884:18:1;;;9877:35;9929:19;;40301:68:0;9553:401:1;40301:68:0;-1:-1:-1;;;;;40388:16:0;;40380:64;;;;-1:-1:-1;;;40380:64:0;;10161:2:1;40380:64:0;;;10143:21:1;10200:2;10180:18;;;10173:30;10239:34;10219:18;;;10212:62;-1:-1:-1;;;10290:18:1;;;10283:33;10333:19;;40380:64:0;9959:399:1;40380:64:0;40461:6;40471:1;40461:11;40457:93;;40489:28;40505:4;40511:2;40515:1;40489:15;:28::i;:::-;40177:3243;;;:::o;40457:93::-;40566:13;;;;40562:1596;;;1968:6;;-1:-1:-1;;;;;40618:15:0;;;1968:6;;40618:15;;;;:49;;-1:-1:-1;1968:6:0;;-1:-1:-1;;;;;40654:13:0;;;1968:6;;40654:13;;40618:49;:79;;;;-1:-1:-1;40689:8:0;;-1:-1:-1;;;40689:8:0;;;;40688:9;40618:79;:116;;;;-1:-1:-1;;;;;;40718:16:0;;;;40618:116;:158;;;;-1:-1:-1;;;;;;40755:21:0;;40769:6;40755:21;;40618:158;40596:1547;;;40820:13;;-1:-1:-1;;;40820:13:0;;;;40815:219;;-1:-1:-1;;;;;40892:23:0;;;;;;:17;:23;;;;;;;;;:48;;-1:-1:-1;;;;;;40919:21:0;;;;;;:17;:21;;;;;;;;40892:48;40858:156;;;;-1:-1:-1;;;40858:156:0;;10565:2:1;40858:156:0;;;10547:21:1;10604:2;10584:18;;;10577:30;10643:24;10623:18;;;10616:52;10685:18;;40858:156:0;10363:346:1;40858:156:0;-1:-1:-1;;;;;41080:31:0;;;;;;:25;:31;;;;;;;;:78;;;;-1:-1:-1;;;;;;41137:21:0;;;;;;:17;:21;;;;;;;;41136:22;41080:78;41054:1072;;;41245:11;;41235:6;:21;;41201:160;;;;-1:-1:-1;;;41201:160:0;;10916:2:1;41201:160:0;;;10898:21:1;10955:2;10935:18;;;10928:30;10994:34;10974:18;;;10967:62;11065:23;11045:18;;;11038:51;11106:19;;41201:160:0;10714:417:1;41201:160:0;41444:15;;-1:-1:-1;;;;;24865:18:0;;24838:7;24865:18;;;;;;;;;;;41418:22;;:6;:22;:::i;:::-;:41;;41384:146;;;;-1:-1:-1;;;41384:146:0;;11338:2:1;41384:146:0;;;11320:21:1;11377:2;11357:18;;;11350:30;11416:21;11396:18;;;11389:49;11455:18;;41384:146:0;11136:343:1;41384:146:0;41054:1072;;;-1:-1:-1;;;;;41601:29:0;;;;;;:25;:29;;;;;;;;:78;;;;-1:-1:-1;;;;;;41656:23:0;;;;;;:17;:23;;;;;;;;41655:24;41601:78;41575:551;;;41766:11;;41756:6;:21;;41722:161;;;;-1:-1:-1;;;41722:161:0;;11686:2:1;41722:161:0;;;11668:21:1;11725:2;11705:18;;;11698:30;11764:34;11744:18;;;11737:62;11835:24;11815:18;;;11808:52;11877:19;;41722:161:0;11484:418:1;41575:551:0;-1:-1:-1;;;;;41914:21:0;;;;;;:17;:21;;;;;;;;41909:217;;42020:15;;-1:-1:-1;;;;;24865:18:0;;24838:7;24865:18;;;;;;;;;;;41994:22;;:6;:22;:::i;:::-;:41;;41960:146;;;;-1:-1:-1;;;41960:146:0;;11338:2:1;41960:146:0;;;11320:21:1;11377:2;11357:18;;;11350:30;11416:21;11396:18;;;11389:49;11455:18;;41960:146:0;11136:343:1;41960:146:0;42217:4;42168:28;24865:18;;;;;;;;;;;42273:11;;42249:35;;;;;;;42315;;-1:-1:-1;42339:11:0;;;;42315:35;:61;;;;-1:-1:-1;42368:8:0;;-1:-1:-1;;;42368:8:0;;;;42367:9;42315:61;:110;;;;-1:-1:-1;;;;;;42394:31:0;;;;;;:25;:31;;;;;;;;42393:32;42315:110;:151;;;;-1:-1:-1;;;;;;42443:23:0;;;;;;:17;:23;;;;;;;;42442:24;42315:151;:190;;;;-1:-1:-1;;;;;;42484:21:0;;;;;;:17;:21;;;;;;;;42483:22;42315:190;42297:322;;;42532:8;:15;;-1:-1:-1;;;;42532:15:0;-1:-1:-1;;;42532:15:0;;;42564:10;:8;:10::i;:::-;42591:8;:16;;-1:-1:-1;;;;42591:16:0;;;42297:322;42645:8;;-1:-1:-1;;;;;42670:23:0;;42629:12;42670:23;;;:17;:23;;;;;;42645:8;-1:-1:-1;;;42645:8:0;;;;;42644:9;;42670:23;;:48;;-1:-1:-1;;;;;;42697:21:0;;;;;;:17;:21;;;;;;;;42670:48;42666:96;;;-1:-1:-1;42745:5:0;42666:96;42774:12;42805:7;42801:568;;;-1:-1:-1;;;;;42835:29:0;;;;;;:25;:29;;;;;;;;:54;;;;;42888:1;42868:17;;:21;42835:54;42831:389;;;42917:38;42951:3;42917:29;42928:17;;42917:6;:10;;:29;;;;:::i;:::-;:33;;:38::i;:::-;42910:45;;42996:4;42974:18;;:26;;;;;;;:::i;:::-;;;;-1:-1:-1;42831:389:0;;-1:-1:-1;42831:389:0;;-1:-1:-1;;;;;43039:31:0;;;;;;:25;:31;;;;;;;;:55;;;;;43093:1;43074:16;;:20;43039:55;43035:185;;;43122:37;43155:3;43122:28;43133:16;;43122:6;:10;;:28;;;;:::i;:37::-;43115:44;;43200:4;43178:18;;:26;;;;;;;:::i;:::-;;;;-1:-1:-1;;43035:185:0;43240:8;;43236:91;;43269:42;43285:4;43299;43306;43269:15;:42::i;:::-;43343:14;43353:4;43343:14;;:::i;:::-;;;42801:568;43379:33;43395:4;43401:2;43405:6;43379:15;:33::i;:::-;40290:3130;;;;40177:3243;;;:::o;3162:191::-;3255:6;;;-1:-1:-1;;;;;3272:17:0;;;-1:-1:-1;;3272:17:0;;;;;;;3305:40;;3255:6;;;3272:17;3255:6;;3305:40;;3236:16;;3305:40;3225:128;3162:191;:::o;43432:475::-;43522:16;;;43536:1;43522:16;;;;;;;;43498:21;;43522:16;;;;;;;;;;-1:-1:-1;43522:16:0;43498:40;;43567:4;43549;43554:1;43549:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;43549:23:0;;;:7;;;;;;;;;;:23;;;;43593:15;;:22;;;;;;;;:15;;;;;:20;;:22;;;;;43549:7;;43593:22;;;;;:15;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;43583:4;43588:1;43583:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;43583:32:0;;;:7;;;;;;;;;:32;43660:15;;43628:62;;43645:4;;43660:15;43678:11;43628:8;:62::i;:::-;43703:15;;:196;;;;;-1:-1:-1;;;;;43703:15:0;;;;:66;;:196;;43784:11;;43703:15;;43826:4;;43853;;43873:15;;43703:196;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43487:420;43432:475;:::o;28956:830::-;-1:-1:-1;;;;;29087:18:0;;29079:68;;;;-1:-1:-1;;;29079:68:0;;9755:2:1;29079:68:0;;;9737:21:1;9794:2;9774:18;;;9767:30;9833:34;9813:18;;;9806:62;-1:-1:-1;;;9884:18:1;;;9877:35;9929:19;;29079:68:0;9553:401:1;29079:68:0;-1:-1:-1;;;;;29166:16:0;;29158:64;;;;-1:-1:-1;;;29158:64:0;;10161:2:1;29158:64:0;;;10143:21:1;10200:2;10180:18;;;10173:30;10239:34;10219:18;;;10212:62;-1:-1:-1;;;10290:18:1;;;10283:33;10333:19;;29158:64:0;9959:399:1;29158:64:0;-1:-1:-1;;;;;29306:15:0;;29284:19;29306:15;;;;;;;;;;;29340:21;;;;29332:72;;;;-1:-1:-1;;;29332:72:0;;13904:2:1;29332:72:0;;;13886:21:1;13943:2;13923:18;;;13916:30;13982:34;13962:18;;;13955:62;14053:8;14033:18;;;14026:36;14079:19;;29332:72:0;13702:402:1;29332:72:0;-1:-1:-1;;;;;29440:15:0;;;:9;:15;;;;;;;;;;;29458:20;;;29440:38;;29650:13;;;;;;;;;;:23;;;;;;29702:26;;1691:25:1;;;29650:13:0;;29702:26;;1664:18:1;29702:26:0;;;;;;;29741:37;40177:3243;44293:1227;44378:4;44334:23;24865:18;;;;;;;;;;;44423;;24865;;44481:20;;;44477:59;;44518:7;;;44293:1227::o;44477:59::-;44550:17;44571:1;44550:22;44546:76;;44609:1;44589:21;;44546:76;44657:18;;44698:12;44634:20;44686:25;;;:11;:25;;;;;:27;;;;;;:::i;:::-;;;;-1:-1:-1;;44739:12:0;44727:25;;;;:11;:25;;;;;;44756:1;-1:-1:-1;44724:68:0;;44774:7;;;;44293:1227::o;44724:68::-;44824:12;44806:15;:30;44802:93;;;44871:12;44853:30;;44802:93;44936:15;44992:21;45026:36;44936:15;45026:16;:36::i;:::-;45075:18;45096:44;:21;45122:17;45096:25;:44::i;:::-;45075:65;-1:-1:-1;45075:65:0;45202:21;;45198:161;;45258:89;45315:17;45258:34;45273:18;;45258:10;:14;;:34;;;;:::i;:89::-;45240:107;;45198:161;45390:1;45369:18;:22;;;45425:15;;45417:95;;-1:-1:-1;;;;;45425:15:0;;;;45472:21;;45417:95;;45390:1;45417:95;45472:21;45425:15;45417:95;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;44293:1227:0:o;9511:98::-;9569:7;9596:5;9600:1;9596;:5;:::i;:::-;9589:12;9511:98;-1:-1:-1;;;9511:98:0:o;9910:::-;9968:7;9995:5;9999:1;9995;:5;:::i;9154:98::-;9212:7;9239:5;9243:1;9239;:5;:::i;14:597:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;452:6;449:1;446:13;443:91;;;522:1;517:2;508:6;497:9;493:22;489:31;482:42;443:91;-1:-1:-1;595:2:1;574:15;-1:-1:-1;;570:29:1;555:45;;;;602:2;551:54;;14:597;-1:-1:-1;;;14:597:1:o;616:154::-;-1:-1:-1;;;;;695:5:1;691:54;684:5;681:65;671:93;;760:1;757;750:12;775:315;843:6;851;904:2;892:9;883:7;879:23;875:32;872:52;;;920:1;917;910:12;872:52;959:9;946:23;978:31;1003:5;978:31;:::i;:::-;1028:5;1080:2;1065:18;;;;1052:32;;-1:-1:-1;;;775:315:1:o;1727:456::-;1804:6;1812;1820;1873:2;1861:9;1852:7;1848:23;1844:32;1841:52;;;1889:1;1886;1879:12;1841:52;1928:9;1915:23;1947:31;1972:5;1947:31;:::i;:::-;1997:5;-1:-1:-1;2054:2:1;2039:18;;2026:32;2067:33;2026:32;2067:33;:::i;:::-;1727:456;;2119:7;;-1:-1:-1;;;2173:2:1;2158:18;;;;2145:32;;1727:456::o;2188:180::-;2247:6;2300:2;2288:9;2279:7;2275:23;2271:32;2268:52;;;2316:1;2313;2306:12;2268:52;-1:-1:-1;2339:23:1;;2188:180;-1:-1:-1;2188:180:1:o;2562:247::-;2621:6;2674:2;2662:9;2653:7;2649:23;2645:32;2642:52;;;2690:1;2687;2680:12;2642:52;2729:9;2716:23;2748:31;2773:5;2748:31;:::i;3045:160::-;3110:20;;3166:13;;3159:21;3149:32;;3139:60;;3195:1;3192;3185:12;3210:315;3275:6;3283;3336:2;3324:9;3315:7;3311:23;3307:32;3304:52;;;3352:1;3349;3342:12;3304:52;3391:9;3378:23;3410:31;3435:5;3410:31;:::i;:::-;3460:5;-1:-1:-1;3484:35:1;3515:2;3500:18;;3484:35;:::i;:::-;3474:45;;3210:315;;;;;:::o;3530:388::-;3598:6;3606;3659:2;3647:9;3638:7;3634:23;3630:32;3627:52;;;3675:1;3672;3665:12;3627:52;3714:9;3701:23;3733:31;3758:5;3733:31;:::i;:::-;3783:5;-1:-1:-1;3840:2:1;3825:18;;3812:32;3853:33;3812:32;3853:33;:::i;:::-;3905:7;3895:17;;;3530:388;;;;;:::o;3923:180::-;3979:6;4032:2;4020:9;4011:7;4007:23;4003:32;4000:52;;;4048:1;4045;4038:12;4000:52;4071:26;4087:9;4071:26;:::i;4108:437::-;4187:1;4183:12;;;;4230;;;4251:61;;4305:4;4297:6;4293:17;4283:27;;4251:61;4358:2;4350:6;4347:14;4327:18;4324:38;4321:218;;-1:-1:-1;;;4392:1:1;4385:88;4496:4;4493:1;4486:15;4524:4;4521:1;4514:15;4321:218;;4108:437;;;:::o;4550:184::-;-1:-1:-1;;;4599:1:1;4592:88;4699:4;4696:1;4689:15;4723:4;4720:1;4713:15;4739:168;4779:7;4845:1;4841;4837:6;4833:14;4830:1;4827:21;4822:1;4815:9;4808:17;4804:45;4801:71;;;4852:18;;:::i;:::-;-1:-1:-1;4892:9:1;;4739:168::o;4912:274::-;4952:1;4978;4968:189;;-1:-1:-1;;;5010:1:1;5003:88;5114:4;5111:1;5104:15;5142:4;5139:1;5132:15;4968:189;-1:-1:-1;5171:9:1;;4912:274::o;5191:128::-;5231:3;5262:1;5258:6;5255:1;5252:13;5249:39;;;5268:18;;:::i;:::-;-1:-1:-1;5304:9:1;;5191:128::o;11907:125::-;11947:4;11975:1;11972;11969:8;11966:34;;;11980:18;;:::i;:::-;-1:-1:-1;12017:9:1;;11907:125::o;12226:184::-;-1:-1:-1;;;12275:1:1;12268:88;12375:4;12372:1;12365:15;12399:4;12396:1;12389:15;12415:251;12485:6;12538:2;12526:9;12517:7;12513:23;12509:32;12506:52;;;12554:1;12551;12544:12;12506:52;12586:9;12580:16;12605:31;12630:5;12605:31;:::i;12671:1026::-;12933:4;12981:3;12970:9;12966:19;13012:6;13001:9;12994:25;13038:2;13076:6;13071:2;13060:9;13056:18;13049:34;13119:3;13114:2;13103:9;13099:18;13092:31;13143:6;13178;13172:13;13209:6;13201;13194:22;13247:3;13236:9;13232:19;13225:26;;13286:2;13278:6;13274:15;13260:29;;13307:1;13317:218;13331:6;13328:1;13325:13;13317:218;;;13396:13;;-1:-1:-1;;;;;13392:62:1;13380:75;;13510:15;;;;13475:12;;;;13353:1;13346:9;13317:218;;;-1:-1:-1;;;;;;;13591:55:1;;;;13586:2;13571:18;;13564:83;-1:-1:-1;;;13678:3:1;13663:19;13656:35;13552:3;12671:1026;-1:-1:-1;;;12671:1026:1:o;14109:135::-;14148:3;14169:17;;;14166:43;;14189:18;;:::i;:::-;-1:-1:-1;14236:1:1;14225:13;;14109:135::o
Swarm Source
ipfs://a8b34497ab6b0447c1b5c381c5882ec54b2370015363feee7718307ae33d792c
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.