More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 133 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Approve | 80924536 | 144 days ago | IN | 0 FTM | 0.00056562 | ||||
Approve | 80924528 | 144 days ago | IN | 0 FTM | 0.00056562 | ||||
Approve | 73091084 | 286 days ago | IN | 0 FTM | 0.00180815 | ||||
Approve | 73074976 | 286 days ago | IN | 0 FTM | 0.00149338 | ||||
Approve | 72089451 | 304 days ago | IN | 0 FTM | 0.08655833 | ||||
Approve | 70216275 | 335 days ago | IN | 0 FTM | 0.00924147 | ||||
Approve | 68839539 | 370 days ago | IN | 0 FTM | 0.0012273 | ||||
Approve | 66334738 | 436 days ago | IN | 0 FTM | 0.00250347 | ||||
Approve | 65910955 | 447 days ago | IN | 0 FTM | 0.00218955 | ||||
Approve | 63921126 | 482 days ago | IN | 0 FTM | 0.00247224 | ||||
Approve | 62481464 | 507 days ago | IN | 0 FTM | 0.00397914 | ||||
Approve | 62158810 | 511 days ago | IN | 0 FTM | 0.00401852 | ||||
Approve | 62054631 | 513 days ago | IN | 0 FTM | 0.01111337 | ||||
Approve | 59517649 | 544 days ago | IN | 0 FTM | 0.00150213 | ||||
Approve | 59517634 | 544 days ago | IN | 0 FTM | 0.001502 | ||||
Approve | 59475869 | 545 days ago | IN | 0 FTM | 0.00159744 | ||||
Approve | 57541046 | 571 days ago | IN | 0 FTM | 0.00153977 | ||||
Approve | 57541039 | 571 days ago | IN | 0 FTM | 0.00269033 | ||||
Approve | 55783241 | 599 days ago | IN | 0 FTM | 0.00867275 | ||||
Approve | 55591225 | 601 days ago | IN | 0 FTM | 0.00152799 | ||||
Approve | 55320779 | 605 days ago | IN | 0 FTM | 0.003329 | ||||
Approve | 54179814 | 622 days ago | IN | 0 FTM | 0.00188258 | ||||
Approve | 54064303 | 624 days ago | IN | 0 FTM | 0.00295644 | ||||
Approve | 53448731 | 635 days ago | IN | 0 FTM | 0.00175042 | ||||
Approve | 51974628 | 668 days ago | IN | 0 FTM | 0.00187943 |
Latest 1 internal transaction
Parent Transaction Hash | Block | From | To | |||
---|---|---|---|---|---|---|
34795720 | 920 days ago | Contract Creation | 0 FTM |
Loading...
Loading
Similar Match Source Code This contract matches the deployed Bytecode of the Source Code for Contract 0x0a83766B...34e51CF8A The constructor portion of the code might be different and could alter the actual behaviour of the contract
Contract Name:
MakiswapPair
Compiler Version
v0.5.16+commit.9c3226ce
Contract Source Code (Solidity)
/** *Submitted for verification at ftmscan.com on 2022-06-03 */ /** *Submitted for verification at FtmScan.com on 2022-02-23 */ // SPDX-License-Identifier: MIT // File: makiswap-core/contracts/libraries/UQ112x112.sol pragma solidity >=0.5.16; // a library for handling binary fixed point numbers (https://en.wikipedia.org/wiki/Q_(number_format)) // range: [0, 2**112 - 1] // resolution: 1 / 2**112 library UQ112x112 { uint224 constant Q112 = 2**112; // encode a uint112 as a UQ112x112 function encode(uint112 y) internal pure returns (uint224 z) { z = uint224(y) * Q112; // never overflows } // divide a UQ112x112 by a uint112, returning a UQ112x112 function uqdiv(uint224 x, uint112 y) internal pure returns (uint224 z) { z = x / uint224(y); } } // File: contracts/exchange/interfaces/IERC20.sol pragma solidity >=0.5.0; interface IERC20 { event Approval(address indexed owner, address indexed spender, uint value); event Transfer(address indexed from, address indexed to, uint value); function name() external view returns (string memory); function symbol() external view returns (string memory); function decimals() external view 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); } // File: contracts/exchange/interfaces/IMakiswapPair.sol pragma solidity >=0.5.0; interface IMakiswapPair { 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; } // File: contracts/exchange/interfaces/IMakiswapCallee.sol pragma solidity >=0.5.0; interface IMakiswapCallee { function makiswapCall( address sender, uint amount0, uint amount1, bytes calldata data) external; } // File: contracts/exchange/libraries/SafeMath.sol pragma solidity >=0.5.0 <0.8.0; /** * @dev Wrappers over Solidity's arithmetic operations with added overflow * checks. * * Arithmetic operations in Solidity wrap on overflow. This can easily result * in bugs, because programmers usually assume that an overflow raises an * error, which is the standard behavior in high level programming languages. * `SafeMath` restores this intuition by reverting the transaction when an * operation overflows. * * Using this library instead of the unchecked operations eliminates an entire * class of bugs, so it's recommended to use it always. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, 'SafeMath: addition overflow'); return c; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return sub(a, b, 'SafeMath: subtraction overflow'); } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { require(b <= a, errorMessage); uint256 c = a - b; return c; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) { return 0; } uint256 c = a * b; require(c / a == b, 'SafeMath: multiplication overflow'); return c; } /** * @dev Returns the integer division of two unsigned integers. Reverts on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return div(a, b, 'SafeMath: division by zero'); } /** * @dev Returns the integer division of two unsigned integers. Reverts with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { require(b > 0, errorMessage); uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return mod(a, b, 'SafeMath: modulo by zero'); } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts with custom message when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { require(b != 0, errorMessage); return a % b; } function min(uint256 x, uint256 y) internal pure returns (uint256 z) { z = x < y ? x : y; } // babylonian method (https://en.wikipedia.org/wiki/Methods_of_computing_square_roots#Babylonian_method) function sqrt(uint256 y) internal pure returns (uint256 z) { if (y > 3) { z = y; uint256 x = y / 2 + 1; while (x < z) { z = x; x = (y / x + x) / 2; } } else if (y != 0) { z = 1; } } } // File: contracts/exchange/interfaces/IMakiswapERC20.sol pragma solidity >=0.5.0; interface IMakiswapERC20 { 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; } // File: contracts/exchange/MakiswapERC20.sol pragma solidity >=0.5.16; contract MakiswapERC20 is IMakiswapERC20 { using SafeMath for uint; string public constant name = "Makiswap LP"; string public constant symbol = "MAKI-LP"; uint8 public constant decimals = 18; uint public totalSupply; mapping(address => uint) public balanceOf; mapping(address => mapping(address => uint)) public allowance; bytes32 public DOMAIN_SEPARATOR; // keccak256("Permit(address owner,address spender,uint256 value,uint256 nonce,uint256 deadline)"); bytes32 public constant PERMIT_TYPEHASH = 0x6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c9; mapping(address => uint) public nonces; event Approval(address indexed owner, address indexed spender, uint value); event Transfer(address indexed from, address indexed to, uint value); constructor() public { uint chainId; assembly { chainId := chainid } DOMAIN_SEPARATOR = keccak256( abi.encode( keccak256('EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)'), keccak256(bytes(name)), keccak256(bytes('1')), chainId, address(this) ) ); } function _mint(address to, uint value) internal { totalSupply = totalSupply.add(value); balanceOf[to] = balanceOf[to].add(value); emit Transfer(address(0), to, value); } function _burn(address from, uint value) internal { balanceOf[from] = balanceOf[from].sub(value); totalSupply = totalSupply.sub(value); emit Transfer(from, address(0), value); } function _approve(address owner, address spender, uint value) private { allowance[owner][spender] = value; emit Approval(owner, spender, value); } function _transfer(address from, address to, uint value) private { balanceOf[from] = balanceOf[from].sub(value); balanceOf[to] = balanceOf[to].add(value); emit Transfer(from, to, value); } function approve(address spender, uint value) external returns (bool) { _approve(msg.sender, spender, value); return true; } function transfer(address to, uint value) external returns (bool) { _transfer(msg.sender, to, value); return true; } function transferFrom(address from, address to, uint value) external returns (bool) { if (allowance[from][msg.sender] != uint(-1)) { allowance[from][msg.sender] = allowance[from][msg.sender].sub(value); } _transfer(from, to, value); return true; } function permit(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s) external { require(deadline >= block.timestamp, 'Makiswap: EXPIRED'); bytes32 digest = keccak256( abi.encodePacked( '\x19\x01', DOMAIN_SEPARATOR, keccak256(abi.encode(PERMIT_TYPEHASH, owner, spender, value, nonces[owner]++, deadline)) ) ); address recoveredAddress = ecrecover(digest, v, r, s); require(recoveredAddress != address(0) && recoveredAddress == owner, 'Makiswap: INVALID_SIGNATURE'); _approve(owner, spender, value); } } // File: contracts/exchange/interfaces/IMakiswapFactory.sol pragma solidity >=0.5.0; interface IMakiswapFactory { event PairCreated(address indexed token0, address indexed token1, address pair, uint); event SetFeeTo(address indexed user, address indexed _feeTo); event SetMigrator(address indexed user, address indexed _migrator); event FeeToSetter(address indexed user, address indexed _feeToSetter); function feeTo() external view returns (address _feeTo); function feeToSetter() external view returns (address _feeToSetter); function migrator() external view returns (address _migrator); function getPair(address tokenA, address tokenB) external view returns (address pair); function createPair(address tokenA, address tokenB) external returns (address pair); function setMigrator(address) external; function setFeeTo(address) external; function setFeeToSetter(address) external; } // File: contracts/exchange/MakiswapPair.sol pragma solidity >=0.5.16; interface IMigrator { // Return the desired amount of liquidity token that the migrator wants. function desiredLiquidity() external view returns (uint256); } contract MakiswapPair is IMakiswapPair, MakiswapERC20 { using SafeMath for uint; using UQ112x112 for uint224; uint256 public constant MINIMUM_LIQUIDITY = 10**3; bytes4 private constant SELECTOR = bytes4(keccak256(bytes("transfer(address,uint256)"))); address public factory; address public token0; address public token1; uint112 private reserve0; // uses single storage slot, accessible via getReserves uint112 private reserve1; // uses single storage slot, accessible via getReserves uint32 private blockTimestampLast; // uses single storage slot, accessible via getReserves uint256 public price0CumulativeLast; uint256 public price1CumulativeLast; uint256 public kLast; // reserve0 * reserve1, as of immediately after the most recent liquidity event uint256 private unlocked = 1; modifier lock() { require(unlocked == 1, "Makiswap: LOCKED"); unlocked = 0; _; unlocked = 1; } function getReserves() public view returns ( uint112 _reserve0, uint112 _reserve1, uint32 _blockTimestampLast ) { _reserve0 = reserve0; _reserve1 = reserve1; _blockTimestampLast = blockTimestampLast; } function _safeTransfer( address token, address to, uint256 value ) private { (bool success, bytes memory data) = token.call(abi.encodeWithSelector(SELECTOR, to, value)); require( success && (data.length == 0 || abi.decode(data, (bool))), "Makiswap: TRANSFER_FAILED" ); } event Mint(address indexed sender, uint256 amount0, uint256 amount1); event Burn( address indexed sender, uint256 amount0, uint256 amount1, address indexed to ); event Swap( address indexed sender, uint256 amount0In, uint256 amount1In, uint256 amount0Out, uint256 amount1Out, address indexed to ); event Sync(uint112 reserve0, uint112 reserve1); constructor() public { factory = msg.sender; } // called once by the factory at time of deployment function initialize(address _token0, address _token1) external { require(msg.sender == factory, "Makiswap: FORBIDDEN"); // sufficient check token0 = _token0; token1 = _token1; } // update reserves and, on the first call per block, price accumulators function _update( uint256 balance0, uint256 balance1, uint112 _reserve0, uint112 _reserve1 ) private { require( balance0 <= uint112(-1) && balance1 <= uint112(-1), "Makiswap: OVERFLOW" ); uint32 blockTimestamp = uint32(block.timestamp % 2**32); uint32 timeElapsed = blockTimestamp - blockTimestampLast; // overflow is desired if (timeElapsed > 0 && _reserve0 != 0 && _reserve1 != 0) { // * never overflows, and + overflow is desired price0CumulativeLast += uint256(UQ112x112.encode(_reserve1).uqdiv(_reserve0)) * timeElapsed; price1CumulativeLast += uint256(UQ112x112.encode(_reserve0).uqdiv(_reserve1)) * timeElapsed; } reserve0 = uint112(balance0); reserve1 = uint112(balance1); blockTimestampLast = blockTimestamp; emit Sync(reserve0, reserve1); } // if fee is on, mint liquidity equivalent to 1/6th of the growth in sqrt(k) function _mintFee(uint112 _reserve0, uint112 _reserve1) private returns (bool feeOn) { address feeTo = IMakiswapFactory(factory).feeTo(); feeOn = feeTo != address(0); uint256 _kLast = kLast; // gas savings if (feeOn) { if (_kLast != 0) { uint256 rootK = SafeMath.sqrt(uint256(_reserve0).mul(_reserve1)); uint256 rootKLast = SafeMath.sqrt(_kLast); if (rootK > rootKLast) { uint256 numerator = totalSupply.mul(rootK.sub(rootKLast)); uint256 denominator = rootK.mul(3).add(rootKLast); uint256 liquidity = numerator / denominator; if (liquidity > 0) _mint(feeTo, liquidity); } } } else if (_kLast != 0) { kLast = 0; } } // this low-level function should be called from a contract which performs important safety checks function mint(address to) external lock returns (uint256 liquidity) { (uint112 _reserve0, uint112 _reserve1, ) = getReserves(); // gas savings uint256 balance0 = IERC20(token0).balanceOf(address(this)); uint256 balance1 = IERC20(token1).balanceOf(address(this)); uint256 amount0 = balance0.sub(_reserve0); uint256 amount1 = balance1.sub(_reserve1); bool feeOn = _mintFee(_reserve0, _reserve1); uint256 _totalSupply = totalSupply; // gas savings, must be defined here since totalSupply can update in _mintFee if (_totalSupply == 0) { liquidity = SafeMath.sqrt(amount0.mul(amount1)).sub(MINIMUM_LIQUIDITY); _mint(address(0), MINIMUM_LIQUIDITY); // permanently lock the first MINIMUM_LIQUIDITY tokens } else { liquidity = SafeMath.min( amount0.mul(_totalSupply) / _reserve0, amount1.mul(_totalSupply) / _reserve1 ); } require(liquidity > 0, "Makiswap: INSUFFICIENT_LIQUIDITY_MINTED"); _mint(to, liquidity); _update(balance0, balance1, _reserve0, _reserve1); if (feeOn) kLast = uint256(reserve0).mul(reserve1); // reserve0 and reserve1 are up-to-date emit Mint(msg.sender, amount0, amount1); } // this low-level function should be called from a contract which performs important safety checks function burn(address to) external lock returns (uint256 amount0, uint256 amount1) { require(totalSupply != 0, "The value of totalSupply must not be 0"); (uint112 _reserve0, uint112 _reserve1, ) = getReserves(); // gas savings address _token0 = token0; // gas savings address _token1 = token1; // gas savings uint256 balance0 = IERC20(_token0).balanceOf(address(this)); uint256 balance1 = IERC20(_token1).balanceOf(address(this)); uint256 liquidity = balanceOf[address(this)]; bool feeOn = _mintFee(_reserve0, _reserve1); uint256 _totalSupply = totalSupply; // gas savings, must be defined here since totalSupply can update in _mintFee amount0 = liquidity.mul(balance0) / _totalSupply; // using balances ensures pro-rata distribution amount1 = liquidity.mul(balance1) / _totalSupply; // using balances ensures pro-rata distribution require( amount0 > 0 && amount1 > 0, "Makiswap: INSUFFICIENT_LIQUIDITY_BURNED" ); _burn(address(this), liquidity); _safeTransfer(_token0, to, amount0); _safeTransfer(_token1, to, amount1); balance0 = IERC20(_token0).balanceOf(address(this)); balance1 = IERC20(_token1).balanceOf(address(this)); _update(balance0, balance1, _reserve0, _reserve1); if (feeOn) kLast = uint256(reserve0).mul(reserve1); // reserve0 and reserve1 are up-to-date emit Burn(msg.sender, amount0, amount1, to); } // this low-level function should be called from a contract which performs important safety checks function swap( uint256 amount0Out, uint256 amount1Out, address to, bytes calldata data ) external lock { require( amount0Out > 0 || amount1Out > 0, "Makiswap: INSUFFICIENT_OUTPUT_AMOUNT" ); (uint112 _reserve0, uint112 _reserve1, ) = getReserves(); // gas savings require( amount0Out < _reserve0 && amount1Out < _reserve1, "Makiswap: INSUFFICIENT_LIQUIDITY" ); uint256 balance0; uint256 balance1; { // scope for _token{0,1}, avoids stack too deep errors address _token0 = token0; address _token1 = token1; require(to != _token0 && to != _token1, "Makiswap: INVALID_TO"); if (amount0Out > 0) _safeTransfer(_token0, to, amount0Out); // optimistically transfer tokens if (amount1Out > 0) _safeTransfer(_token1, to, amount1Out); // optimistically transfer tokens if (data.length > 0) IMakiswapCallee(to).makiswapCall( msg.sender, amount0Out, amount1Out, data ); balance0 = IERC20(_token0).balanceOf(address(this)); balance1 = IERC20(_token1).balanceOf(address(this)); } uint256 amount0In = balance0 > _reserve0 - amount0Out ? balance0 - (_reserve0 - amount0Out) : 0; uint256 amount1In = balance1 > _reserve1 - amount1Out ? balance1 - (_reserve1 - amount1Out) : 0; require( amount0In > 0 || amount1In > 0, "Makiswap: INSUFFICIENT_INPUT_AMOUNT" ); { // scope for reserve{0,1}Adjusted, avoids stack too deep errors uint256 balance0Adjusted = balance0.mul(1000).sub(amount0In.mul(2)); uint256 balance1Adjusted = balance1.mul(1000).sub(amount1In.mul(2)); require( balance0Adjusted.mul(balance1Adjusted) >= uint256(_reserve0).mul(_reserve1).mul(1000**2), "Makiswap: K" ); } _update(balance0, balance1, _reserve0, _reserve1); emit Swap(msg.sender, amount0In, amount1In, amount0Out, amount1Out, to); } // force balances to match reserves function skim(address to) external lock { address _token0 = token0; // gas savings address _token1 = token1; // gas savings _safeTransfer( _token0, to, IERC20(_token0).balanceOf(address(this)).sub(reserve0) ); _safeTransfer( _token1, to, IERC20(_token1).balanceOf(address(this)).sub(reserve1) ); } // force reserves to match balances function sync() external lock { _update( IERC20(token0).balanceOf(address(this)), IERC20(token1).balanceOf(address(this)), reserve0, reserve1 ); } } // File: contracts/exchange/MakiswapFactory.sol pragma solidity >=0.5.16; contract MakiswapFactory is IMakiswapFactory { bytes32 public constant INIT_CODE_PAIR_HASH = keccak256(abi.encodePacked(type(MakiswapPair).creationCode)); address public feeTo; address public feeToSetter = msg.sender; address public migrator; uint256 public totalPairs = 0; address[] public allPairs; mapping(address => mapping(address => address)) public getPair; event PairCreated(address indexed token0, address indexed token1, address pair, uint); event SetFeeTo(address indexed user, address indexed feeTo); event SetMigrator(address indexed user, address indexed migrator); event FeeToSetter(address indexed user, address indexed feeToSetter); function createPair(address tokenA, address tokenB) external returns (address pair) { require(tokenA != tokenB, 'Makiswap: IDENTICAL_ADDRESSES'); (address token0, address token1) = tokenA < tokenB ? (tokenA, tokenB) : (tokenB, tokenA); require(token0 != address(0), 'Makiswap: ZERO_ADDRESS'); require(getPair[token0][token1] == address(0), 'Makiswap: PAIR_EXISTS'); // single check is sufficient bytes memory bytecode = type(MakiswapPair).creationCode; bytes32 salt = keccak256(abi.encodePacked(token0, token1)); assembly { pair := create2(0, add(bytecode, 32), mload(bytecode), salt) } MakiswapPair(pair).initialize(token0, token1); getPair[token0][token1] = pair; getPair[token1][token0] = pair; // populate mapping in the reverse direction allPairs.push(pair); totalPairs++; emit PairCreated(token0, token1, pair, totalPairs); } function setFeeTo(address _feeTo) external { require(msg.sender == feeToSetter, 'Makiswap: FORBIDDEN'); feeTo = _feeTo; emit SetFeeTo(msg.sender, feeTo); } function setMigrator(address _migrator) external { require(msg.sender == feeToSetter, 'Makiswap: FORBIDDEN'); migrator = _migrator; emit SetMigrator(msg.sender, migrator); } function setFeeToSetter(address _feeToSetter) external { require(msg.sender == feeToSetter, 'Makiswap: FORBIDDEN'); feeToSetter = _feeToSetter; emit FeeToSetter(msg.sender, feeToSetter); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"payable":false,"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":"sender","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount0","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount1","type":"uint256"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"Burn","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sender","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount0","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount1","type":"uint256"}],"name":"Mint","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sender","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount0In","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount1In","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount0Out","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount1Out","type":"uint256"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"Swap","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint112","name":"reserve0","type":"uint112"},{"indexed":false,"internalType":"uint112","name":"reserve1","type":"uint112"}],"name":"Sync","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"},{"constant":true,"inputs":[],"name":"DOMAIN_SEPARATOR","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"MINIMUM_LIQUIDITY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"PERMIT_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"to","type":"address"}],"name":"burn","outputs":[{"internalType":"uint256","name":"amount0","type":"uint256"},{"internalType":"uint256","name":"amount1","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"factory","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"getReserves","outputs":[{"internalType":"uint112","name":"_reserve0","type":"uint112"},{"internalType":"uint112","name":"_reserve1","type":"uint112"},{"internalType":"uint32","name":"_blockTimestampLast","type":"uint32"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_token0","type":"address"},{"internalType":"address","name":"_token1","type":"address"}],"name":"initialize","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"kLast","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"to","type":"address"}],"name":"mint","outputs":[{"internalType":"uint256","name":"liquidity","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"nonces","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"uint256","name":"deadline","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"permit","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"price0CumulativeLast","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"price1CumulativeLast","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"to","type":"address"}],"name":"skim","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"amount0Out","type":"uint256"},{"internalType":"uint256","name":"amount1Out","type":"uint256"},{"internalType":"address","name":"to","type":"address"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"swap","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"sync","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"token0","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"token1","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"}]
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101a95760003560e01c80636a627842116100f9578063ba9a7a5611610097578063d21220a711610071578063d21220a7146108c4578063d505accf1461090e578063dd62ed3e146109a7578063fff6cae914610a1f576101a9565b8063ba9a7a5614610818578063bc25cf7714610836578063c45a01551461087a576101a9565b80637ecebe00116100d35780637ecebe001461067857806389afcb44146106d057806395d89b411461072f578063a9059cbb146107b2576101a9565b80636a627842146105aa57806370a08231146106025780637464fc3d1461065a576101a9565b806323b872dd116101665780633644e515116101405780633644e515146104ec578063485cc9551461050a5780635909c0d51461056e5780635a3d54931461058c576101a9565b806323b872dd1461042457806330adf81f146104aa578063313ce567146104c8576101a9565b8063022c0d9f146101ae57806306fdde031461025b5780630902f1ac146102de578063095ea7b3146103565780630dfe1681146103bc57806318160ddd14610406575b600080fd5b610259600480360360808110156101c457600080fd5b810190808035906020019092919080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019064010000000081111561021557600080fd5b82018360208201111561022757600080fd5b8035906020019184600183028401116401000000008311171561024957600080fd5b9091929391929390505050610a29565b005b610263611233565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156102a3578082015181840152602081019050610288565b50505050905090810190601f1680156102d05780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102e661126c565b60405180846dffffffffffffffffffffffffffff166dffffffffffffffffffffffffffff168152602001836dffffffffffffffffffffffffffff166dffffffffffffffffffffffffffff1681526020018263ffffffff1663ffffffff168152602001935050505060405180910390f35b6103a26004803603604081101561036c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506112c9565b604051808215151515815260200191505060405180910390f35b6103c46112e0565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b61040e611306565b6040518082815260200191505060405180910390f35b6104906004803603606081101561043a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061130c565b604051808215151515815260200191505060405180910390f35b6104b26114d7565b6040518082815260200191505060405180910390f35b6104d06114fe565b604051808260ff1660ff16815260200191505060405180910390f35b6104f4611503565b6040518082815260200191505060405180910390f35b61056c6004803603604081101561052057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611509565b005b610576611652565b6040518082815260200191505060405180910390f35b610594611658565b6040518082815260200191505060405180910390f35b6105ec600480360360208110156105c057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061165e565b6040518082815260200191505060405180910390f35b6106446004803603602081101561061857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611b0f565b6040518082815260200191505060405180910390f35b610662611b27565b6040518082815260200191505060405180910390f35b6106ba6004803603602081101561068e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611b2d565b6040518082815260200191505060405180910390f35b610712600480360360208110156106e657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611b45565b604051808381526020018281526020019250505060405180910390f35b61073761218d565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561077757808201518184015260208101905061075c565b50505050905090810190601f1680156107a45780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6107fe600480360360408110156107c857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506121c6565b604051808215151515815260200191505060405180910390f35b6108206121dd565b6040518082815260200191505060405180910390f35b6108786004803603602081101561084c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506121e3565b005b6108826124be565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6108cc6124e4565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6109a5600480360360e081101561092457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919080359060200190929190803560ff169060200190929190803590602001909291908035906020019092919050505061250a565b005b610a09600480360360408110156109bd57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061284e565b6040518082815260200191505060405180910390f35b610a27612873565b005b6001600c5414610aa1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f4d616b69737761703a204c4f434b45440000000000000000000000000000000081525060200191505060405180910390fd5b6000600c819055506000851180610ab85750600084115b610b0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526024815260200180613b026024913960400191505060405180910390fd5b600080610b1861126c565b5091509150816dffffffffffffffffffffffffffff1687108015610b4b5750806dffffffffffffffffffffffffffff1686105b610bbd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4d616b69737761703a20494e53554646494349454e545f4c495155494449545981525060200191505060405180910390fd5b6000806000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690506000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508173ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff1614158015610c7657508073ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff1614155b610ce8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f4d616b69737761703a20494e56414c49445f544f00000000000000000000000081525060200191505060405180910390fd5b60008b1115610cfd57610cfc828a8d612af3565b5b60008a1115610d1257610d11818a8c612af3565b5b6000888890501115610dfa578873ffffffffffffffffffffffffffffffffffffffff16631750699e338d8d8c8c6040518663ffffffff1660e01b8152600401808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001858152602001848152602001806020018281038252848482818152602001925080828437600081840152601f19601f8201169050808301925050509650505050505050600060405180830381600087803b158015610de157600080fd5b505af1158015610df5573d6000803e3d6000fd5b505050505b8173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b158015610e7757600080fd5b505afa158015610e8b573d6000803e3d6000fd5b505050506040513d6020811015610ea157600080fd5b810190808051906020019092919050505093508073ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b158015610f3157600080fd5b505afa158015610f45573d6000803e3d6000fd5b505050506040513d6020811015610f5b57600080fd5b810190808051906020019092919050505092505050600089856dffffffffffffffffffffffffffff16038311610f92576000610fa8565b89856dffffffffffffffffffffffffffff160383035b9050600089856dffffffffffffffffffffffffffff16038311610fcc576000610fe2565b89856dffffffffffffffffffffffffffff160383035b90506000821180610ff35750600081115b611048576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526023815260200180613a716023913960400191505060405180910390fd5b6000611084611061600285612d4090919063ffffffff16565b6110766103e888612d4090919063ffffffff16565b612dc690919063ffffffff16565b905060006110c261109f600285612d4090919063ffffffff16565b6110b46103e888612d4090919063ffffffff16565b612dc690919063ffffffff16565b905061110c620f42406110fe896dffffffffffffffffffffffffffff168b6dffffffffffffffffffffffffffff16612d4090919063ffffffff16565b612d4090919063ffffffff16565b61111f8284612d4090919063ffffffff16565b1015611193576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600b8152602001807f4d616b69737761703a204b00000000000000000000000000000000000000000081525060200191505060405180910390fd5b50506111a184848888612e10565b8873ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167fd78ad95fa46c994b6551d0da85fc275fe613ce37657fb8d5e3d130840159d82284848f8f6040518085815260200184815260200183815260200182815260200194505050505060405180910390a35050505050506001600c819055505050505050565b6040518060400160405280600b81526020017f4d616b6973776170204c5000000000000000000000000000000000000000000081525081565b6000806000600860009054906101000a90046dffffffffffffffffffffffffffff1692506008600e9054906101000a90046dffffffffffffffffffffffffffff1691506008601c9054906101000a900463ffffffff169050909192565b60006112d633848461318e565b6001905092915050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60005481565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054146114c15761144082600260008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612dc690919063ffffffff16565b600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b6114cc848484613279565b600190509392505050565b7f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c960001b81565b601281565b60035481565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146115cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260138152602001807f4d616b69737761703a20464f5242494444454e0000000000000000000000000081525060200191505060405180910390fd5b81600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050565b60095481565b600a5481565b60006001600c54146116d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f4d616b69737761703a204c4f434b45440000000000000000000000000000000081525060200191505060405180910390fd5b6000600c819055506000806116eb61126c565b50915091506000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b15801561179157600080fd5b505afa1580156117a5573d6000803e3d6000fd5b505050506040513d60208110156117bb57600080fd5b810190808051906020019092919050505090506000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b15801561186f57600080fd5b505afa158015611883573d6000803e3d6000fd5b505050506040513d602081101561189957600080fd5b8101908080519060200190929190505050905060006118d1856dffffffffffffffffffffffffffff1684612dc690919063ffffffff16565b905060006118f8856dffffffffffffffffffffffffffff1684612dc690919063ffffffff16565b90506000611906878761340d565b9050600080549050600081141561195a576119466103e86119386119338688612d4090919063ffffffff16565b6135ee565b612dc690919063ffffffff16565b985061195560006103e8613650565b6119bd565b6119ba886dffffffffffffffffffffffffffff166119818387612d4090919063ffffffff16565b8161198857fe5b04886dffffffffffffffffffffffffffff166119ad8487612d4090919063ffffffff16565b816119b457fe5b0461376a565b98505b60008911611a16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526027815260200180613a946027913960400191505060405180910390fd5b611a208a8a613650565b611a2c86868a8a612e10565b8115611aa457611a9d6008600e9054906101000a90046dffffffffffffffffffffffffffff166dffffffffffffffffffffffffffff16600860009054906101000a90046dffffffffffffffffffffffffffff166dffffffffffffffffffffffffffff16612d4090919063ffffffff16565b600b819055505b3373ffffffffffffffffffffffffffffffffffffffff167f4c209b5fc8ad50758f13e2e1088ba56a560dff690a1c6fef26394f4c03821c4f8585604051808381526020018281526020019250505060405180910390a250505050505050506001600c81905550919050565b60016020528060005260406000206000915090505481565b600b5481565b60046020528060005260406000206000915090505481565b6000806001600c5414611bc0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f4d616b69737761703a204c4f434b45440000000000000000000000000000000081525060200191505060405180910390fd5b6000600c81905550600080541415611c23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526026815260200180613abb6026913960400191505060405180910390fd5b600080611c2e61126c565b50915091506000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690506000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905060008273ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b158015611d0057600080fd5b505afa158015611d14573d6000803e3d6000fd5b505050506040513d6020811015611d2a57600080fd5b8101908080519060200190929190505050905060008273ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b158015611dbc57600080fd5b505afa158015611dd0573d6000803e3d6000fd5b505050506040513d6020811015611de657600080fd5b810190808051906020019092919050505090506000600160003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490506000611e49888861340d565b905060008054905080611e658685612d4090919063ffffffff16565b81611e6c57fe5b049a5080611e838585612d4090919063ffffffff16565b81611e8a57fe5b04995060008b118015611e9d575060008a115b611ef2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526027815260200180613b266027913960400191505060405180910390fd5b611efc3084613783565b611f07878d8d612af3565b611f12868d8c612af3565b8673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b158015611f8f57600080fd5b505afa158015611fa3573d6000803e3d6000fd5b505050506040513d6020811015611fb957600080fd5b810190808051906020019092919050505094508573ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b15801561204957600080fd5b505afa15801561205d573d6000803e3d6000fd5b505050506040513d602081101561207357600080fd5b8101908080519060200190929190505050935061209285858b8b612e10565b811561210a576121036008600e9054906101000a90046dffffffffffffffffffffffffffff166dffffffffffffffffffffffffffff16600860009054906101000a90046dffffffffffffffffffffffffffff166dffffffffffffffffffffffffffff16612d4090919063ffffffff16565b600b819055505b8b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167fdccd412f0b1252819cb1fd330b93224ca42612892bb3f4f789976e6d819364968d8d604051808381526020018281526020019250505060405180910390a35050505050505050506001600c81905550915091565b6040518060400160405280600781526020017f4d414b492d4c500000000000000000000000000000000000000000000000000081525081565b60006121d3338484613279565b6001905092915050565b6103e881565b6001600c541461225b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f4d616b69737761703a204c4f434b45440000000000000000000000000000000081525060200191505060405180910390fd5b6000600c819055506000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690506000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690506123b182846123ac600860009054906101000a90046dffffffffffffffffffffffffffff166dffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b15801561236357600080fd5b505afa158015612377573d6000803e3d6000fd5b505050506040513d602081101561238d57600080fd5b8101908080519060200190929190505050612dc690919063ffffffff16565b612af3565b6124b181846124ac6008600e9054906101000a90046dffffffffffffffffffffffffffff166dffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b15801561246357600080fd5b505afa158015612477573d6000803e3d6000fd5b505050506040513d602081101561248d57600080fd5b8101908080519060200190929190505050612dc690919063ffffffff16565b612af3565b50506001600c8190555050565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b42841015612580576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260118152602001807f4d616b69737761703a204558504952454400000000000000000000000000000081525060200191505060405180910390fd5b60006003547f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c960001b898989600460008e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815480929190600101919050558a604051602001808781526020018673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200184815260200183815260200182815260200196505050505050506040516020818303038152906040528051906020012060405160200180807f190100000000000000000000000000000000000000000000000000000000000081525060020183815260200182815260200192505050604051602081830303815290604052805190602001209050600060018286868660405160008152602001604052604051808581526020018460ff1660ff1681526020018381526020018281526020019450505050506020604051602081039080840390855afa158015612752573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141580156127c657508873ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16145b612838576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f4d616b69737761703a20494e56414c49445f5349474e4154555245000000000081525060200191505060405180910390fd5b61284389898961318e565b505050505050505050565b6002602052816000526040600020602052806000526040600020600091509150505481565b6001600c54146128eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f4d616b69737761703a204c4f434b45440000000000000000000000000000000081525060200191505060405180910390fd5b6000600c81905550612ae9600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b15801561299557600080fd5b505afa1580156129a9573d6000803e3d6000fd5b505050506040513d60208110156129bf57600080fd5b8101908080519060200190929190505050600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b158015612a6f57600080fd5b505afa158015612a83573d6000803e3d6000fd5b505050506040513d6020811015612a9957600080fd5b8101908080519060200190929190505050600860009054906101000a90046dffffffffffffffffffffffffffff166008600e9054906101000a90046dffffffffffffffffffffffffffff16612e10565b6001600c81905550565b600060608473ffffffffffffffffffffffffffffffffffffffff166040518060400160405280601981526020017f7472616e7366657228616464726573732c75696e743235362900000000000000815250805190602001208585604051602401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff83818316178352505050506040518082805190602001908083835b60208310612c205780518252602082019150602081019050602083039250612bfd565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d8060008114612c82576040519150601f19603f3d011682016040523d82523d6000602084013e612c87565b606091505b5091509150818015612cc75750600081511480612cc65750808060200190516020811015612cb457600080fd5b81019080805190602001909291905050505b5b612d39576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260198152602001807f4d616b69737761703a205452414e534645525f4641494c45440000000000000081525060200191505060405180910390fd5b5050505050565b600080831415612d535760009050612dc0565b6000828402905082848281612d6457fe5b0414612dbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180613ae16021913960400191505060405180910390fd5b809150505b92915050565b6000612e0883836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061389d565b905092915050565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6dffffffffffffffffffffffffffff168411158015612e8057507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6dffffffffffffffffffffffffffff168311155b612ef2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260128152602001807f4d616b69737761703a204f564552464c4f57000000000000000000000000000081525060200191505060405180910390fd5b60006401000000004281612f0257fe5b06905060006008601c9054906101000a900463ffffffff168203905060008163ffffffff16118015612f4557506000846dffffffffffffffffffffffffffff1614155b8015612f6257506000836dffffffffffffffffffffffffffff1614155b15613044578063ffffffff16612fa785612f7b8661395d565b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1661398890919063ffffffff16565b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff16026009600082825401925050819055508063ffffffff1661301584612fe98761395d565b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1661398890919063ffffffff16565b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1602600a600082825401925050819055505b85600860006101000a8154816dffffffffffffffffffffffffffff02191690836dffffffffffffffffffffffffffff160217905550846008600e6101000a8154816dffffffffffffffffffffffffffff02191690836dffffffffffffffffffffffffffff160217905550816008601c6101000a81548163ffffffff021916908363ffffffff1602179055507f1c411e9a96e071241c2f21f7726b17ae89e3cab4c78be50e062b03a9fffbbad1600860009054906101000a90046dffffffffffffffffffffffffffff166008600e9054906101000a90046dffffffffffffffffffffffffffff1660405180836dffffffffffffffffffffffffffff166dffffffffffffffffffffffffffff168152602001826dffffffffffffffffffffffffffff166dffffffffffffffffffffffffffff1681526020019250505060405180910390a1505050505050565b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b6132cb81600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612dc690919063ffffffff16565b600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061336081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546139e890919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b600080600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663017e7e586040518163ffffffff1660e01b815260040160206040518083038186803b15801561347857600080fd5b505afa15801561348c573d6000803e3d6000fd5b505050506040513d60208110156134a257600080fd5b81019080805190602001909291905050509050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141591506000600b54905082156135d457600081146135cf57600061353a613535866dffffffffffffffffffffffffffff16886dffffffffffffffffffffffffffff16612d4090919063ffffffff16565b6135ee565b90506000613547836135ee565b9050808211156135cc57600061357a6135698385612dc690919063ffffffff16565b600054612d4090919063ffffffff16565b905060006135a483613596600387612d4090919063ffffffff16565b6139e890919063ffffffff16565b905060008183816135b157fe5b04905060008111156135c8576135c78782613650565b5b5050505b50505b6135e6565b600081146135e5576000600b819055505b5b505092915050565b6000600382111561363d57819050600060016002848161360a57fe5b040190505b818110156136375780915060028182858161362657fe5b04018161362f57fe5b04905061360f565b5061364b565b6000821461364a57600190505b5b919050565b613665816000546139e890919063ffffffff16565b6000819055506136bd81600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546139e890919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b6000818310613779578161377b565b825b905092915050565b6137d581600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612dc690919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061382d81600054612dc690919063ffffffff16565b600081905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b600083831115829061394a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561390f5780820151818401526020810190506138f4565b50505050905090810190601f16801561393c5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b60006e010000000000000000000000000000826dffffffffffffffffffffffffffff16029050919050565b6000816dffffffffffffffffffffffffffff167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff16837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff16816139df57fe5b04905092915050565b600080828401905083811015613a66576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b809150509291505056fe4d616b69737761703a20494e53554646494349454e545f494e5055545f414d4f554e544d616b69737761703a20494e53554646494349454e545f4c49515549444954595f4d494e5445445468652076616c7565206f6620746f74616c537570706c79206d757374206e6f742062652030536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f774d616b69737761703a20494e53554646494349454e545f4f55545055545f414d4f554e544d616b69737761703a20494e53554646494349454e545f4c49515549444954595f4255524e4544a265627a7a72315820bd5923c0a9e9a5281694a3f8c04a96ff694b4782332c473042d901ce6c5b269f64736f6c63430005100032
Deployed Bytecode Sourcemap
16426:10895:0:-;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;16426:10895:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24147:2418;;;;;;13:3:-1;8;5:12;2:2;;;30:1;27;20:12;2:2;24147:2418:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;24147:2418:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;24147:2418:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;24147:2418:0;;;;;;;;;;;;:::i;:::-;;11859:43;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;11859:43:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17434:313;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13908:147;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;13908:147:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;16733:21;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;11999:24;;;:::i;:::-;;;;;;;;;;;;;;;;;;;14210:301;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;14210:301:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;12291:108;;;:::i;:::-;;;;;;;;;;;;;;;;;;;11957:35;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;12148:31;;;:::i;:::-;;;;;;;;;;;;;;;;;;;18729:209;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;18729:209:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;17063:35;;;:::i;:::-;;;;;;;;;;;;;;;;;;;17105;;;:::i;:::-;;;;;;;;;;;;;;;;;;;21064:1319;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;21064:1319:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;12030:41;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;12030:41:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;17147:20;;;:::i;:::-;;;;;;;;;;;;;;;;;;;12406:38;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;12406:38:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;22495:1540;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;22495:1540:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;11909:41;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;11909:41:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14063:139;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;14063:139:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;16553:49;;;:::i;:::-;;;;;;;;;;;;;;;;;;;26614:434;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;26614:434:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;16704:22;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;16761:21;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;14519:672;;;;;;13:3:-1;8;5:12;2:2;;;30:1;27;20:12;2:2;14519:672:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;12078:61;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;12078:61:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;27097:221;;;:::i;:::-;;24147:2418;17338:1;17326:8;;:13;17318:42;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17382:1;17371:8;:12;;;;24337:1;24324:10;:14;:32;;;;24355:1;24342:10;:14;24324:32;24302:118;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24432:17;24451;24474:13;:11;:13::i;:::-;24431:56;;;;;24548:9;24535:22;;:10;:22;:48;;;;;24574:9;24561:22;;:10;:22;24535:48;24513:130;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24656:16;24683;24793:15;24811:6;;;;;;;;;;;24793:24;;24832:15;24850:6;;;;;;;;;;;24832:24;;24885:7;24879:13;;:2;:13;;;;:30;;;;;24902:7;24896:13;;:2;:13;;;;24879:30;24871:63;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24966:1;24953:10;:14;24949:58;;;24969:38;24983:7;24992:2;24996:10;24969:13;:38::i;:::-;24949:58;25073:1;25060:10;:14;25056:58;;;25076:38;25090:7;25099:2;25103:10;25076:13;:38::i;:::-;25056:58;25181:1;25167:4;;:11;;:15;25163:215;;;25217:2;25201:32;;;25256:10;25289;25322;25355:4;;25201:177;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;93:3;85:6;81:16;74:27;137:4;133:9;126:4;121:3;117:14;113:30;106:37;;169:3;161:6;157:16;147:26;;25201:177:0;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;25201:177:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;25201:177:0;;;;25163:215;25411:7;25404:25;;;25438:4;25404:40;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;25404:40:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;25404:40:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;25404:40:0;;;;;;;;;;;;;;;;25393:51;;25477:7;25470:25;;;25504:4;25470:40;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;25470:40:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;25470:40:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;25470:40:0;;;;;;;;;;;;;;;;25459:51;;17394:1;;25532:17;25588:10;25576:9;:22;;;25565:8;:33;:109;;25673:1;25565:109;;;25642:10;25630:9;:22;;;25618:8;:35;25565:109;25532:142;;25685:17;25741:10;25729:9;:22;;;25718:8;:33;:109;;25826:1;25718:109;;;25795:10;25783:9;:22;;;25771:8;:35;25718:109;25685:142;;25872:1;25860:9;:13;:30;;;;25889:1;25877:9;:13;25860:30;25838:115;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26056:24;26083:40;26106:16;26120:1;26106:9;:13;;:16;;;;:::i;:::-;26083:18;26096:4;26083:8;:12;;:18;;;;:::i;:::-;:22;;:40;;;;:::i;:::-;26056:67;;26138:24;26165:40;26188:16;26202:1;26188:9;:13;;:16;;;;:::i;:::-;26165:18;26178:4;26165:8;:12;;:18;;;;:::i;:::-;:22;;:40;;;;:::i;:::-;26138:67;;26309:46;26347:7;26309:33;26332:9;26309:33;;26317:9;26309:18;;:22;;:33;;;;:::i;:::-;:37;;:46;;;;:::i;:::-;26246:38;26267:16;26246;:20;;:38;;;;:::i;:::-;:109;;26220:182;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17394:1;;26426:49;26434:8;26444;26454:9;26465;26426:7;:49::i;:::-;26554:2;26491:66;;26496:10;26491:66;;;26508:9;26519;26530:10;26542;26491:66;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17394:1;;;;;;17417;17406:8;:12;;;;24147:2418;;;;;:::o;11859:43::-;;;;;;;;;;;;;;;;;;;:::o;17434:313::-;17519:17;17551;17583:26;17649:8;;;;;;;;;;;17637:20;;17680:8;;;;;;;;;;;17668:20;;17721:18;;;;;;;;;;;17699:40;;17434:313;;;:::o;13908:147::-;13972:4;13989:36;13998:10;14010:7;14019:5;13989:8;:36::i;:::-;14043:4;14036:11;;13908:147;;;;:::o;16733:21::-;;;;;;;;;;;;;:::o;11999:24::-;;;;:::o;14210:301::-;14288:4;14345:2;14309:9;:15;14319:4;14309:15;;;;;;;;;;;;;;;:27;14325:10;14309:27;;;;;;;;;;;;;;;;:39;14305:140;;14395:38;14427:5;14395:9;:15;14405:4;14395:15;;;;;;;;;;;;;;;:27;14411:10;14395:27;;;;;;;;;;;;;;;;:31;;:38;;;;:::i;:::-;14365:9;:15;14375:4;14365:15;;;;;;;;;;;;;;;:27;14381:10;14365:27;;;;;;;;;;;;;;;:68;;;;14305:140;14455:26;14465:4;14471:2;14475:5;14455:9;:26::i;:::-;14499:4;14492:11;;14210:301;;;;;:::o;12291:108::-;12333:66;12291:108;;;:::o;11957:35::-;11990:2;11957:35;:::o;12148:31::-;;;;:::o;18729:209::-;18825:7;;;;;;;;;;;18811:21;;:10;:21;;;18803:53;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18896:7;18887:6;;:16;;;;;;;;;;;;;;;;;;18923:7;18914:6;;:16;;;;;;;;;;;;;;;;;;18729:209;;:::o;17063:35::-;;;;:::o;17105:::-;;;;:::o;21064:1319::-;21113:17;17338:1;17326:8;;:13;17318:42;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17382:1;17371:8;:12;;;;21144:17;21163;21186:13;:11;:13::i;:::-;21143:56;;;;;21225:16;21251:6;;;;;;;;;;;21244:24;;;21277:4;21244:39;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;21244:39:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;21244:39:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;21244:39:0;;;;;;;;;;;;;;;;21225:58;;21294:16;21320:6;;;;;;;;;;;21313:24;;;21346:4;21313:39;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;21313:39:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;21313:39:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;21313:39:0;;;;;;;;;;;;;;;;21294:58;;21363:15;21381:23;21394:9;21381:23;;:8;:12;;:23;;;;:::i;:::-;21363:41;;21415:15;21433:23;21446:9;21433:23;;:8;:12;;:23;;;;:::i;:::-;21415:41;;21469:10;21482:30;21491:9;21502;21482:8;:30::i;:::-;21469:43;;21523:20;21546:11;;21523:34;;21666:1;21650:12;:17;21646:410;;;21696:58;16597:5;21696:35;21710:20;21722:7;21710;:11;;:20;;;;:::i;:::-;21696:13;:35::i;:::-;:39;;:58;;;;:::i;:::-;21684:70;;21769:36;21783:1;16597:5;21769;:36::i;:::-;21646:410;;;21905:139;21964:9;21936:37;;:25;21948:12;21936:7;:11;;:25;;;;:::i;:::-;:37;;;;;;22020:9;21992:37;;:25;22004:12;21992:7;:11;;:25;;;;:::i;:::-;:37;;;;;;21905:12;:139::i;:::-;21893:151;;21646:410;22086:1;22074:9;:13;22066:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22142:20;22148:2;22152:9;22142:5;:20::i;:::-;22175:49;22183:8;22193;22203:9;22214;22175:7;:49::i;:::-;22239:5;22235:50;;;22254:31;22276:8;;;;;;;;;;;22254:31;;22262:8;;;;;;;;;;;22254:17;;:21;;:31;;;;:::i;:::-;22246:5;:39;;;;22235:50;22346:10;22341:34;;;22358:7;22367;22341:34;;;;;;;;;;;;;;;;;;;;;;;;17394:1;;;;;;;;17417;17406:8;:12;;;;21064:1319;;;:::o;12030:41::-;;;;;;;;;;;;;;;;;:::o;17147:20::-;;;;:::o;12406:38::-;;;;;;;;;;;;;;;;;:::o;22495:1540::-;22544:15;22561;17338:1;17326:8;;:13;17318:42;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17382:1;17371:8;:12;;;;22612:1;22597:11;;:16;;22589:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22668:17;22687;22710:13;:11;:13::i;:::-;22667:56;;;;;22749:15;22767:6;;;;;;;;;;;22749:24;;22799:15;22817:6;;;;;;;;;;;22799:24;;22849:16;22875:7;22868:25;;;22902:4;22868:40;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;22868:40:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;22868:40:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;22868:40:0;;;;;;;;;;;;;;;;22849:59;;22919:16;22945:7;22938:25;;;22972:4;22938:40;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;22938:40:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;22938:40:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;22938:40:0;;;;;;;;;;;;;;;;22919:59;;22989:17;23009:9;:24;23027:4;23009:24;;;;;;;;;;;;;;;;22989:44;;23046:10;23059:30;23068:9;23079;23059:8;:30::i;:::-;23046:43;;23100:20;23123:11;;23100:34;;23259:12;23233:23;23247:8;23233:9;:13;;:23;;;;:::i;:::-;:38;;;;;;23223:48;;23366:12;23340:23;23354:8;23340:9;:13;;:23;;;;:::i;:::-;:38;;;;;;23330:48;;23469:1;23459:7;:11;:26;;;;;23484:1;23474:7;:11;23459:26;23437:115;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23563:31;23577:4;23584:9;23563:5;:31::i;:::-;23605:35;23619:7;23628:2;23632:7;23605:13;:35::i;:::-;23651;23665:7;23674:2;23678:7;23651:13;:35::i;:::-;23715:7;23708:25;;;23742:4;23708:40;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;23708:40:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;23708:40:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;23708:40:0;;;;;;;;;;;;;;;;23697:51;;23777:7;23770:25;;;23804:4;23770:40;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;23770:40:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;23770:40:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;23770:40:0;;;;;;;;;;;;;;;;23759:51;;23823:49;23831:8;23841;23851:9;23862;23823:7;:49::i;:::-;23887:5;23883:50;;;23902:31;23924:8;;;;;;;;;;;23902:31;;23910:8;;;;;;;;;;;23902:17;;:21;;:31;;;;:::i;:::-;23894:5;:39;;;;23883:50;24024:2;23989:38;;23994:10;23989:38;;;24006:7;24015;23989:38;;;;;;;;;;;;;;;;;;;;;;;;17394:1;;;;;;;;;17417;17406:8;:12;;;;22495:1540;;;:::o;11909:41::-;;;;;;;;;;;;;;;;;;;:::o;14063:139::-;14123:4;14140:32;14150:10;14162:2;14166:5;14140:9;:32::i;:::-;14190:4;14183:11;;14063:139;;;;:::o;16553:49::-;16597:5;16553:49;:::o;26614:434::-;17338:1;17326:8;;:13;17318:42;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17382:1;17371:8;:12;;;;26665:15;26683:6;;;;;;;;;;;26665:24;;26715:15;26733:6;;;;;;;;;;;26715:24;;26765:132;26793:7;26815:2;26832:54;26877:8;;;;;;;;;;;26832:54;;26839:7;26832:25;;;26866:4;26832:40;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;26832:40:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;26832:40:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;26832:40:0;;;;;;;;;;;;;;;;:44;;:54;;;;:::i;:::-;26765:13;:132::i;:::-;26908;26936:7;26958:2;26975:54;27020:8;;;;;;;;;;;26975:54;;26982:7;26975:25;;;27009:4;26975:40;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;26975:40:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;26975:40:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;26975:40:0;;;;;;;;;;;;;;;;:44;;:54;;;;:::i;:::-;26908:13;:132::i;:::-;17394:1;;17417;17406:8;:12;;;;26614:434;:::o;16704:22::-;;;;;;;;;;;;;:::o;16761:21::-;;;;;;;;;;;;;:::o;14519:672::-;14665:15;14653:8;:27;;14645:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14713:14;14818:16;;12333:66;14874:15;;14891:5;14898:7;14907:5;14914:6;:13;14921:5;14914:13;;;;;;;;;;;;;;;;:15;;;;;;;;;;;;14931:8;14863:77;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49:4:-1;39:7;30;26:21;22:32;13:7;6:49;14863:77:0;;;14853:88;;;;;;14754:202;;;;;;;;;;;;;;;;;;;;;;;;;;;;49:4:-1;39:7;30;26:21;22:32;13:7;6:49;14754:202:0;;;14730:237;;;;;;14713:254;;14978:24;15005:26;15015:6;15023:1;15026;15029;15005:26;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;15005:26:0;;;;;;;;14978:53;;15078:1;15050:30;;:16;:30;;;;:59;;;;;15104:5;15084:25;;:16;:25;;;15050:59;15042:99;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15152:31;15161:5;15168:7;15177:5;15152:8;:31::i;:::-;14519:672;;;;;;;;;:::o;12078:61::-;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;27097:221::-;17338:1;17326:8;;:13;17318:42;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17382:1;17371:8;:12;;;;27138:172;27167:6;;;;;;;;;;;27160:24;;;27193:4;27160:39;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;27160:39:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;27160:39:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;27160:39:0;;;;;;;;;;;;;;;;27221:6;;;;;;;;;;;27214:24;;;27247:4;27214:39;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;27214:39:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;27214:39:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;27214:39:0;;;;;;;;;;;;;;;;27268:8;;;;;;;;;;;27291;;;;;;;;;;;27138:7;:172::i;:::-;17417:1;17406:8;:12;;;;27097:221::o;17755:373::-;17874:12;17888:17;17922:5;:10;;16661:34;;;;;;;;;;;;;;;;;16651:45;;;;;;17966:2;17970:5;17933:43;;;;;;;;;;;;;;;;;;;;;;;;;49:4:-1;39:7;30;26:21;22:32;13:7;6:49;17933:43:0;;;;;;;38:4:-1;29:7;25:18;67:10;61:17;96:58;199:8;192:4;186;182:15;179:29;167:10;160:49;0:215;;;17933:43:0;17922:55;;;;;;;;;;;;;36:153:-1;66:2;61:3;58:11;36:153;;182:3;176:10;171:3;164:23;98:2;93:3;89:12;82:19;;123:2;118:3;114:12;107:19;;148:2;143:3;139:12;132:19;;36:153;;;274:1;267:3;263:2;259:12;254:3;250:22;246:30;315:4;311:9;305:3;299:10;295:26;356:4;350:3;344:10;340:21;389:7;380;377:20;372:3;365:33;3:399;;;17922:55:0;;;;;;;;;;;;;;;;;;;;;;;;14:1:-1;21;16:31;;;;75:4;69:11;64:16;;144:4;140:9;133:4;115:16;111:27;107:43;104:1;100:51;94:4;87:65;169:16;166:1;159:27;225:16;222:1;215:4;212:1;208:12;193:49;7:242;;16:31;36:4;31:9;;7:242;;17873:104:0;;;;18010:7;:57;;;;;18037:1;18022:4;:11;:16;:44;;;;18053:4;18042:24;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;18042:24:0;;;;;;;;;;;;;;;;18022:44;18010:57;17988:132;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17755:373;;;;;:::o;6737:471::-;6795:7;7045:1;7040;:6;7036:47;;;7070:1;7063:8;;;;7036:47;7095:9;7111:1;7107;:5;7095:17;;7140:1;7135;7131;:5;;;;;;:10;7123:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7199:1;7192:8;;;6737:471;;;;;:::o;5813:136::-;5871:7;5898:43;5902:1;5905;5898:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;5891:50;;5813:136;;;;:::o;19023:951::-;19218:2;19198:23;;:8;:23;;:50;;;;;19245:2;19225:23;;:8;:23;;19198:50;19176:118;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19305:21;19354:5;19336:15;:23;;;;;;19305:55;;19371:18;19409;;;;;;;;;;;19392:14;:35;19371:56;;19479:1;19465:11;:15;;;:33;;;;;19497:1;19484:9;:14;;;;19465:33;:51;;;;;19515:1;19502:9;:14;;;;19465:51;19461:342;;;19674:11;19618:67;;19626:44;19660:9;19626:27;19643:9;19626:16;:27::i;:::-;:33;;;;:44;;;;:::i;:::-;19618:53;;:67;19594:20;;:91;;;;;;;;;;;19780:11;19724:67;;19732:44;19766:9;19732:27;19749:9;19732:16;:27::i;:::-;:33;;;;:44;;;;:::i;:::-;19724:53;;:67;19700:20;;:91;;;;;;;;;;;19461:342;19832:8;19813;;:28;;;;;;;;;;;;;;;;;;19871:8;19852;;:28;;;;;;;;;;;;;;;;;;19912:14;19891:18;;:35;;;;;;;;;;;;;;;;;;19942:24;19947:8;;;;;;;;;;;19957;;;;;;;;;;;19942:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19023:951;;;;;;:::o;13503:169::-;13612:5;13584:9;:16;13594:5;13584:16;;;;;;;;;;;;;;;:25;13601:7;13584:25;;;;;;;;;;;;;;;:33;;;;13649:7;13633:31;;13642:5;13633:31;;;13658:5;13633:31;;;;;;;;;;;;;;;;;;13503:169;;;:::o;13680:220::-;13774:26;13794:5;13774:9;:15;13784:4;13774:15;;;;;;;;;;;;;;;;:19;;:26;;;;:::i;:::-;13756:9;:15;13766:4;13756:15;;;;;;;;;;;;;;;:44;;;;13827:24;13845:5;13827:9;:13;13837:2;13827:13;;;;;;;;;;;;;;;;:17;;:24;;;;:::i;:::-;13811:9;:13;13821:2;13811:13;;;;;;;;;;;;;;;:40;;;;13882:2;13867:25;;13876:4;13867:25;;;13886:5;13867:25;;;;;;;;;;;;;;;;;;13680:220;;;:::o;20064:888::-;20155:10;20183:13;20216:7;;;;;;;;;;;20199:31;;;:33;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;20199:33:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;20199:33:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;20199:33:0;;;;;;;;;;;;;;;;20183:49;;20268:1;20251:19;;:5;:19;;;;20243:27;;20281:14;20298:5;;20281:22;;20333:5;20329:616;;;20369:1;20359:6;:11;20355:520;;20391:13;20407:48;20421:33;20444:9;20421:33;;20429:9;20421:18;;:22;;:33;;;;:::i;:::-;20407:13;:48::i;:::-;20391:64;;20474:17;20494:21;20508:6;20494:13;:21::i;:::-;20474:41;;20546:9;20538:5;:17;20534:326;;;20580:17;20600:37;20616:20;20626:9;20616:5;:9;;:20;;;;:::i;:::-;20600:11;;:15;;:37;;;;:::i;:::-;20580:57;;20660:19;20682:27;20699:9;20682:12;20692:1;20682:5;:9;;:12;;;;:::i;:::-;:16;;:27;;;;:::i;:::-;20660:49;;20732:17;20764:11;20752:9;:23;;;;;;20732:43;;20814:1;20802:9;:13;20798:42;;;20817:23;20823:5;20830:9;20817:5;:23::i;:::-;20798:42;20534:326;;;;20355:520;;;20329:616;;;20906:1;20896:6;:11;20892:53;;20932:1;20924:5;:9;;;;20892:53;20329:616;20064:888;;;;;;:::o;10135:312::-;10183:9;10213:1;10209;:5;10205:235;;;10235:1;10231:5;;10251:9;10271:1;10267;10263;:5;;;;;;:9;10251:21;;10287:92;10298:1;10294;:5;10287:92;;;10324:1;10320:5;;10362:1;10357;10353;10349;:5;;;;;;:9;10348:15;;;;;;10344:19;;10287:92;;;10205:235;;;;10405:1;10400;:6;10396:44;;10427:1;10423:5;;10396:44;10205:235;10135:312;;;:::o;13077:201::-;13150:22;13166:5;13150:11;;:15;;:22;;;;:::i;:::-;13136:11;:36;;;;13199:24;13217:5;13199:9;:13;13209:2;13199:13;;;;;;;;;;;;;;;;:17;;:24;;;;:::i;:::-;13183:9;:13;13193:2;13183:13;;;;;;;;;;;;;;;:40;;;;13260:2;13239:31;;13256:1;13239:31;;;13264:5;13239:31;;;;;;;;;;;;;;;;;;13077:201;;:::o;9912:105::-;9970:9;10000:1;9996;:5;:13;;10008:1;9996:13;;;10004:1;9996:13;9992:17;;9912:105;;;;:::o;13286:209::-;13365:26;13385:5;13365:9;:15;13375:4;13365:15;;;;;;;;;;;;;;;;:19;;:26;;;;:::i;:::-;13347:9;:15;13357:4;13347:15;;;;;;;;;;;;;;;:44;;;;13416:22;13432:5;13416:11;;:15;;:22;;;;:::i;:::-;13402:11;:36;;;;13477:1;13454:33;;13463:4;13454:33;;;13481:5;13454:33;;;;;;;;;;;;;;;;;;13286:209;;:::o;6252:226::-;6372:7;6405:1;6400;:6;;6408:12;6392:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;6392:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6432:9;6448:1;6444;:5;6432:17;;6469:1;6462:8;;;6252:226;;;;;:::o;462:120::-;512:9;407:6;546:1;538:10;;:17;534:21;;462:120;;;:::o;653:108::-;713:9;751:1;743:10;;739:14;;:1;:14;;;;;;;;735:18;;653:108;;;;:::o;5349:181::-;5407:7;5427:9;5443:1;5439;:5;5427:17;;5468:1;5463;:6;;5455:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5521:1;5514:8;;;5349:181;;;;:::o
Swarm Source
bzzr://bd5923c0a9e9a5281694a3f8c04a96ff694b4782332c473042d901ce6c5b269f
Loading...
Loading
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 27 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|---|---|---|---|---|
FTM | 100.00% | $0.601412 | 575.7134 | $346.24 |
[ 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.